/* General Styling */
:root {
    --primary-color: #fce4e4; /* Light pink/peach from backgrounds */
    --secondary-color: #d8edf7; /* Light blue from backgrounds */
    --text-dark: #333;
    --text-light: #fff;
    --btn-color: #e6a7a7; /* Deeper pink for buttons */
    --light-grey: #f7f7f7;
    --medium-grey: #666;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-grey);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

a {
    text-decoration: none!important;
    color: var(--text-dark);
}

ul {
    list-style: none;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', serif;
    margin-top: 0;
    color: var(--text-dark);
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.subtitle {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--medium-grey);
}

.btn-contact {
    display: inline-block;
    background-color: var(--btn-color);
    color: var(--text-light) !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-contact:hover {
    background-color: #cf8e8e;
}

.btn-contact-small {
    display: block; /* Ensures it takes full width for centering */
    width: fit-content;
    margin: 0 auto 30px auto; /* Centers the button */
    background-color: var(--btn-color);
    color: var(--text-light) !important;
    padding: 8px 15px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}

.btn-contact-small:hover {
    background-color: #cf8e8e;
}

/* Header Section */
.header-section {
    background-color: var(--light-grey);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
}

.logo img {
    height: 50px; /* Adjust as needed */
    margin-right: 10px;
}

.logo span {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--text-dark);
}

.logo small {
    display: block;
    font-size: 0.8em;
    color: var(--medium-grey);
    margin-left: 10px;
    align-self: flex-end;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 5px;
}

.main-nav a:not(.btn-contact):hover {
    color: var(--btn-color);
}

.main-nav a:not(.btn-contact)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--btn-color);
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
}

.main-nav a:not(.btn-contact):hover::after {
    width: 100%;
}

/* Hero Section (1.jpg) */
.hero-section {
    padding: 50px 0;
    background-color: #fff; /* White background */
}

.hero-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-image-card {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: var(--primary-color); /* Matches background color */
}

.hero-image-card img {
    width: 100%;
    display: block;
    border-radius: 15px;
    filter: brightness(0.9); /* Slightly darken the image */
}

.quote-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 15px 20px;
    border-radius: 10px;
    max-width: 60%;
}

.quote-overlay p {
    margin: 0;
    font-style: italic;
    font-size: 0.9em;
    color: var(--text-dark);
}

.hero-text-content {
    flex: 1;
    text-align: center;
}

.main-logo-hero img {
    height: 150px; /* Adjust size */
    margin-bottom: 20px;
}

.main-logo-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.main-logo-hero h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2em;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--medium-grey);
    letter-spacing: 2px;
}

.affiliation {
    margin-top: 30px;
    font-size: 1.1em;
    color: var(--medium-grey);
}

