@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #e11d48;
    --primary-light: #fb7185;
    --primary-dark: #be123c;
    --secondary: #0f172a;
    --accent: #c026d3;
    
    --bg-color: #fcfcfd;
    --bg-card: rgba(255, 255, 255, 0.85);
    
    --text-main: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    
    --border-color: rgba(226, 232, 240, 0.6);
    
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.04);
    --shadow-float: 0 30px 60px rgba(225, 29, 72, 0.08);
    --glow-btn: 0 10px 25px rgba(225, 29, 72, 0.3);
    
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(at 0% 0%, rgba(251, 113, 133, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(192, 38, 211, 0.08) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Botões Premium --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: var(--glow-btn);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

/* Efeito Pulsante para Botões Claros (CTA) */
@keyframes pulse-white-btn {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    }
    70% {
        transform: scale(1.04);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.btn-pulse-white {
    animation: pulse-white-btn 2s infinite;
}

.btn-pulse-white:hover {
    animation: none;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-glass-dark {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--secondary);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-soft);
}
.btn-glass-dark:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 24px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

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

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

/* Esconder logo por padrão */
#nav-logo {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.logo i {
    color: var(--primary-light);
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.03);
}

header.scrolled .logo {
    color: var(--secondary);
}

/* Mostrar logo quando rolar a página */
header.scrolled #nav-logo {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateY(0);
}

header.scrolled .logo i {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

header.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-light);
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding: 220px 0 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: url('../imagens/hero_bg.png') no-repeat center center/cover;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

.hero h1 {
    font-size: 4.8rem;
    margin-bottom: 24px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    line-height: 1.05;
}

.text-gradient {
    background: linear-gradient(135deg, #fbcfe8, #fb7185, #c026d3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 48px;
    color: rgba(255,255,255,0.85);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- STATS SECTION --- */
.stats {
    margin: -70px auto 100px;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    width: 90%;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 45px 0;
    box-shadow: var(--shadow-soft), 0 0 0 1px inset rgba(255,255,255,0.5);
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    font-weight: 600;
}

/* --- SECTION HEADER --- */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header h2 {
    font-size: 3.2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- PREMIUM SINGLE CARD --- */
.services-section {
    padding: 60px 0 120px;
}

.premium-showcase-card {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    box-shadow: var(--shadow-float);
    border: 1px solid rgba(255,255,255,0.8);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.premium-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(225, 29, 72, 0.12);
}

.showcase-image-wrapper {
    flex: 1;
    min-width: 450px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.showcase-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.premium-showcase-card:hover .showcase-image-wrapper img {
    transform: scale(1.05);
}

.showcase-content {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-title {
    font-size: 2.4rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.1;
}

.showcase-desc {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.price-label {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
}

/* --- BENEFITS (Bento Grid) --- */
.benefits-section {
    padding: 120px 0;
    position: relative;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 32px;
}

.bento-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    padding: 48px;
    border-radius: 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    box-shadow: 0 30px 60px rgba(225, 29, 72, 0.12), inset 0 1px 0 rgba(255, 255, 255, 1);
    transform: translateY(-8px);
}

.bento-card.large {
    grid-column: span 2;
    background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.bento-card.pink-variant {
    background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
    color: white;
    border: 1px solid rgba(253, 164, 175, 0.3);
    box-shadow: 0 20px 50px rgba(225, 29, 72, 0.2);
}

.bento-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 32px;
    position: relative;
    transition: transform 0.3s ease;
}

.bento-card:not(.large) .bento-icon {
    background: linear-gradient(135deg, #fff1f2, #ffe4e6);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 2px 4px rgba(255,255,255,1), 0 8px 16px rgba(225, 29, 72, 0.08);
}

.bento-card:hover .bento-icon {
    transform: scale(1.08) rotate(-3deg);
}

.bento-card:not(.large) .bento-icon i {
    color: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(225, 29, 72, 0.2));
}

.bento-card.large .bento-icon,
.bento-card.pink-variant .bento-icon {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.2), 0 8px 16px rgba(0, 0, 0, 0.15);
}

.bento-card.large .bento-icon i,
.bento-card.pink-variant .bento-icon i {
    color: white;
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.3));
}

.bento-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.bento-card.large .bento-title,
.bento-card.pink-variant .bento-title {
    font-size: 2.2rem;
    line-height: 1.15;
}

.bento-desc {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

.bento-card.large .bento-desc,
.bento-card.pink-variant .bento-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    max-width: 90%;
}
/* INTEGRAÇÕES STRIP */
.integration-strip {
    margin-top: 80px;
    padding: 40px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(226, 232, 240, 0.6);
    text-align: center;
}

.integration-title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 600;
}

.integration-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    opacity: 0.75;
    transition: 0.3s;
}

