/* ================================== */
/* === DESIGN SYSTEM E VARIÁVEIS === */
/* ================================== */
:root {
    --primary-color: #7A2E3D;
    --primary-color-light: #a15f6d;
    --secondary-color: #DDAAAA;
    --accent-color: #F8F5F2;
    --background-color: #FCFBF9;
    --dark-bg: #5A222B;
    --text-color: #4a3f43;
    --light-text-color: #6f6669;
    --white-color: #ffffff;
    --shadow-light: rgba(90, 34, 43, 0.06);
    --shadow-medium: rgba(90, 34, 43, 0.1);
    --shadow-strong: rgba(90, 34, 43, 0.15);
    --max-width: 1200px;
    --border-radius-main: 20px;
    --border-radius-card: 15px;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* ================================== */
/* === RESET E ESTILOS GLOBAIS === */
/* ================================== */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    max-width: 100vw;
    overflow-x: clip;
    overscroll-behavior-x: none;
    font-family: var(--font-secondary);
    color: var(--text-color);
    background: var(--background-color);
    line-height: 1.7;
}

body.no-scroll {
    overflow: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-padding {
    padding: 6rem 0;
    position: relative;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

h2.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.5rem);
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: var(--light-text-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color-light);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    background: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 50px;
    margin-top: 1.5rem;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-medium);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--primary-color-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-strong);
    color: var(--white-color);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}


/* ================================== */
/* === NOVO: PRELOADER === */
/* ================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.75s ease, visibility 0.75s ease;
}

.preloader-logo {
    width: 120px;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* ================================== */
/* === HEADER E NAVEGAÇÃO === */
/* ================================== */
.site-header {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px var(--shadow-light);
    padding: 0.5rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 70px;
    transition: transform 0.4s ease, height 0.4s ease;
}

.site-header.scrolled .logo img {
    height: 60px;
}

/* Menu para telas grandes (Desktop) */
.nav-menu-desktop {
    display: flex;
    list-style: none;
    gap: 2.8rem;
}

.nav-menu-desktop li a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 8px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-menu-desktop li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-menu-desktop li a:hover,
.nav-menu-desktop li a.active {
    color: var(--primary-color);
}

.nav-menu-desktop li a:hover::after,
.nav-menu-desktop li a.active::after {
    width: 100%;
}

/* Botão Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1003;
    position: relative;
    width: 30px;
    height: 21px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    display: block;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger {
    top: 9px;
}

.hamburger::before,
.hamburger::after {
    content: '';
}

.hamburger::before {
    top: -9px;
}

.hamburger::after {
    top: 9px;
}


/* ======================================= */
/* === MENU MOBILE "ESTILO APP" V4.0 === */
/* ======================================= */
.nav-menu-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px; /* Limite de largura em telas maiores para não ficar desproporcional */
    height: 100%;
    background-color: #490e1a;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.6, 0.05, 0.28, 0.91), visibility 0.5s;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.nav-menu-mobile.open {
    transform: translateX(0);
    visibility: visible;
}

/* Cabeçalho do Menu */
.nav-mobile-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.nav-mobile-logo {
    height: 50px;
    opacity: 0.9;
}

.nav-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-close:hover {
    transform: rotate(90deg);
    color: var(--secondary-color);
}

/* Corpo do Menu (Lista de Links) */
.nav-mobile-list {
    list-style: none;
    padding: 1.5rem 0;
    margin: 0;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.5rem; /* Espaçamento reduzido e otimizado */
    overflow-y: auto; /* Garante a rolagem se o conteúdo for muito grande */
}

/* Animação de Entrada dos Itens */
.nav-menu-mobile .nav-mobile-list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.nav-menu-mobile.open .nav-mobile-list li {
    opacity: 1;
    transform: translateX(0);
}

