
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

header {
    background-color: white;
    padding: 10px 20px;
    display: flex; 
    justify-content:space-around;
    justify-content: space-between;
    align-items: center;
    position: relative; 
    top: 0;
    left: 0;
    width: 100%; 
    height: 110px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

@media (max-width: 767px) {
    header {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 10px;
    }

    .logo {
        display:inline-flex;
        justify-content: center;
        height: 300%;
    }
    
    .logo img {
        width: 300% !important;
        margin-left: -50%;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 10px 0;
    }

    .nav-links li a{
        font-size: 0.8rem !important;
    }

    .nav-links li {
        margin: 0;
    }

    .btn-agendamentos {
        font-size: 1rem;
        padding: 10px 20px;
        white-space: nowrap; 
        margin-left: 0;
        display: block;
        margin: 20px auto;
        text-align: center;
    }

    .hero-section {
        height: 100vh; 
        background-position: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px 10px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .btn-consulta {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .about {
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .content-section {
        flex-direction: column;
        gap: 20px;
    }

    .content-section .photo img {
        width: 100%;
        height: auto;
    }

    .content-section .photo p i{
        font-size: 0.9rem; 
        text-align: center; 
        max-width: 90%; 
        margin: 0 auto; 
        line-height: 1.5; 
        word-break: break-word; 
        overflow-wrap: break-word; 
    }

    .cta {
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .btn-cta {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button img {
        width: 25px;
        height: 25px;
    }

    .footer .links-uteis {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .footer .titulo-links {
        font-size: 1rem;
    }

    .footer .icones {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .footer .icone {
        flex: 1 1 45%;
        text-align: center;
    }

    .footer .endereco {
        text-align: center;
    }

    .footer .mapa iframe {
        width: 100%;
        height: 200px;
    }

    .littlep{
        font-size: 0.8rem;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        padding: 10px;
        height: auto;
      }

    .logo {
        width: 100% !important;
        margin-right: -50%;
    }

    .navbar .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
      }
    
      .navbar .nav-links li {
        margin: 0;
        text-align: center;
      }

    .btn-agendamentos {
        font-size: 1.1rem;
        padding: 10px 25px;
        margin-left: 20px;
        white-space: nowrap;
        display: block;
        margin: 10px auto;
        text-align: center;
    }

    .hero-section {
        height: 80vh; 
        background-position: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .btn-consulta {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .about {
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about h2 {
        font-size: 2.2rem;
    }

    .content-section {
        flex-direction: row;
        gap: 30px;
    }

    .content-section .photo img {
        width: 80%;
        height: auto;
    }

    .content-section .photo p i {
        font-size: 1rem;
        max-width: 100%;
    }

    .cta {
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .cta-content p {
        font-size: 1.2rem;
    }

    .btn-cta {
        font-size: 1rem;
        padding: 10px 20px;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
    }

    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }

    .footer .links-uteis {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }

    .footer .titulo-links {
        font-size: 1.2rem;
    }

    .footer .icones {
        flex-wrap: nowrap;
        gap: 20px;
    }

    .footer .icone {
        flex: none;
    }

    .footer .endereco {
        text-align: center;
    }

    .footer .mapa iframe {
        width: 100%;
        height: 250px;
    }

    .littlep{
        font-size: 1.0rem;
    }
}

.logo {
    display:inline-flex;
    justify-content: left;
    height: 100px;
    margin-top: 50px;
    margin-left: -230px;
}

.logo img {
    max-height: 5000px;
    display: block;
    width: 250%;
    margin-top: -40px;
}

.nav-links {
    list-style: none;
    display: inline-flex; 
    justify-content: right;
    align-items: center;
    flex-grow: 1;
    margin: 0; 
    padding: 0;
}

.nav-links li {
    margin: 0 25px;
}

.nav-links li a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: rgba(128, 0, 128, 0.747);
}

.btn-agendamentos {
    background-color: #E4236B;
    color: #fff; 
    padding: 8px 12px; 
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.0rem;
    transition: background-color 0.3s ease;
    margin-left: auto; 
    justify-items: right;
}

.btn-agendamentos:hover {
    background-color: #C91D5C; 
}



.hero-section {
    font-family: "Playfair Display", serif;;
    background: url('image/Consultório\ Header\ 2.png') no-repeat center center/cover;
    height: 600px;
    color: rgba(128, 0, 128, 0.856);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    justify-content: right;
}

.hero-content p {
    font-family: "Merriweather", serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    align-items: start;
}

.btn-consulta {
    font-family: "Merriweather", serif;
    background-color: rgba(128, 0, 128, 0.637);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 1.1rem;
}

.btn-consulta:hover {
    background-color: rgba(128, 0, 128, 0.363);
    text-shadow: lightsalmon;
}


.about {
    text-align: justify;
    padding: 40px 20px;
    background-color: #fff;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-family: "Open Sans", serif;
    color: rgba(128, 0, 128, 0.637);
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    margin-bottom: 20px;
}

.content-section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 20px;
}

.content-section .photo img {
    left: 50px;
    top: 100px;
    width: 500px;
    height: 800px; 
    border-radius: 10px;
}

.hero-section .details h1 {
    font-family: "Playfair Display", serif;
    color: rgba(128, 0, 128, 0.637);
    margin-bottom: 10px;
}

.content-section ul {
    margin-top: 10px;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 10px;
}


.cta {
    background-color: rgba(128, 0, 128, 0.637);
    color: #fff;
    text-align: center;
    padding: 30px 10px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-cta {
    background-color: #fff;
    color: #6b4f72;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 1.1rem;
}

.btn-cta:hover {
    background-color: #ddd;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    z-index: 999;
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.footer {
    background-color: rgba(128, 0, 128, 0.747);
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
}

.footer .links-uteis {
    margin-bottom: 30px;
}

.footer .titulo-links {
    font-style: italic;
    font-weight: 500;
    margin-bottom: 10px;
    display: inline-block;
}

.footer .icones {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer .icone a {
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
}

.footer .icone img {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
    border: 1px solid #FFFFFF;
    border-radius: 8px;
    padding: 8px;
}

.endereco h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.endereco .mapa {
    margin-bottom: 15px;
}

.endereco iframe {
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.endereco p {
    font-size: 14px;
    color: #F8F8F8;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 300px;
}

.navbar {
    padding: 20px 0;
    position: relative;
}

.menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 20px;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.menu a:hover {
    color: #007b5e;
}

.btn-agendamento {
    background-color: #e91e63;
    color: #fff !important;
    padding: 8px 12px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.btn-agendamento:hover {
    background-color: #d81b60;
}

.seta {
    margin-left: 8px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .seta {
    transform: rotate(180deg); 
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 50px;
    left: 167px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: max-content;
    min-width: 200px;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    display: block;
    border-bottom: 1px solid #f2f2f2;
}

.dropdown-content a:last-child {
    border-bottom: none; 
}

.dropdown-content a:hover {
    background-color: #f9f9f9;
    color: #007b5e;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.6s ease-in-out; 
}


.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    opacity: 1; 
    visibility: hidden; 
    top: 95%; 
    left: 0px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: max-content;
    min-width: 200px;
    transition: opacity 1.0s ease, visibility 2.0s ease;
}

.dropdown:hover .dropdown-content,
.dropdown-content:hover {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
}

.details {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin: 0 auto;
    max-width: 800px; 
}

.details h3 {
    color: rgba(128, 0, 128, 0.637); 
    text-align: center;
    margin-bottom: 20px;
}

.details ul {
    list-style: none; 
    padding: 0;
}

.details li {
    font-weight: bold;
    margin-bottom: 10px;
}

.details p {
    margin-bottom: 20px;
    line-height: 1.6;
}

body {
    font-family: "Open Sans", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

h1, h2, h3 {
    color: rgba(128, 0, 128, 0.747);
    font-family: "Lora", serif;
    font-weight: 600;   
    text-align: center ;
}



    
