* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg-light: #FFF0E5;

    --color-rose: #E69D95;
    --color-rose-light: #F8DDCB;
    --color-brown: #A4631B;
    --color-gold: #FBE878;

    --text-dark: #2C1810;
    --text-body: #4A3228;

    --white: #FFFFFF;
    --font-primary: 'Quicksand', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    --shadow: 0 10px 30px -10px rgba(60, 30, 10, 0.15);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: #fff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

.border-about-services {
    position: relative;
    width: 100%;
    height: 20px;
    background: url('/assets/img/border-section.webp') center/contain;
    background-size: 20%;

}

/* Buttons */
.btn-primary {
    background-color: var(--color-rose);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(230, 157, 149, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-brown);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--color-brown);
    font-weight: 600;
    padding: 12px 28px;
    font-family: var(--font-secondary);
}

.btn-secondary:hover {
    color: var(--color-rose);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    padding: 15px 0;
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-list a {
    color: var(--color-brown);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.nav-list a.active,
.nav-list a:hover {
    color: var(--color-rose);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: var(--color-brown);
    font-size: 1.2rem;
}

.social-links a:hover {
    color: var(--color-rose);
    transform: scale(1.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-brown);
    cursor: pointer;
}

@media (max-width: 968px) {

    .header-container {
        justify-content: space-between;
        padding: 0 10px;
    }

    /* 2. Botão do Menu (Hambúrguer) */
    .mobile-menu-btn {
        display: block;
        z-index: 1002;
        font-size: 1.8rem;
        transition: color 0.3s;
    }

    .mobile-menu-btn.active {
        color: var(--color-rose);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background-color: #fff;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
        padding-top: 100px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }

    .nav-list a {
        font-size: 1.2rem;
    }

    .header-actions {
        position: fixed;
        bottom: 40px;
        right: -100%;
        flex-direction: column-reverse;
        gap: 25px;
        z-index: 1001;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 85%;
        align-items: center;
        justify-content: center;
        pointer-events: none;
    }

    .header-actions.active {
        right: 0;
        pointer-events: auto;
    }

    .btn-primary {
        width: 80%;
        text-align: center;
        padding: 15px;
    }

    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 999;
        backdrop-filter: blur(2px);
    }
}

.hero {
    padding-top: 160px;
    padding-bottom: 150px;
    background-color: var(--color-bg-light);
    position: relative;
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(230, 157, 149, 0.3);
    /* Rose */
    top: -100px;
    right: -50px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(251, 232, 120, 0.25);

    bottom: 50px;
    left: -100px;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #fff;
    border: 1px solid var(--color-rose-light);
    color: var(--color-brown);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.badge.highlight {
    background-color: rgba(251, 232, 120, 0.3);
    border-color: transparent;
}

.hero h1 {
    font-family: var(--font-secondary);
    font-size: 3.2rem;
    line-height: 1.15;
    color: var(--color-brown);
    margin-bottom: 24px;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(120deg, var(--color-brown), var(--color-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: #6d584e;
    margin-bottom: 35px;
    line-height: 1.7;
    max-width: 90%;
}

.hero-stats {
    margin-top: 40px;
    display: flex;
    gap: 25px;
    border-top: 1px solid rgba(164, 99, 27, 0.1);
    padding-top: 25px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brown);
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-item i {
    font-size: 1.4rem;
    color: var(--color-rose);
}

.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.blob-wrapper {
    position: relative;
    width: 480px;
    height: 520px;
}

.main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 63% 37% 39% 61% / 54% 35% 65% 46%;
    box-shadow: 10px 10px 0px rgba(230, 157, 149, 0.2);
    transition: all 0.5s ease;
    animation: morph 8s ease-in-out infinite;
    background-color: #fff;
}

@keyframes morph {
    0% {
        border-radius: 63% 37% 39% 61% / 54% 35% 65% 46%;
    }

    50% {
        border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
    }

    100% {
        border-radius: 63% 37% 39% 61% / 54% 35% 65% 46%;
    }
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: var(--color-brown);
    font-size: 1.5rem;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.icon-1 {
    top: 40px;
    right: 20px;
    color: var(--color-rose);
    animation-delay: 0s;
}

.icon-2 {
    bottom: 80px;
    left: 10px;
    color: var(--color-gold);
    animation-delay: 1.5s;
    font-size: 1.8rem;
}

.float-card {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
    border-left: 4px solid var(--color-gold);
}

.float-card .icon-ludico {
    font-size: 2rem;
    color: var(--color-rose);
}

.float-card .text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.float-card strong {
    color: var(--color-brown);
    font-size: 0.95rem;
}

.float-card small {
    color: #888;
    font-size: 0.75rem;
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 100px;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom .shape-fill {
    fill: #FFFFFF;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .blob-wrapper {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 968px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 20px;
    }

    .hero-content {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .badge-container {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image-area {
        margin-bottom: 30px;
    }

    .blob-wrapper {
        width: 300px;
        height: 320px;
    }

    .float-card {
        right: 0;
        bottom: 20px;
    }
}

.about {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 400px;
    height: 600px;
    z-index: 1;
}

.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.experience-card {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    border-left: 4px solid var(--color-rose);
}

.experience-card i {
    font-size: 2rem;
    color: var(--color-brown);
}

.experience-card strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.experience-card span {
    font-size: 0.8rem;
    color: #666;
}

.doodle {
    position: absolute;
    font-size: 2.5rem;
    z-index: 3;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
}


.doodle img {
    width: 40px;
    height: 40px;
}

.doodle-1 {
    top: -20px;
    right: -20px;
    color: var(--color-gold);
    transform: rotate(15deg);
}

.doodle-2 {
    bottom: 50px;
    right: -30px;
    color: var(--color-rose);
    font-size: 2rem;
    transform: rotate(-2deg);
}

.doodle-3 {
    top: 50px;
    left: -25px;
    color: var(--color-brown);
    font-size: 1.8rem;
    transform: rotate(-10deg);

}

.about-content {
    padding-right: 20px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-rose);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about-content h2 {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    color: var(--color-brown);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-highlight {
    color: var(--color-rose);
    position: relative;
    z-index: 1;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--color-gold);
    z-index: -1;
    opacity: 0.4;
    border-radius: 4px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-body);
    font-size: 1.05rem;
}

.about-features {
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.about-features i {
    color: var(--color-rose);
    font-size: 1.4rem;
}

.bg-doodles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.icon-bg {
    position: absolute;
    color: var(--color-rose-light);
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
}

.icon-bg-1 {
    font-size: 4rem;
    top: 10%;
    left: 5%;
    transform: rotate(-20deg);
}

.icon-bg-2 {
    font-size: 5rem;
    bottom: 10%;
    right: 5%;
    color: rgba(251, 232, 120, 0.4);
    animation-delay: 2s;
}

.icon-bg-3 {
    font-size: 3rem;
    top: 40%;
    right: 45%;
    opacity: 0.2;
    animation-delay: 1s;
}

@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content {
        padding-right: 0;
        order: 2;
    }

    .about-features {
        align-items: center;
        text-align: left;
    }

    .about-image-wrapper {
        order: 1;
        margin-bottom: 30px;
    }

    .image-frame {
        width: 100%;
        max-width: 350px;
        height: 400px;
    }

    .experience-card {
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        bottom: -30px;
    }
}

/* =========================================== SERVIÇOS =========================================== */
.services {
    padding: 100px 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--color-brown);
    margin: 10px 0;
}

.section-header p {
    color: var(--text-body);
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.service-card-solid {
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-solid:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(44, 24, 16, 0.12);
}

.service-card-solid i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-card-solid h3 {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.2;
}

.service-card-solid p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.bg-rose {
    background-color: var(--color-rose);
    color: #fff;
}

.bg-gold {
    background-color: var(--color-gold);
    color: var(--color-brown);
}

.bg-brown {
    background-color: var(--color-brown);
    color: #fff;
}

.bg-rose-light {
    background-color: var(--color-rose-light);
    color: var(--color-brown);
}

.bg-gold p,
.bg-rose-light p {
    color: #5a4035;
    font-weight: 600;
}

.text-white {
    color: #fff;
}

.services-cta {
    display: flex;
    justify-content: center;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .service-card-solid {
        padding: 25px 20px;
    }
}

.border-about-services {
    position: relative;
    width: 100%;
    height: 20px;
    background: url('/assets/img/border-section.webp') center/contain;
    background-size: 20%;

}

@media (max-width: 768px) {
    .border-about-services {
        position: relative;
        width: 100%;
        height: 20px;
        background: url('/assets/img/border-section.webp') center/contain;
        background-size: 70%;

    }
}

@media (max-width: 968px) {
    .border-about-services {
        position: relative;
        width: 100%;
        height: 30px;
        background: url('/assets/img/border-section.webp') center/contain;
        background-size: 70%;

    }
}

/* =========================================== DEPOIMENTOS =========================================== */
.testimonials {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.testimonial-swiper {
    padding: 40px 10px 60px !important;

}

.testimonial-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1px solid rgba(164, 99, 27, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.05);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.border-gold {
    border-top: 5px solid var(--color-gold);
}

.border-brown {
    border-top: 5px solid var(--color-brown);
}

.testimonial-card:not([class*='border-']) {
    border-top: 5px solid var(--color-rose);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--color-rose);
    margin-bottom: 20px;
    opacity: 0.6;
}

.icon-gold {
    color: var(--color-gold);
}

.icon-brown {
    color: var(--color-brown);
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-body);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-rose-light);
}

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

.card-decoration {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 1.5rem;
    color: var(--color-rose-light);
    opacity: 0.5;
}

.color-gold {
    color: var(--color-gold);
}

.color-brown {
    color: var(--color-brown);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-brown) !important;
    transform: scale(0.6);
    background: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-pagination-bullet-active {
    background: var(--color-rose) !important;
}

.how-it-works {
    padding: 100px 0;
    background-color: var(--color-bg-light);
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

@media (min-width: 969px) {
    .steps-grid::before {
        content: "";
        position: absolute;
        top: 45px;
        left: 10%;
        width: 80%;
        height: 2px;
        border-top: 3px dashed var(--color-rose-light);
        z-index: 1;
    }
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: -20px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 90px;
    height: 90px;
    background-color: #fff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--color-brown);
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    transform: scale(1.1);
    border-color: var(--color-gold);
}

.step-item h3 {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    color: var(--color-brown);
    margin-bottom: 15px;
}

.step-item p {
    font-size: 0.95rem;
    color: var(--text-body);
    padding: 0 10px;
    line-height: 1.6;
}

.process-cta {
    margin-top: 70px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.process-cta p {
    font-weight: 700;
    color: var(--color-brown);
    font-size: 1.1rem;
}

@media (max-width: 968px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 20px;
    }
}

@media (max-width: 600px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-item {
        max-width: 300px;
        margin: 0 auto;
    }
}

.faq {
    padding: 100px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 2px solid rgba(164, 99, 27, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--color-rose-light);
}

.faq-item.active {
    border-color: var(--color-rose);
    box-shadow: 0 10px 25px rgba(230, 157, 149, 0.1);
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    background: #fff;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    gap: 20px;
    transition: background 0.3s ease;
}

.faq-question span {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-brown);
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--color-rose);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-content {
    overflow: hidden;
}

.faq-content p {
    padding: 0 30px 25px;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .faq-question {
        padding: 18px 20px;
    }

    .faq-content p {
        padding: 0 20px 20px;
    }
}

.footer {
    position: relative;
    background-color: var(--color-bg-light);
    padding: 120px 0 30px;
}

.custom-shape-divider-top-footer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-footer svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 70px;
}

.custom-shape-divider-top-footer .shape-fill {
    fill: #FFFFFF;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-brand img {
    margin-bottom: 20px;
    filter: grayscale(0.2);
}

.footer-brand p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 320px;
}

.libras-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: #fff;
    border-radius: 12px;
    color: var(--color-brown);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.libras-badge i {
    font-size: 1.2rem;
    color: var(--color-rose);
}

.footer h4 {
    font-family: var(--font-secondary);
    color: var(--color-brown);
    margin-bottom: 25px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-body);
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-rose);
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-body);
    font-weight: 600;
}