/* Atraso (delay) para cada item */
.nav-menu-mobile.open .nav-mobile-list li:nth-child(1) { transition-delay: 0.20s; }
.nav-menu-mobile.open .nav-mobile-list li:nth-child(2) { transition-delay: 0.24s; }
.nav-menu-mobile.open .nav-mobile-list li:nth-child(3) { transition-delay: 0.28s; }
.nav-menu-mobile.open .nav-mobile-list li:nth-child(4) { transition-delay: 0.32s; }
.nav-menu-mobile.open .nav-mobile-list li:nth-child(5) { transition-delay: 0.36s; }
.nav-menu-mobile.open .nav-mobile-list li:nth-child(6) { transition-delay: 0.40s; }
.nav-menu-mobile.open .nav-mobile-list li:nth-child(7) { transition-delay: 0.44s; }

/* Estilo dos Links Individuais - REFINADO */
.nav-mobile-list li a {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7); /* Cor padrão mais suave */
    font-family: var(--font-primary);
    font-size: 15px; /* FONTE REDUZIDA para um visual mais elegante */
    font-weight: 400;
    padding: 0.8rem 1.2rem; /* Padding reduzido */
    border-radius: 12px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.nav-mobile-list li a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white-color);
    transform: translateX(5px);
}

/* NOVO: Estilo do link ATIVO (quando a seção está visível) */
.nav-mobile-list li a.active {
    color: var(--white-color);
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-mobile-list li a i {
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

/* Ícone do link ATIVO fica branco */
.nav-mobile-list li a.active i {
    color: var(--white-color);
}

/* Rodapé do Menu (Ícones Sociais) */
.nav-mobile-footer {
    flex-shrink: 0;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile-footer h4 {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.nav-mobile-socials {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.nav-mobile-socials a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-mobile-socials a:hover {
    color: var(--white-color);
    transform: translateY(-3px);
}

/* ================================== */
/* === AJUSTE FINO PARA BOTÃO CTA NO MOBILE === */
/* ================================== */
@media (max-width: 480px) {
  .cta-section .btn-cta {
        font-size: 15px !important;
        padding: 0.9rem 1.5rem !important;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
  }

  .cta-section h2 {
    font-size: 27px !important;
  }
}

/* ================================== */
/* === DIVISÓRIAS DE SEÇÃO === */
/* ================================== */
.section-divider,
.section-divider-bottom,
.footer-divider {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 0;
}

.section-divider {
    top: -1px;
}

.section-divider-bottom {
    bottom: -1px;
    transform: rotate(180deg);
}

.footer-divider {
    top: -1px;
    transform: rotate(180deg);
}

.section-divider svg,
.section-divider-bottom svg,
.footer-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.section-divider .shape-fill {
    fill: var(--background-color);
}

.section-divider-bottom .shape-fill,
#testimonials .section-divider .shape-fill {
    fill: var(--accent-color);
}

.footer-divider .shape-fill {
    fill: var(--dark-bg);
}

/* ================================== */
/* === SEÇÃO HERO === */
/* ================================== */
.hero-section {
    /* IMAGEM ATUALIZADA */
    background: linear-gradient(to right, rgba(252, 251, 249, 0.95), rgba(252, 251, 249, 0.7)), url('../assets/karen_foto_roupa_rosa.png') no-repeat center center/cover;
    min-height: 95vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-section .container {
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 650px;
}

.hero-content .subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.hero-content h1 {
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
}

.hero-content p {
    font-size: 1.1rem;
    max-width: 550px;
}

/* ================================== */
/* === SEÇÃO SOBRE MIM === */
/* ================================== */
#about {
    background-color: var(--background-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 4rem;
}

.about-image-container {
    position: relative;
    text-align: center;
}

.about-image-container img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: var(--border-radius-main);
    box-shadow: 0 15px 40px var(--shadow-medium);
    position: relative;
    z-index: 2;
}

.display-button {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
}

.about-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20px;
    width: 95%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: var(--border-radius-main);
    z-index: 1;
    transition: all 0.4s ease;
}

.about-image-container:hover::before {
    transform: translate(-15px, 15px);
    opacity: 0.8;
}

.about-text-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text-content .section-title::after {
    left: 0;
    transform: translateX(0);
}

/* ================================== */
/* === SEÇÃO JORNADA === */
/* ================================== */
.journey-section {
    background-color: var(--accent-color);
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    text-align: center;
    padding-top: 2rem;
    position: relative;
}

.journey-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--secondary-color), var(--secondary-color) 6px, transparent 6px, transparent 12px);
    z-index: 0;
}

