@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #976448;
    --primary-hover: #af7455;

}

body {
    font-family: "Lato";
    background-color: #FFF;
    color: #63534b;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lora", serif !important;
    font-weight: 700;
}

/* --------------------------------------- HEADER --------------------------------------- */
header {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffffb2;
    border-bottom: 1px solid #97644838;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header-content {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h1 {
    color: var(--primary);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul>li>a {
    text-decoration: none;
    color: #63534b;
    font-weight: 600;
}


@media (max-width: 768px) {
    nav ul {
        display: none;
    }
}



/* --------------------------------------- BOTÂO WHATSAPP --------------------------------------- */
.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: var(--primary);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(56, 37, 27, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: var(--primary-hover);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 14px rgb(56, 37, 27, 0.6);
}

@media (max-width: 768px) {
    .btn-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .btn-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}




/* --------------------------------------- HERO --------------------------------------- */
.hero-section {
    margin-top: 80px;
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;

    background-image:
        linear-gradient(to top,
            #FFFFFF 0%,
            rgba(255, 255, 255, 0) 20%,


            rgba(255, 255, 255, 0) 20%),

        linear-gradient(to right,
            #F3ECE7 0%,
            #F3ECE7 25%,
            rgba(243, 236, 231, 0.9) 35%,
            rgba(243, 236, 231, 0.6) 50%,
            rgba(243, 236, 231, 0) 70%),
        url('./img/bg-hero.webp');

    background-size: cover, cover, 100% auto;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: bottom center, left center, calc(100% + 300px) center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.hero-content {
    max-width: 580px;
    z-index: 2;
    position: relative;
}

.hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary, #A97155);
    border: 1px solid var(--primary, #A97155);
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.6);
}

.hero-content h1 {
    font-family: var(--font-title, serif);
    color: #4A3B32;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-content h1 .highlight {
    display: block;
    font-weight: 400;
    font-size: 2.2rem;
    color: var(--primary, #A97155);
    margin-top: 5px;
}

.subtitle-hero {
    font-weight: 700;
    text-transform: uppercase;
    color: #8C7B70;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero-content .description {
    color: #5A4E45;
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary, #A97155);
    color: #fff;
    box-shadow: 0 4px 15px rgba(169, 113, 85, 0.3);
}

.btn-primary:hover {
    background-color: #8f5e45;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary, #A97155);
    border: 1px solid var(--primary, #A97155);
}

.btn-secondary:hover {
    background-color: rgba(169, 113, 85, 0.1);
}

@media (max-width: 768px) {
    .hero-section {
        background-position: bottom center, right center, center right;
        background-size: cover, cover, cover;
        padding: 6rem 1rem;
        text-align: center;
        height: auto;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-badges,
    .hero-buttons {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .btn {
        justify-content: center;
    }
}




/* --------------------------------------- PÚBLICO ALVO --------------------------------------- */
.demandas-section {
    padding: 5rem 1rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.section-header p {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    flex: 0 1 250px;
    background-color: var(--color-card-bg);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 10px 10px 10px rgba(56, 37, 27, 0.04);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 10px rgba(172, 90, 46, 0.1);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    background-color: #F3ECE7;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.card p {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }
}




/* --------------------------------------- DEPOIMENTOS --------------------------------------- */
.depoimentos-section {
    background-color: #FFFFFF;
    padding: 3rem 1rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary, #6B4F40);
    font-size: 2.5rem;
    margin-top: 10px;
}

.carousel-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 5px;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 100%;
    max-width: 400px;
    scroll-snap-align: center;
    background: #F9F5F2;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(169, 113, 85, 0.2);
    line-height: 1;
    font-family: serif;
    margin-bottom: -20px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary, #A97155);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.author-info strong {
    display: block;
    color: var(---primary, #6B4F40);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
}

.nav-btn {
    background: #fff;
    border: 1px solid #eee;
    color: var(--primary, #A97155);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    z-index: 2;
}

.nav-btn:hover {
    background: var(--primary, #A97155);
    color: #fff;
    transform: scale(1.1);
}

.prev-btn {
    margin-right: 15px;
}

.next-btn {
    margin-left: 15px;
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 45%;
    }
}




/* --------------------------------------- SOBRE MIM --------------------------------------- */
.sobre-section {
    padding: 5rem 1rem;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 5rem auto;
}

.sobre-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 20px 20px 0px rgba(169, 113, 85, 0.15);
}

.sobre-image img {
    width: 100%;
    height: auto;
    max-height: 700px;

    display: block;
    object-fit: cover;
}

.sobre-content h2 {
    font-size: 2.5rem;
    color: #6B4F40;
    margin: 1rem 0 1.5rem 0;
}

.bio-text p {
    color: #5A5A5A;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.formacao-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

:root {
    --swiper-theme-color: #ffffff !important;
    --swiper-navigation-size: 24px;
}

.swiper-pagination-bullet {
    background: #ffffff !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}

.destaque-box {
    background-color: #fff;
    border-left: 4px solid var(--primary, #A97155);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-top: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.destaque-box i {
    color: var(--primary, #A97155);
    font-size: 1.5rem;
    margin-top: 3px;
}

.formacao-container {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(169, 113, 85, 0.2);
    padding-top: 3rem;
}

.formacao-container h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #6B4F40;
    margin-bottom: 2.5rem;
}

.formacao-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.formacao-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.formacao-card:hover {
    transform: translateY(-5px);
    border-color: rgba(169, 113, 85, 0.3);
}

.formacao-card .year {
    display: inline-block;
    background-color: #F3ECE7;
    color: var(--primary, #A97155);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.formacao-card strong {
    display: block;
    color: #4A4A4A;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formacao-card span {
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 900px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .sobre-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .destaque-box {
        text-align: left;
    }
}

.formacao-container {
    margin-top: 80px;
}

.formacao-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.formacao-subtitle {
    color: #af7455;
    margin-bottom: 20px;
    font-weight: bold;
}

.formacao-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    line-height: 1.8;
}

.formacao-list li {
    margin-bottom: 10px;
}



.formacao-img-2 {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .formacao-container {
        margin-top: 50px;
    }

    .formacao-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


/* --------------------------------------- FAQ --------------------------------------- */
.faq-section {
    background-color: #FFFFFF;
    padding: 5rem 1rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 20px rgba(169, 113, 85, 0.08);
    border-color: rgba(169, 113, 85, 0.3);
    transform: translateY(-2px);
}

.faq-item[open] {
    background-color: #FAF7F5;
    border-color: rgba(169, 113, 85, 0.4);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

summary {
    list-style: none;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

summary::-webkit-details-marker {
    display: none;
}

.question {
    font-family: "Lora", serif !important;
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 600;
}

.icon-wrapper {
    width: 32px;
    height: 32px;
    background-color: #F3ECE7;
    color: var(--primary, #A97155);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

details[open] summary .icon-wrapper {
    transform: rotate(45deg);
    background-color: var(--primary, #A97155);
    color: #fff;
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
}

details[open] .accordion-content {
    grid-template-rows: 1fr;
}

.inner-text {
    overflow: hidden;
}

.inner-text p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

details[open] .inner-text p {
    opacity: 1;
    transform: translateY(0);
}

details.is-closing .accordion-content {
    grid-template-rows: 0fr;
}

details.is-closing .inner-text p {
    opacity: 0;
    transform: translateY(-10px);
}




/* --------------------------------------- FOOTER --------------------------------------- */
.site-footer {
    background-color: var(--primary);
    color: #FFFFFF;
    padding: 3rem 1rem 1.5rem 1rem;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.footer-identity h3 {
    font-family: var(--font-title, serif);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 400;
}

.footer-identity .crp {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #fff;
    font-weight: 600;
}

.footer-contacts {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-contacts a {
    color: #F3ECE7;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.footer-contacts a:hover {
    color: #FFFFFF;
    transform: translateY(-2px);
}

.footer-contacts i {
    font-size: 1.1rem;
}

.cvv-warning {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    width: 100%;
    margin-top: 0.5rem;
}

.cvv-warning strong {
    color: #FFFFFF;
    text-decoration: underline;
}

.footer-bottom {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}