/* Section: A QUEM SE DESTINA A CONSULTA? (2.jpg) */
.section-destina {
    background-color: var(--secondary-color);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.destinies-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 40px 60px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.destinies-card h3 {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.destinies-card ul {
    margin-bottom: 25px;
}

.destinies-card li {
    font-size: 1.1em;
    padding: 8px 0;
    color: var(--text-dark);
}

.destinies-card p {
    font-size: 0.9em;
    color: var(--medium-grey);
    font-style: italic;
}

/* Section: Abordagem Terapêutica (3.jpg) */
.section-abordagem {
    padding: 20px 0;
    background-color: #fff;
}

.abordagem-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.abordagem-content .text-block {
    flex: 2;
    font-size: 1.1em;
    line-height: 1.8;
}

.abordagem-content .highlight-card {
    flex: 1;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.highlight-card p {
    margin: 0;
}

/* Section: Quote "O essencial é invisível aos olhos" (4.jpg) */
.section-quote-essential {
    background-color: var(--primary-color);
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.quote-bubble {
    background-color: #fff;
    border-radius: 50% 50% 50% 10% / 50% 50% 10% 50%; /* Bubble shape */
    padding: 50px 80px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.quote-bubble p {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.quote-bubble small {
    font-size: 1.1em;
    font-style: italic;
    color: var(--medium-grey);
}

/* Section: Tipos de Terapia (5.jpg) */
.section-tipos-terapia {
    background-color: #fff;
    padding: 20px 0;
}

.therapy-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.therapy-card {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 15px;
    padding: 40px;
    width: 45%; /* Adjust for responsiveness */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.therapy-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.therapy-card p {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-dark);
}

.therapy-couple {
    background-color: var(--primary-color); /* Different color for couple therapy card */
}

/* Section: Natureza dos problemas (6.jpg) */
.section-problemas {
    padding: 20px 0;
    background-color: var(--light-grey);
}

.section-problemas p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Section: Depoimentos (7.jpg, 8.jpg) */
.section-depoimentos {
    background-color: #fff;
    padding: 20px 0;
}

.testimonial-card {
    background-color: var(--primary-color);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.icon-person {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: absolute;
    top: -30px; /* Adjust to float above the card */
    left: 40px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    /* For a simple person icon, could use a background image or font-awesome icon */
    content: ''; /* Empty content for now, could be an SVG or font icon */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23fce4e4" d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512H418.3c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304H178.3z"/></svg>');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}


.testimonial-card h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    padding-top: 30px; /* Space for the floating icon */
    color: var(--text-dark);
}

.testimonial-card p {
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Section: Consultas (9.jpg) */
.section-consultas {
    background-color: var(--light-grey);
    padding: 20px 0;
}

.consultas-locations {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.location-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    text-align: center;
    width: 45%; /* Adjust for responsiveness */
}

.icon-map {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    color: var(--text-light);
    /* For a simple map icon, could use a background image or font-awesome icon */
    content: '';
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="%23ffffff" d="M215.7 499.2c-2.2 4-5.2 7.7-8.9 10.9s-8.1 5.8-12.2 7.5-8.5 2.7-12.7 3.3-8.5 .8-12.8 .8c-4.3 0-8.5-.2-12.8-.8s-8.5-1.5-12.7-3.3-8.5-3.6-12.2-7.5-6.7-6.9-8.9-10.9C67.3 438.4 0 327.2 0 208 0 93.1 85.9 0 192 0s192 93.1 192 208c0 119.2-67.3 230.4-168.3 291.2zM192 256c35.3 0 64-28.7 64-64s-28.7-64-64-64-64 28.7-64 64 28.7 64 64 64z"/></svg>');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}


.location-card h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.map-placeholder {
    background-color: #eee;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder iframe {
    border: none;
}

/* Section: Sobre mim (10.jpg) */
.section-sobre-mim {
    background-color: #fff;
    padding: 20px 0;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-text {
    flex: 2;
}

.about-text h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-text ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-text ul li {
    margin-bottom: 8px;
    font-size: 1em;
}

.about-text ul li strong {
    font-weight: 600;
}

.about-text p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}


/* Section: Quote "Se a tarefa do terapeuta..." (11.jpg) */
.section-quote-therapist {
    background-image: url('background_blur.jpg'); /* Replace with a suitable blurred background image */
    background-size: cover;
    background-position: center;
    padding: 0px 0;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.section-quote-therapist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 1;
}

.quote-therapist-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.quote-therapist-text p {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    line-height: 1.5;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.quote-therapist-text small {
    font-size: 1.2em;
    font-style: italic;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}


/* Footer / Contact Section (12.jpg) */
.footer-section {
    background-color: #ffafa0; /*var(--primary-color);*/
    padding: 0px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-section::before,
.footer-section::after {
    content: '';
    position: absolute;
    background-color: rgba(255, 255, 255, 0.3); /* Lighter blobs */
    border-radius: 50%;
    filter: blur(40px); /* Soft blur */
    z-index: 1;
}

.footer-section::before {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
}

.footer-section::after {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 15%;
}

.footer-content {
    position: relative;
    z-index: 2;
    color: var(--text-dark);
}

.footer-content .section-title {
    color: var(--text-dark);
    margin-bottom: 40px;
}

.contact-info p {
    font-size: 1.4em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-dark);
}

.contact-info i {
    font-size: 1.2em;
    color: var(--text-dark);
}

.social-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-links a {
    font-size: 2em;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-light); /* Or a highlight color */
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .quote-overlay {
        position: static;
        max-width: 100%;
        margin-top: 20px;
        background-color: rgba(255, 255, 255, 0.95);
    }

    .main-logo-hero {
        margin-top: 40px;
    }

    .abordagem-content,
    .therapy-cards-wrapper,
    .consultas-locations,
    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .abordagem-content .text-block,
    .abordagem-content .highlight-card,
    .therapy-card,
    .location-card,
    .about-image,
    .about-text {
        width: 100%;
    }

    .therapy-card {
        padding: 30px;
    }

    .section-title {
        font-size: 2em;
    }

    .quote-bubble {
        padding: 40px 60px;
    }

    .quote-bubble p {
        font-size: 1.8em;
    }

    .quote-therapist-text p {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .main-nav li:last-child {
        margin-top: 10px;
    }

    .logo {
        flex-direction: column;
        align-items: center;
    }
    .logo small {
        margin-left: 0;
        margin-top: 5px;
    }

    .hero-image-card {
        border-radius: 10px;
    }

    .destinies-card {
        padding: 30px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .icon-person {
        left: 20px;
    }

    .testimonial-card h3 {
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .main-logo-hero h1 {
        font-size: 2.5em;
    }

    .main-logo-hero h2 {
        font-size: 1em;
    }

    .quote-bubble {
        padding: 30px 40px;
        border-radius: 15px; /* Less exaggerated bubble on small screens */
    }
    .quote-bubble p {
        font-size: 1.5em;
    }

    .quote-therapist-text p {
        font-size: 1.5em;
    }

    .contact-info p {
        font-size: 1.2em;
    }
}




.slider {
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: 20px 0;
}

.slides {
    display: flex;
    overflow: hidden;
}

.slide {
    min-width: 100%;
    transition: transform 0.5s ease;
}

.slide img {
    width: 100%;
    display: block;
}


.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.navigation button {
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.dots {
    text-align: center;
    padding: 10px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #717171;
}