.journey-step {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: 0 10px 30px var(--shadow-light);
    position: relative;
    z-index: 1;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.step-number {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 4px solid var(--white-color);
    box-shadow: 0 0 0 4px var(--primary-color);
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-description {
    font-size: 0.95rem;
    color: var(--light-text-color);
}

/* ================================== */
/* === SEÇÃO ABORDAGEM === */
/* ================================== */
.approach-section {
    background-color: var(--background-color);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-card);
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.approach-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.approach-card:hover .approach-icon {
    transform: scale(1.1) rotate(-5deg);
    color: var(--primary-color);
}

.approach-title {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.approach-description {
    color: var(--light-text-color);
    font-size: 0.95rem;
}

.card-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-medium);
}

/* ================================== */
/* === SEÇÃO SERVIÇOS === */
/* ================================== */
.services-section {
    background-color: var(--background-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: 0 10px 40px var(--shadow-light);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid #eee;
}

.service-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-color), var(--white-color));
    padding: 1rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px var(--shadow-light);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--primary-color);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: var(--white-color);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ================================== */
/* === NOVA SEÇÃO MOMENTOS (GALERIA) === */
/* ================================== */
.moments-section {
    background-color: var(--accent-color);
}

.moments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.moment-card {
    border-radius: var(--border-radius-card);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: transform 0.4s ease;
}

.moment-card:hover {
    transform: translateY(-10px);
}

.moment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.moment-card:hover img {
    transform: scale(1.05);
}

.moment-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white-color);
    padding: 3rem 1.5rem 1.5rem;
    text-align: left;
}

.moment-caption h4 {
    color: var(--white-color);
    font-family: var(--font-primary);
    margin-bottom: 0.25rem;
    font-size: 1.3rem;
}

.moment-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 0;
}


/* ================================== */
/* === DEPOIMENTOS (TESTIMONIALS) === */
/* ================================== */
.testimonials-section {
    background-color: var(--accent-color);
    overflow: hidden;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.testimonial-swiper-container {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: var(--border-radius-card);
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid #eee;
    width: 100%;
    max-width: 800px;
}

.testimonial-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--light-text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-style: normal;
}

.swiper-pagination-bullet {
    background-color: var(--secondary-color);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

/* ================================== */
/* === CTA - CHAMADA PARA AÇÃO === */
/* ================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-bg));
    color: var(--white-color);
    text-align: center;
    padding: 5rem 2rem;
    box-shadow: 0 10px 30px var(--shadow-medium);
    margin: 0 5%; /* Adiciona margem para o efeito "flutuante" */
    border-radius: var(--border-radius-main);
    transform: translateY(50px); /* Move para baixo para sobrepor a seção seguinte */
}

#faq {
    padding-top: 100px; /* Adiciona espaço para o CTA acima */
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: var(--white-color);
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-cta {
    background: var(--white-color);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-cta:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.03);
}

/* ================================== */
/* === FAQ === */
/* ================================== */
.faq-section {
    background-color: var(--background-color);
}

.faq-item {
    background: var(--white-color);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-card);
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-item:hover {
    box-shadow: 0 8px 25px var(--shadow-medium);
    transform: translateY(-3px);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    font-family: var(--font-secondary);
    font-weight: 500;
}

