@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;
}

header {
    display: flex;
    background-color: white;
    padding: 10px 20px;
    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;
}

.podcast-intro a {
    color: #551a8b;
}

@media (max-width: 767px) {

    /* Header - CORREÇÃO DA LOGO */
    header {
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 10px;
    }

    .logo {
        display: flex !important;
        justify-content: center;
        height: auto;
        margin-bottom: 10px;
        width: 100%;
        position: relative;
        /* Remove posicionamento absoluto do mobile */
        left: 0 !important;
        /* Remove o -260px */
        top: 0 !important;
        /* Remove o posicionamento vertical */
    }

    .logo img {
        width: 600px !important;
        height: auto !important;
        margin: 0 auto;
        display: block !important;
        /* Remove posicionamento absoluto */
        left: -215px !important;
        /* Zera o left negativo */
        top: 20px !important;
        /* Zera o top */
    }

    .logo-link {
        display: block;
        text-align: center;
    }

    /* Resto do CSS permanece igual */
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin: 10px 0;
    }

    .nav-links li a {
        font-size: 0.9rem !important;
    }

    .nav-links li {
        margin: 0;
    }

    .btn-agendamentos {
        font-size: 0.9rem;
        padding: 8px 15px;
        white-space: nowrap;
        margin-left: 0;
        display: block;
        margin: 15px auto;
        text-align: center;
    }

    /* Hero */
    .hero-section {
        height: auto;
        background-position: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
        text-align: center;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .btn-consulta {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    /* Podcast Intro */
    .podcast-intro {
        padding: 20px 10px;
    }

    .podcast-intro .title {
        font-size: 1.4rem;
    }

    .podcast-intro .subtitle {
        font-size: 0.95rem;
        text-align: justify;
    }

    /* Cards do Podcast */
    .podcast-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .podcast-card-wrapper {
        width: 100%;
    }

    .podcast-card {
        width: 90%;
        padding: 15px;
    }

    .podcast-card .card-text {
        font-size: 0.95rem;
    }

    .podcast-embed iframe {
        height: 280px;
    }

    /* CTA */
    .cta {
        padding: 20px 10px;
        text-align: center;
    }

    .cta-content p {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .btn-cta {
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    /* Botão flutuante WhatsApp */
    .whatsapp-button {
        width: 45px;
        height: 45px;
    }

    .whatsapp-button img {
        width: 22px;
        height: 22px;
    }

    /* Footer */
    .footer .links-uteis {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .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;
        padding: 10px;
    }

    .footer .mapa iframe {
        width: 100%;
        height: 200px;
    }

    .littlep {
        font-size: 0.8rem;
        text-align: center;
        padding: 10px;
    }
}

@media (max-width: 991px) and (min-width: 768px) {

    /* Header */
    header {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        height: auto;
    }

    .logo {
        display: flex !important;
        justify-content: center;
        height: auto;
        margin-bottom: 10px;
        width: 100%;
        position: relative;
        /* Remove posicionamento absoluto do mobile */
        left: 0 !important;
        /* Remove o -260px */
        top: 0 !important;
        /* Remove o posicionamento vertical */
    }

    .logo img {
        width: 600px !important;
        height: auto !important;
        margin: 0 auto;
        display: block !important;
        /* Remove posicionamento absoluto */
        left: -215px !important;
        /* Zera o left negativo */
        top: 20px !important;
        /* Zera o top */
    }

    .logo-link {
        display: block;
        text-align: center;
    }

    .navbar {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 10px 0;
    }

    .nav-links li {
        margin: 0 10px;
        text-align: center;
    }

    .nav-links li a {
        font-size: 0.95rem !important;
    }

    .btn-agendamentos {
        font-size: 1rem;
        padding: 10px 20px;
        margin: 15px auto 0 auto;
        display: block;
        text-align: center;
        white-space: nowrap;
    }

    /* Dropdown correção para tablet */
    .dropdown-content {
        left: 50% !important;
        transform: translateX(-50%);
        min-width: 250px;
    }

    /* Hero Section */
    .hero-section {
        height: 500px;
        background-position: center;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 30px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .btn-consulta {
        font-size: 1rem;
        padding: 12px 25px;
    }

    /* Podcast Intro */
    .podcast-intro {
        padding: 40px 30px;
        max-width: 95%;
    }

    .podcast-intro .title {
        font-size: 1.8rem;
    }

    .podcast-intro .subtitle {
        font-size: 1.1rem;
        text-align: center;
    }

    /* Podcast Section */
    .podcast-section {
        padding: 40px 20px;
    }

    .podcast-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 25px;
    }

    .podcast-card-wrapper {
        width: 45%;
        max-width: 350px;
    }

    .podcast-card {
        width: 100%;
        padding: 20px;
    }

    .podcast-card .card-text {
        font-size: 1.1rem;
    }

    .podcast-embed iframe {
        height: 300px;
    }

    /* CTA Section */
    .cta {
        padding: 30px 20px;
        text-align: center;
    }

    .cta-content p {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .btn-cta {
        font-size: 1.1rem;
        padding: 12px 25px;
    }

    /* WhatsApp Button */
    .whatsapp-button {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
    }

    .whatsapp-button img {
        width: 28px;
        height: 28px;
    }

    /* Footer */
    .footer {
        padding: 30px 20px;
    }

    .footer .links-uteis {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .footer .titulo-links {
        font-size: 1.3rem;
    }

    .footer .icones {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px !important;
    }

    .footer .icone {
        flex: 0 1 22%;
        text-align: center;
    }

    .footer .icone img {
        width: 45px;
        height: 45px;
    }

    .footer .icone p {
        font-size: 0.8rem;
    }

    .footer .endereco {
        text-align: center;
        padding: 20px 0;
    }

    .footer .endereco h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .footer .mapa iframe {
        width: 100%;
        max-width: 500px;
        height: 250px;
    }

    .footer .endereco p {
        font-size: 1rem;
        max-width: 400px;
        margin: 15px auto;
    }

    .littlep {
        font-size: 0.9rem;
        text-align: center;
        padding: 15px 0;
    }
}

.logo {
    display: flex;
    align-items: center;
    margin: 0;
    position: relative;
    justify-content: flex-start;
    /* força alinhamento à esquerda */
}

.logo img {
    max-height: 1000px;
    height: 150px;
    /* deixa a logo caber inteira dentro da navbar */
    width: auto;
    /* mantém proporção */
    display: block;
    position: relative;
    top: 10px;
    left: -230px;
    /* puxa um pouco mais pra esquerda */
    object-fit: contain;
    /* garante qualidade sem esticar */
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.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 4.jpg') no-repeat center/cover;
    height: 600px;
    color: rgba(128, 0, 128, 0.856);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.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;
}

a {
    text-decoration: none;
    color: inherit;
}


.littlep a {
    color: #551a8b !important;
}

.logo {
    display: inline-flex;
    justify-content: left;
    height: 110px;
    width: 150px;
}

.logo img {
    width: auto;
}

.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);
}


.header {
    position: relative;
    z-index: 1;
    background-color: rgba(128, 0, 128, 0.747);
    color: #fff;
    text-align: left;
    padding: 30px 40px;
}

.header h1 {
    font-size: 36px;
    font-weight: bold;
}


.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    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 {
    top: 95%;
    left: 0px;
    display: none;
    position: absolute;
    z-index: 2000;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


.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;
}

.podcast-intro {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.podcast-intro .title {
    font-size: 2rem;
    color: rgba(128, 0, 128, 0.747);
    margin-bottom: 15px;
}

.podcast-intro .subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: black;
}

.podcast-section {
    padding: 50px 20px;
    background-color: #f8f8f8;
}

.podcast-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.podcast-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 350px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.podcast-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.podcast-card-wrapper {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.podcast-card-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.podcast-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.podcast-card .card-text {
    font-weight: bold;
    color: rgba(128, 0, 128, 0.747);
    margin-bottom: 15px;
    font-size: 1rem;
}

.podcast-embed iframe {
    border-radius: 12px;
    width: 100%;
    height: 352px;
}

.footer {
    background-color: rgba(128, 0, 128, 0.747);
    color: #fff;
    padding: 30px 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}


.footer-info {
    font-size: 14px;
    line-height: 1.6;
    max-width: 40%;
}

.footer-info i {
    margin-right: 8px;
}


.footer-warning {
    font-size: 20px;
    line-height: 1.6;
    text-align: left;
    max-width: 50%;
    opacity: 0.9;
}

.footer-warning a {
    color: rgb(66, 0, 39);
    text-decoration: none;
}

.footer-warning a:hover {
    text-decoration: underline;
}


.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ff4c4c;
}


.footer-button {
    text-align: center;
    margin-top: 10px;
}

.btn-agendar {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid rgb(128, 0, 128);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-agendar:hover {
    background-color: rgba(128, 0, 128, 0.295);
    color: #000;
}

.littlep {
    text-align: center;
}


.footer-links {
    flex-direction: column;
    font-size: 18px;
    line-height: 2;
    max-width: 20%;
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    align-items: center;
    gap: 8px;
}

.footer-links i {
    color: rgb(66, 0, 39);
    font-size: 14px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgb(66, 0, 39);
    text-decoration: underline;
}

.mapa iframe {
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.btn-conheca a {
    text-decoration: none;
    color: black;
}

.btn-conheca a:hover {
    color: black;
}

body {
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 1.8;
    color: black;
}

h1,
h2,
h3 {
    font-family: "Lora", serif;
    font-weight: 600;
}

.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 {
    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;
}