.integration-item i {
    font-size: 1.6rem;
}

.integration-item:hover {
    opacity: 1;
    color: var(--primary);
    transform: translateY(-2px);
}
/* --- HOW IT WORKS v2 --- */
.how-it-works {
    padding: 120px 0;
    background: #fcfcfd;
}

.steps-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 50px;
}

.step-card-v2 {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding: 0 15px;
    transition: transform 0.3s ease;
}

.step-card-v2:hover {
    transform: translateY(-8px);
}

.step-number-v2 {
    width: 65px;
    height: 65px;
    background: #112946; /* Cor escura fiel ao design */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    border: 4px solid var(--primary-light); /* Borda colorida */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.step-icon-v2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title-v2 {
    font-size: 1.45rem;
    color: #0f2b46;
    margin-bottom: 16px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.step-desc-v2 {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* --- DEPOIMENTOS v2 --- */
.testimonials {
    padding: 120px 0 140px;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.testi-bg-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.testi-blur-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.07) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.testi-blur-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.06) 0%, transparent 70%);
    bottom: 0;
    left: -80px;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

/* Grid layout v3 (3 columns) */
.testi-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Card base */
.testi-card-v3 {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    border: 1px solid rgba(226, 232, 240, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testi-card-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.testi-header-v3 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testi-avatar-v3 {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
    padding: 2px;
}

.testi-info-v3 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testi-name-v3 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0f2b46;
    font-family: 'Outfit', sans-serif;
}

.testi-role-v3 {
    font-size: 0.85rem;
    color: #64748b;
}

.testi-stars-v3 {
    color: #facc15;
    font-size: 0.9rem;
    margin-top: 2px;
    letter-spacing: 1px;
}

.testi-divider-v3 {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 232, 240, 0.8), transparent);
    margin-bottom: 20px;
}

.testi-body-v3 {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}



/* --- SOBRE (ABOUT) --- */
.about-section {
    padding: 120px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 20px;
}

.about-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 40px; right: 40px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.1), rgba(192, 38, 211, 0.1));
    border-radius: var(--radius-xl);
    z-index: 1;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-float);
    transform: translate(20px, 20px);
}

.trust-badge {
    background: linear-gradient(145deg, #ffffff, #fdf2f4);
    border: 1px solid rgba(225, 29, 72, 0.1);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    margin-top: 40px;
    box-shadow: 0 8px 30px rgba(225, 29, 72, 0.06), 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    cursor: default;
    transition: background 0.2s ease;
    border-radius: 12px;
}

.trust-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trust-item:first-child {
    padding-top: 0;
}

.trust-item:hover .trust-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.4);
}

/* ---- Ícone ---- */
.trust-icon-wrap {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.35);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-icon-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
    border-radius: inherit;
}

.trust-icon-wrap i {
    color: white;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* ---- Texto ---- */
.trust-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.trust-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary);
    line-height: 1.2;
}

.trust-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
}

/* --- FAQ --- */
.faq-section {
    padding: 120px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--secondary);
    cursor: pointer;
}

.faq-question i {
    color: var(--text-light);
    transition: transform 0.4s ease;
}

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

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 30px 24px;
    max-height: 400px;
}