.faq-item h3 .icon-toggle {
    font-size: 1.4rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active h3 .icon-toggle {
    transform: rotate(45deg);
}

.faq-item p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    color: var(--light-text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease, margin-top 0.4s ease, padding-top 0.4s ease;
    opacity: 0;
}

.faq-item.active p {
    max-height: 200px;
    opacity: 1;
}

/* ================================== */
/* === CONTATO === */
/* ================================== */
.contact-section {
    background-color: var(--accent-color);
    padding-bottom: 6rem;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
    color: var(--light-text-color);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background: var(--white-color);
    padding: 3rem;
    border-radius: var(--border-radius-main);
    box-shadow: 0 15px 50px var(--shadow-medium);
}

/* ... (O restante do CSS para contato, footer, botões flutuantes, etc., permanece o mesmo) ... */

/* Inclua todo o CSS restante do seu arquivo original a partir daqui */

.contact-form {
    margin: 0;
}
.form-group {
    position: relative;
    margin-bottom: 1.8rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem 1rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    color: var(--text-color);
    background-color: var(--background-color);
    transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 1rem;
    color: var(--light-text-color);
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: var(--background-color);
    padding: 0 0.25rem;
}
.contact-form input:focus+label,
.contact-form input:not(:placeholder-shown)+label,
.contact-form textarea:focus+label,
.contact-form textarea:not(:placeholder-shown)+label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--primary-color);
}
.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}
.form-message {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 1rem;
}
.form-message.success {
    color: #1a7d32;
    background-color: #e6ffe6;
}
.form-message.error {
    color: #a82f2f;
    background-color: #ffe6e6;
}
.contact-details h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}
.contact-info-item .icon-contact {
    font-size: 1.5rem;
    color: var(--primary-color);
}
.contact-info-item div h4 {
    font-family: var(--font-secondary);
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.1rem;
    font-size: 1rem;
}
.contact-info-item a {
    color: var(--light-text-color);
    font-weight: 500;
    font-size: 1rem;
}
.contact-info-item a:hover {
    color: var(--primary-color);
}
.site-footer {
    background-color: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 3rem 0;
    position: relative;
    text-align: center;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}
.footer-logo img {
    height: 80px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}
.footer-logo:hover img {
    opacity: 1;
}
.footer-socials {
    display: flex;
    gap: 1rem;
}
.footer-socials a {
    color: var(--white-color);
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.footer-socials a:hover {
    color: var(--primary-color);
    background: var(--white-color);
    transform: translateY(-3px);
}
.footer-copy {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}
.footer-copy .fa-heart {
    color: var(--secondary-color);
    margin: 0 2px;
}
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 6px 15px var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background-color: var(--primary-color-light);
    transform: translateY(-5px) scale(1.05);
}
.whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    z-index: 998;
}
.whatsapp-button:hover {
    background-color: #1DA851;
    transform: translateY(-5px) scale(1.08);
}
.whatsapp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 23, 29, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}
.whatsapp-modal-overlay.active {
    visibility: visible;
    opacity: 1;
}
.whatsapp-modal-content {
    background: var(--white-color);
    padding: 0;
    border-radius: var(--border-radius-main);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 420px;
    position: relative;
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease-out;
    overflow: hidden;
}
.whatsapp-modal-overlay.active .whatsapp-modal-content {
    transform: scale(1);
    opacity: 1;
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.8rem;
    color: var(--light-text-color);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}