.crp-badge {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid var(--color-brown);
    border-radius: 6px;
    color: var(--color-brown);
    font-size: 0.8rem;
    font-weight: 700;
    width: fit-content;
}

.social-links-footer {
    display: flex;
    gap: 15px;
}

.social-links-footer a {
    font-size: 1.5rem;
    color: var(--color-brown);
    transition: transform 0.3s;
}

.social-links-footer a:hover {
    color: var(--color-rose);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(164, 99, 27, 0.1);
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.85rem;
}

.footer-text-dev {
    font-size: 0.7rem;
}

.footer-text-dev a {
    font-weight: bold;
    text-transform: uppercase;
    color: #888;
}

@media (max-width: 968px) {
    .footer {
        padding: 100px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p,
    .footer-contact address {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .social-links-footer,
    .libras-badge,
    .crp-badge {
        justify-content: center;
        margin: 0 auto;
    }
}

.contact-item.address-item {
    align-items: flex-start;
    line-height: 1.5;
    text-align: left;
}

.contact-item.address-item i {
    margin-top: 4px;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .contact-item.address-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-item.address-item i {
        margin-top: 0;
        margin-bottom: 5px;
    }
}

.methodology {
    padding: 5rem 0;
    background-color: #fff;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.method-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.method-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.bg-rose-light {
    background-color: #F8DDCB;
    color: #A4631B;
}

.bg-gold-light {
    background-color: #FBE878;
    color: #A4631B;
}

.method-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.method-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA56;
    transform: scale(1.1);
}

.whatsapp-float .tooltip-text {
    position: absolute;
    right: 70px;
    background-color: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}