/* --- BOTTOM CTA --- */
.bottom-cta {
    padding: 60px 0 120px;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary), #1e1b4b);
    border-radius: var(--radius-xl);
    padding: 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.2) 0%, transparent 70%);
    top: -300px; left: 50%;
    transform: translateX(-50%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

/* --- FOOTER MINIMALISTA --- */
.minimal-footer {
    background: #0f2b46;
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.minimal-footer p {
    color: #ffffff;
    font-size: 0.95rem;
    margin: 0;
}

/* WIDGET WHATSAPP FLUTUANTE */
@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366; /* Official WhatsApp Green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background-color: #1ebd57;
    animation: none; /* Stops pulsing when hovering */
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    color: white;
}

/* --- ANIMATIONS --- */

/* Fade Up (existing) */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide from Left */
.slide-left {
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide from Right */
.slide-right {
    opacity: 0;
    transform: translateX(70px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in (pop) */
.scale-in {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* --- SECTION GRADIENT ACCENTS --- */

/* Stats: position relative kept for future use */
.stats {
    position: relative;
}

/* Benefits section: subtle side glow */
.benefits-section {
    position: relative;
    overflow: hidden;
}
.benefits-section::before {
    content: '';
    position: absolute;
    left: -200px; top: 50%;
    transform: translateY(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.07) 0%, transparent 70%);
    pointer-events: none;
}
.benefits-section::after {
    content: '';
    position: absolute;
    right: -200px; top: 30%;
    transform: translateY(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* Testimonials: relative for future use */
.testimonials {
    position: relative;
}

/* FAQ section: right purple glow */
.faq-section {
    position: relative;
    overflow: hidden;
}
.faq-section::after {
    content: '';
    position: absolute;
    right: -100px; top: 50%;
    transform: translateY(-50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(192, 38, 211, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* About section: diagonal light streak */
.about-section {
    position: relative;
    overflow: hidden;
}
.about-section::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.06) 0%, transparent 60%);
    pointer-events: none;
}


/* ======= RESPONSIVE ======= */

/* --- Tablet (992px) --- */
@media (max-width: 992px) {
    .bento-grid, .steps-grid-v2, .about-grid { grid-template-columns: 1fr; }
    .testi-grid-v3 { grid-template-columns: 1fr; }
    .bento-card.large { grid-column: span 1; }
    .premium-showcase-card { flex-direction: column; max-width: 600px; }
    .showcase-image-wrapper { min-width: 100%; height: 300px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 3.2rem; }
    .about-img { transform: none; }
    .about-img-wrapper::before { display: none; }
    .testi-proof-bar { flex-direction: column; gap: 12px; border-radius: 20px; text-align: center; }
    .testi-featured-header { flex-wrap: wrap; gap: 8px; }
}

/* --- Mobile (768px) --- */
@media (max-width: 768px) {

    /* ---- NAVEGAÇÃO ---- */
    .nav-links { display: none; }
    .logo-img { height: 44px; }

    /* ---- HERO ---- */
    .hero { padding: 120px 0 56px; }
    .hero-badge { font-size: 0.7rem; padding: 5px 13px; letter-spacing: 1px; margin-bottom: 16px; }
    .hero h1 { font-size: 1.9rem; line-height: 1.2; margin-bottom: 14px; }
    .hero p { font-size: 0.9rem; padding: 0 6px; margin-bottom: 26px; }

    /* ---- BOTÕES ---- */
    .btn { padding: 10px 20px; font-size: 0.86rem; gap: 7px; }
    .hero-buttons { flex-direction: column; align-items: center; width: 100%; gap: 10px; }
    .hero-buttons .btn { width: auto; max-width: 300px; padding: 11px 22px; font-size: 0.86rem; }

    /* ---- STATS ---- */
    .stats { margin: -36px auto 50px; width: 92%; }
    .stats-grid { padding: 24px 10px; gap: 14px; }
    .stat-number { font-size: 2.2rem; }
    .stat-label { font-size: 0.7rem; letter-spacing: 1px; }

    /* ---- SEÇÕES (header) ---- */
    .section-header { margin-bottom: 36px; }
    .section-subtitle { font-size: 0.72rem; letter-spacing: 2px; margin-bottom: 8px; }
    .section-header h2 { font-size: 1.65rem; }
    .section-header p { font-size: 0.9rem; padding: 0 8px; }

    /* ---- ESPAÇAMENTO GERAL ---- */
    section { padding: 48px 0; }

    /* ---- SHOWCASE CARD ---- */
    .showcase-image-wrapper { height: 190px; }
    .showcase-content { padding: 22px 16px; }
    .showcase-title { font-size: 1.5rem; margin-bottom: 10px; }
    .showcase-desc { font-size: 0.9rem; margin-bottom: 18px; }
    .price-row { margin-bottom: 20px; padding-bottom: 18px; }
    .price-value { font-size: 2rem; }
    .price-label { font-size: 0.85rem; }

    /* ---- BENTO GRID ---- */
    .bento-card { padding: 20px 16px; border-radius: 22px; }
    .bento-icon { width: 50px; height: 50px; font-size: 1.5rem; margin-bottom: 16px; border-radius: 14px; }
    .bento-title { font-size: 1.18rem; }
    .bento-card.large .bento-title { font-size: 1.5rem; }
    .bento-desc { font-size: 0.9rem; }
    .bento-card.large .bento-desc { font-size: 0.95rem; }

    /* ---- INTEGRAÇÕES ---- */
    .integration-strip { padding: 22px 14px; margin-top: 36px; }
    .integration-title { font-size: 0.88rem; margin-bottom: 14px; }
    .integration-logos { gap: 10px; }
    .integration-item { font-size: 0.8rem; padding: 5px 10px; gap: 5px; }
    .integration-item i { font-size: 1.15rem; }

    /* ---- COMO FUNCIONA ---- */
    .steps-grid-v2 { gap: 28px; margin-top: 26px; }
    .step-number-v2 { width: 50px; height: 50px; font-size: 1.15rem; }
    .step-icon-v2 { font-size: 1.9rem; margin-bottom: 12px; }
    .step-title-v2 { font-size: 1.15rem; margin-bottom: 10px; }
    .step-desc-v2 { font-size: 0.9rem; }

    /* ---- DEPOIMENTOS ---- */
    .testi-card-v3 { padding: 22px 18px; border-radius: 16px; }
    .testi-avatar-v3 { width: 48px; height: 48px; }
    .testi-name-v3 { font-size: 0.92rem; }
    .testi-role-v3 { font-size: 0.76rem; }
    .testi-stars-v3 { font-size: 0.8rem; }
    .testi-body-v3 { font-size: 0.87rem; line-height: 1.65; }

    /* ---- SOBRE ---- */
    .about-content h2 { font-size: 1.65rem !important; margin-bottom: 12px !important; }
    .about-content p { font-size: 0.9rem !important; line-height: 1.7 !important; }
    .trust-badge { padding: 16px 14px; margin-top: 20px; }
    .trust-item { gap: 14px; padding: 14px 0; }
    .trust-icon-wrap { width: 44px; height: 44px; border-radius: 13px; }
    .trust-icon-wrap i { font-size: 1.05rem; }
    .trust-title { font-size: 0.9rem; }
    .trust-sub { font-size: 0.75rem; }

    /* ---- FAQ ---- */
    .faq-question { font-size: 0.93rem; padding: 16px 18px; }
    .faq-answer { font-size: 0.88rem; }
    .faq-item.active .faq-answer { padding: 0 18px 16px; }

    /* ---- CTA BOTTOM ---- */
    .bottom-cta { padding: 24px 0 50px; }
    .cta-box { padding: 36px 20px; border-radius: 22px; }
    .cta-content h2 { font-size: 1.7rem; margin-bottom: 12px; }
    .cta-content p { font-size: 0.9rem; margin-bottom: 24px; }
    .cta-box .btn {
        font-size: 0.95rem !important;
        white-space: nowrap;
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
        justify-content: center;
    }

    /* ---- FOOTER ---- */
    .minimal-footer { padding: 16px 0; }
    .minimal-footer p { font-size: 0.78rem; }

    /* ---- WHATSAPP FLOAT ---- */
    .whatsapp-float { width: 48px; height: 48px; font-size: 1.5rem; bottom: 18px; right: 18px; }

    /* ---- CONTAINER (largura reduzida) ---- */
    .container { padding: 0 28px; }

    /* ---- OVERFLOW / ANIMAÇÕES ---- */
    .slide-left, .slide-right {
        transform: translateX(0);
        opacity: 1;
        transition: none;
    }
}

/* --- Telas muito pequenas (iPhone SE ≤ 400px) --- */
@media (max-width: 400px) {
    .logo-img { height: 36px; }
    .hero { padding: 108px 0 46px; }
    .hero-badge { display: none; }
    .hero h1 { font-size: 1.65rem; }
    .hero p { font-size: 0.83rem; }
    .hero-buttons .btn { max-width: 250px; padding: 9px 16px; font-size: 0.8rem; }
    .btn { padding: 9px 15px; font-size: 0.8rem; gap: 5px; }
    .stat-number { font-size: 1.9rem; }
    .stat-label { font-size: 0.65rem; }
    .section-header h2 { font-size: 1.45rem; }
    .bento-title { font-size: 1.05rem; }
    .cta-content h2 { font-size: 1.45rem; }
    .showcase-title { font-size: 1.3rem; }
    .price-value { font-size: 1.8rem; }
}