.close-modal:hover {
    color: var(--primary-color);
    background-color: var(--accent-color);
    transform: rotate(90deg);
}
.whatsapp-modal-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    background-color: var(--accent-color);
    border-bottom: 1px solid #e9e2dd;
}
.whatsapp-modal-header .fa-whatsapp {
    font-size: 2.8rem;
    color: #25D366;
    margin-bottom: 1rem;
}
.whatsapp-modal-header h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}
.whatsapp-modal-header p {
    font-size: 1rem;
    color: var(--light-text-color);
    margin-bottom: 0;
}
.whatsapp-form {
    padding: 2.5rem 2rem 2rem;
    display: grid;
    gap: 0.5rem;
}
.whatsapp-form .form-group {
    position: relative;
    margin-bottom: 1.8rem;
}
.whatsapp-form input,
.whatsapp-form textarea {
    width: 100%;
    padding: 1.2rem 1rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    color: var(--text-color);
    background-color: var(--accent-color);
    transition: border-color 0.3s ease;
}
.whatsapp-form input:focus,
.whatsapp-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}
.whatsapp-form .form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-size: 1rem;
    color: var(--light-text-color);
    pointer-events: none;
    transition: all 0.3s ease;
    background-color: var(--accent-color);
    padding: 0 0.25rem;
}
.whatsapp-form input:focus+label,
.whatsapp-form input:not(:placeholder-shown)+label,
.whatsapp-form textarea:focus+label,
.whatsapp-form textarea:not(:placeholder-shown)+label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--primary-color);
}
.whatsapp-form textarea {
    resize: vertical;
    min-height: 100px;
}
.btn-whatsapp-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    background: #25D366;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
    border: none;
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}
.btn-whatsapp-submit:hover {
    background: #1DA851;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}
.whatsapp-note {
    font-size: 0.85rem;
    color: var(--light-text-color);
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
}
@media (max-width: 992px) {
    .journey-grid::before {
        display: none;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .about-grid {
        text-align: center;
    }
    .about-text-content .section-title {
        text-align: center;
    }
    .about-text-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-image-container::before {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
    .about-image-container:hover::before {
        transform: translate(-50%, 10px);
    }
}
@media (max-width: 768px) {
    .nav-menu-desktop {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .hero-section {
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ================================== */
/* === NOVA VITRINE DE PLATAFORMAS === */
/* ================================== */

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.platform-card {
    background: var(--white-color);
    border-radius: var(--border-radius-main);
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid #eee;
    overflow: hidden; /* Mantém a imagem presa dentro das bordas arredondadas */
    display: flex;
    flex-direction: column;
}

/* Área da Imagem */
.platform-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px; /* Altura fixa para as imagens ficarem alinhadas */
    overflow: hidden;
    background-color: #f5f5f5; /* Cor de fundo caso a imagem demore a carregar */
}

.platform-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    transition: transform 0.6s ease;
}

.platform-card:hover .platform-img {
    transform: scale(1.08); /* Efeito de zoom na imagem ao passar o mouse */
}

/* Tag flutuante sobre a imagem */
.platform-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Área de Texto */
.platform-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.platform-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.platform-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.platform-content p {
    color: var(--light-text-color);
    margin-bottom: 2rem;
    flex-grow: 1; /* Empurra o botão para baixo para alinhamento perfeito */
}

/* Ajuste no botão dentro do card */
.platform-content .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ================================== */
/* === NOVA VITRINE DE PLATAFORMAS === */
/* ================================== */

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.platform-card {
    background: var(--white-color);
    border-radius: var(--border-radius-main);
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid #eee;
    overflow: hidden; 
    display: flex;
    flex-direction: column;
}

/* Área da Imagem */
.platform-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px; /* Mantém a altura fixa para os cards não quebrarem */
    overflow: hidden;
    background-color: var(--accent-color); 
}

.platform-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ESSENCIAL: Faz a imagem preencher o espaço sem amassar */
    transition: transform 0.6s ease;
}

.platform-card:hover .platform-img {
    transform: scale(1.08); 
}

/* Tag flutuante sobre a imagem */
.platform-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

/* Área de Texto */
.platform-content {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.platform-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.platform-icon {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.platform-header h3 {
    margin-bottom: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
}

.platform-content p {
    color: var(--light-text-color);
    margin-bottom: 2rem;
    flex-grow: 1; 
}

.platform-content .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}