:root {
    /* Tais Brand Palette (Deep Blue/Navy) */
    --color-brand-blue: #0045F1;
    --color-brand-cyan: #00D4FF;
    --color-brand-dark: #000414;

    --color-primary: #00FFAB;
    /* Neon Green */
    --color-secondary: #000E29;
    /* Deep Navy Text */
    --color-accent: #0045F1;
    /* Blue Accent */

    --color-bg: #FFFFFF;
    --color-bg-alt: #F4F7FB;
    /* Cool Blue White */
    --color-text: #051433;
    --color-text-light: rgba(5, 20, 51, 0.75);

    --font-main: 'Plus Jakarta Sans', sans-serif;
    --container-width: 1360px;

    --border-radius-liquid: 96px;
    --border-radius-card: 24px;

    /* --- SISTEMA DE ESPAÇAMENTO (RHYTHM) --- */
    --spacing-hero-top: 180px;
    --spacing-section-lg: 6rem;
    --spacing-section-sm: 3rem;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* Liquid Utilities */
.liquid-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.liquid-bottom {
    border-radius: 0 0 var(--border-radius-liquid) var(--border-radius-liquid);
    overflow: hidden;
}

.liquid-section,
.liquid-bottom {
    position: relative;
    z-index: 1;
    /* Garante que fique acima de elementos decorativos */
}

.liquid-top {
    border-radius: var(--border-radius-liquid) var(--border-radius-liquid) 0 0;
}

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

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

/* Brand Gradient (Deep Ocean AI) */
.bg-gradient-brand {
    background-color: var(--color-brand-dark);
    background-image:
        radial-gradient(circle at 50% 0%, var(--color-brand-blue) 0%, transparent 60%),
        radial-gradient(circle at 85% 30%, var(--color-brand-cyan) 0%, transparent 40%),
        radial-gradient(circle at 15% 30%, var(--color-secondary) 0%, transparent 50%);
    background-size: 140% 140%;
    animation: gradientShift 15s ease infinite;
    color: #fff;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 50% 0%;
    }

    50% {
        background-position: 50% 20%;
    }
}

.bg-gradient-hero {
    background: linear-gradient(180deg, #F2F8FF 0%, #FFFFFF 100%);
}

.bg-gradient-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F2F8FF 100%);
}

@media (max-width: 768px) {
    :root {
        --border-radius-liquid: 48px;
        /* Ajuste Mobile do Espaçamento */
        --spacing-section-lg: 4rem;
        --spacing-hero-top: 140px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

/* Desktop Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 480px) {
    .ecosystem-hub {
        transform: scale(0.85);
        margin: -40px auto;
        /* Compensate for whitespace created by scale */
    }
}

/* Utility for Gradient Text (Green to Cyan) */
.text-gradient {
    background: linear-gradient(90deg, #00FFAB 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* --- BOTÕES MANTIDOS ORIGINAIS --- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.125rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 255, 171, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: var(--color-bg);
}

.btn-text {
    background-color: transparent;
    color: var(--color-secondary);
    text-decoration: underline;
}

.badge {
    display: inline-block;
    background-color: rgba(0, 255, 171, 0.1);
    color: #00CC88;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 171, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.brand-pill {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 255, 171, 0.15), rgba(0, 255, 171, 0.05));
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(0, 255, 171, 0.3);
    color: var(--color-primary);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.6rem;
    box-shadow: 0 8px 32px rgba(0, 255, 171, 0.1), 0 4px 16px rgba(0, 0, 0, 0.1);
    text-shadow: 0 0 20px rgba(0, 255, 171, 0.5);
}

.text-white {
    color: #FFFFFF !important;
}

.text-white-opacity {
    color: rgba(255, 255, 255, 0.9) !important;
}

.text-gradient-light {
    background: linear-gradient(90deg, #FFFFFF 0%, #E0E0E0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-white {
    background-color: #FFFFFF;
    color: var(--color-brand-blue);
    border: 2px solid #FFFFFF;
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

.btn-white:hover {
    background-color: transparent;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.85rem 1.75rem;
    font-size: 1rem;
}

.btn-outline-white:hover {
    background-color: #FFFFFF;
    color: var(--color-brand-blue);
    border-color: #FFFFFF;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 8px;
}

/* --- HEADER & NAV --- */
.header-fixed {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-fixed.scrolled {
    padding: 0.6rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 22, 71, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-fixed:not(.scrolled) .nav-links a,
.header-fixed:not(.scrolled) .logo-text {
    color: #FFFFFF;
}

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

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* Garante que o nav ocupe toda a largura do container */
}

/* Hide Mobile Toggle by default on Desktop */
.mobile-toggle,
.menu-checkbox {
    display: none;
}

.logo-brand {
    display: flex;
    align-items: center;
    width: 120px;
    height: auto;
    position: relative;
    z-index: 1001;
}

.logo-brand img {
    width: 100%;
    height: auto;
    display: block;
}

.logo-brand .logo-white {
    display: block;
}

.logo-brand .logo-color {
    display: none;
}

/* Header Scroll Logo Toggle */
.header-fixed.scrolled .logo-white {
    display: none;
}

.header-fixed.scrolled .logo-color {
    display: block;
}

/* Force "Scrolled" State for Light Pages (Blog Posts) */
body.light-nav .header-fixed {
    padding: 0.6rem 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 22, 71, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.light-nav .header-fixed .nav-links a {
    color: var(--color-text);
}

body.light-nav .header-fixed .logo-text {
    color: var(--color-secondary);
}

body.light-nav .header-fixed .logo-white {
    display: none;
}

body.light-nav .header-fixed .logo-color {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

@media (max-width: 768px) {
    .header-fixed {
        padding: 0.5rem 0;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }

    /* Hide Hamburger Menu - User requested direct links */
    .mobile-toggle {
        display: none !important;
    }

    /* Hide 'Falar com Consultor' on Mobile */
    nav .btn {
        display: none !important;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    /* Show links next to logo */
    .nav-links {
        display: flex;
        width: auto;
        padding: 0;
        margin: 0;
        gap: 1rem;
        border: none;
        overflow: visible;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0;
        white-space: nowrap;
    }


}

/* --- HERO SECTION --- */
/* AJUSTE DE ESPAÇAMENTO APLICADO */
.hero {
    padding-top: var(--spacing-hero-top);
    padding-bottom: var(--spacing-section-sm);
    text-align: center;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--color-secondary);
}

/* Footer Logo */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 130px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 1;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.hero-demo-gif {
    width: 100%;
    max-width: 800px;
    border-radius: 24px;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    mask-image: linear-gradient(to bottom, black 0%, black 70%, rgba(0, 0, 0, 0.7) 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 70%, rgba(0, 0, 0, 0.7) 85%, transparent 100%);
}

/* --- SEÇÃO: TRUST BAR (Logos) --- */
.hero-logos {
    margin-top: 4rem;
    text-align: center;
    width: 100%;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.hero-logos p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logos-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    gap: 4rem;
    animation: scroll 40s linear infinite;
    width: fit-content;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.logo-item:hover {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- SEÇÃO: ESTATÍSTICAS --- */
/* AJUSTE DE ESPAÇAMENTO APLICADO */
.stats-section {
    padding-top: var(--spacing-section-sm);
    padding-bottom: var(--spacing-section-sm);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-secondary);
    opacity: 0.8;
}

/* --- SEÇÃO: INTEGRAÇÕES --- */
/* AJUSTE DE ESPAÇAMENTO APLICADO */
.integrations-section {
    padding-top: var(--spacing-section-lg);
    padding-bottom: var(--spacing-section-lg);
    background-color: var(--color-bg);
    position: relative;
}

.integrations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.integrations-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 1rem;
    line-height: 1.5;
}

.ecosystem-hub {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 700px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-center {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85));
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(142, 45, 226, 0.3);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(142, 45, 226, 0.3), inset 0 2px 0 rgba(255, 255, 255, 1);
}

.hub-logo-img {
    width: 95px;
    height: auto;
    display: block;
}

.hub-tagline {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 600;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.inner-ring {
    width: 500px;
    height: 500px;
    animation: rotate-slow 60s linear infinite;
}

.outer-ring {
    width: 750px;
    height: 750px;
    animation: rotate-slow 90s linear infinite reverse;
}

@keyframes rotate-slow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-275px);
}

.inner-ring .orbit-item {
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-150px);
}

.integration-bubble {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(31, 38, 135, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    pointer-events: auto;
    animation: counter-rotate-outer 90s linear infinite;
    transform: rotate(calc(-1 * var(--start-angle, 0deg)));
}

.inner-ring .integration-bubble {
    animation: counter-rotate-inner 60s linear infinite;
    transform: rotate(calc(-1 * var(--start-angle, 0deg)));
}

@keyframes counter-rotate-outer {
    from {
        transform: rotate(calc(-1 * var(--start-angle, 0deg)));
    }

    to {
        transform: rotate(calc(360deg - var(--start-angle, 0deg)));
    }
}

@keyframes counter-rotate-inner {
    from {
        transform: rotate(calc(-1 * var(--start-angle, 0deg)));
    }

    to {
        transform: rotate(calc(-360deg - var(--start-angle, 0deg)));
    }
}

.integration-bubble.small {
    width: 80px;
    height: 80px;
}

.integration-bubble:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 32px rgba(142, 45, 226, 0.25), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(142, 45, 226, 0.4);
}

.integration-bubble .integration-logo {
    font-size: 2rem;
}

.integration-bubble.small .integration-logo {
    font-size: 1.5rem;
}

.integration-bubble p {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0;
    text-align: center;
}

.integration-bubble.small p {
    font-size: 0.65rem;
}

.connection-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ecosystem-note {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 600;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .ecosystem-hub {
        height: 500px;
        max-width: 500px;
    }

    .hub-center {
        width: 120px;
        height: 120px;
    }

    .hub-logo {
        font-size: 1.8rem;
    }

    .inner-ring {
        width: 340px;
        height: 340px;
    }

    .outer-ring {
        width: 500px;
        height: 500px;
    }

    .inner-ring .orbit-item {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-105px);
    }

    .orbit-item {
        transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-170px);
    }

    .integration-bubble {
        width: 70px;
        height: 70px;
    }

    .integration-bubble.small {
        width: 60px;
        height: 60px;
    }
}

/* --- SEÇÃO: FUNCIONALIDADES --- */
/* AJUSTE DE ESPAÇAMENTO APLICADO */
.features-section {
    padding-top: var(--spacing-section-lg);
    padding-bottom: var(--spacing-section-lg);
    background-color: var(--color-bg-alt);
    position: relative;
    z-index: 1;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.features-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.5;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* 4-column variant for index.html */
.bento-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 968px) {

    .bento-grid,
    .bento-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .bento-grid,
    .bento-grid-4 {
        grid-template-columns: 1fr;
    }
}

.bento-card {
    background: #FFFFFF;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15), 0 4px 16px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.2), 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(142, 45, 226, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: rgba(10, 78, 228, 0.05);
    color: var(--color-accent);
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.feature-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-weight: 400;
}

/* --- SEÇÃO: JORNADA --- */
/* AJUSTE DE ESPAÇAMENTO APLICADO */
.journey-section {
    padding-top: var(--spacing-section-lg);
    padding-bottom: var(--spacing-section-lg);
    background-color: var(--color-bg);
    overflow: hidden;
    position: relative;
}

.journey-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.journey-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15), 0 4px 16px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.2), 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(142, 45, 226, 0.3);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: rgba(10, 78, 228, 0.1);
    color: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.journey-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.journey-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .journey-card {
        padding: 2rem;
    }
}

/* --- SEÇÃO: DASHBOARD --- */
/* AJUSTE DE ESPAÇAMENTO APLICADO */
.dashboard-section {
    padding-top: var(--spacing-section-lg);
    padding-bottom: var(--spacing-section-lg);
    background-color: var(--color-bg-alt);
}

.dashboard-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.dashboard-image {
    flex: 1;
}

.dashboard-placeholder {
    width: 100%;
    height: 350px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-content {
    color: #ccc;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dashboard-text {
    flex: 1;
}

.dashboard-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.dashboard-text p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.dashboard-features {
    list-style: none;
}

.dashboard-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555;
    font-weight: 500;
}

.dashboard-features li::before {
    content: '•';
    color: var(--color-primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

@media (max-width: 768px) {
    .dashboard-container {
        flex-direction: column-reverse;
    }
}

/* --- SEÇÃO: COMPARATIVO --- */
/* AJUSTE DE ESPAÇAMENTO APLICADO */
.comparison-section {
    padding-top: var(--spacing-section-lg);
    padding-bottom: var(--spacing-section-lg);
    background-color: var(--color-bg-alt);
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--color-secondary);
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.geo-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.geo-table th,
.geo-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.geo-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: var(--color-secondary);
}

.geo-table td {
    color: #555;
}

.geo-table .highlight-header {
    background-color: rgba(0, 255, 171, 0.1);
    color: #00CC88;
}

.geo-table .highlight-cell {
    background-color: rgba(0, 255, 171, 0.05);
    font-weight: 600;
    color: var(--color-secondary);
}

.check-icon {
    background-color: var(--color-primary);
    color: var(--color-secondary);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.scope-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.scope-content p {
    color: #666;
    line-height: 1.6;
}

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

    .whatsapp-alternative {
        max-width: 100% !important;
    }
}

/* --- SEÇÃO: PRICING --- */
/* AJUSTE DE ESPAÇAMENTO APLICADO */
.pricing-section {
    padding-top: var(--spacing-section-lg);
    padding-bottom: var(--spacing-section-lg);
    background-color: var(--color-bg);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--color-secondary);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    padding: 3rem 3rem;
    width: 100%;
    max-width: 600px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(31, 38, 135, 0.2), 0 8px 24px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.pricing-card.popular {
    border: 2px solid rgba(142, 45, 226, 0.4);
    box-shadow: 0 10px 40px rgba(142, 45, 226, 0.2), 0 4px 16px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-primary);
    color: var(--color-secondary);
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.price-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 600;
    margin-bottom: -5px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 2rem;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}

.features-list li {
    padding: 0.75rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-card .btn {
    width: 100%;
}

/* --- SEÇÃO: TARGET AUDIENCE --- */
/* AJUSTE DE ESPAÇAMENTO APLICADO */
.target-audience-section {
    padding-top: var(--spacing-section-lg);
    padding-bottom: var(--spacing-section-lg);
    background-color: var(--color-bg);
    overflow: hidden;
    position: relative;
}

.target-audience-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.audience-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 3rem;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--color-primary);
}

.audience-card:last-child::before {
    background: var(--color-secondary);
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.audience-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin: 0;
}

.audience-pain {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text-light);
    background: #FFF5F5;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #FF6B6B;
}

.audience-solution {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
    background: #F0FFF9;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--color-primary);
}

.link-action {
    display: inline-block;
    margin-top: auto;
    font-weight: 700;
    color: var(--color-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.link-action:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

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

    .audience-card {
        padding: 2rem;
    }

    /* Tighter headings on mobile */
    h2 {
        line-height: 1.15;
        font-size: 2.3rem;
    }
}

@media (max-width: 968px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .audience-header p {
        font-size: 1.1rem;
    }
}

/* --- SEÇÃO: FAQ --- */
/* AJUSTE DE ESPAÇAMENTO APLICADO */
.faq-section {
    padding-top: var(--spacing-section-lg);
    padding-bottom: var(--spacing-section-lg);
    background-color: var(--color-bg-alt);
    border-radius: var(--border-radius-liquid) var(--border-radius-liquid) 0 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

/* FAQ Layout 2 Colunas */
.faq-grid.two-columns-faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.faq-header p {
    color: #666;
    margin-top: 0.5rem;
}

details {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

details:hover {
    border-color: var(--color-primary);
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 25px;
    color: var(--color-secondary);
}

/* Ícone Customizado (+) */
summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-weight: bold;
    color: var(--color-primary);
    font-size: 1.2rem;
    line-height: 1;
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 1rem;
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid #EEE;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .faq-grid.two-columns-faq {
        grid-template-columns: 1fr;
    }
}

/* --- FOOTER (Mantido conforme original) --- */
footer {
    background: radial-gradient(80% 80% at 50% -10%, #002B99 0%, #000414 100%);
    color: #fff;
    padding: 6rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin: 1.5rem 0;
    line-height: 1.6;
    max-width: 300px;
}

.logo-text.white {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
}

.footer-links-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-links-col ul {
    list-style: none;
}

.footer-links-col li {
    margin-bottom: 0.75rem;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.875rem;
}

/* Responsive Timeline */
@media (max-width: 968px) {

    .timeline-48h,
    .timeline-3col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 640px) and (max-width: 968px) {
    .timeline-48h {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

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

    .footer-brand p {
        margin: 1.5rem auto;
    }

    .social-links {
        justify-content: center;
    }
}

/* Animations (Mantidas) */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Feature Detail Section Padding */
.feature-detail {
    padding-top: var(--spacing-section-lg);
    padding-bottom: var(--spacing-section-lg);
}

/* =========================================
   COMPONENT: TAIS GREETING PILL (NATIVO)
   ========================================= */
.tais-greeting-pill {
    display: inline-flex;
    align-items: center;
    gap: 1.3rem;
    /* Padding assimétrico para o círculo encostar na esquerda */
    padding: 0.3rem 1.5rem 0.3rem 0.5rem;

    /* Efeito Vidro Fosco (Glassmorphism) */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;

    /* Sombra suave */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);

    margin-bottom: 1.3rem;

    /* Animação de Flutuação */
    animation: float-badge 6s ease-in-out infinite;
}

/* Container do Círculo */
.tais-avatar-wrapper {
    position: relative;
    width: 56px;
    /* Tamanho do círculo */
    height: 56px;
    border-radius: 50%;
    /* Borda gradiente usando as cores da marca */
    background: linear-gradient(135deg, var(--color-brand-blue), var(--color-brand-purple));
    padding: 2px;
}

/* A Imagem da Mulher */
.tais-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background-color: #fff;
    /* Fundo de segurança */
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* O Símbolo (Badge Pequeno) */
.tais-symbol-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 24px;
    height: 24px;
    background: var(--color-secondary);
    /* Fundo escuro para contraste */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.tais-symbol-badge img {
    width: 14px;
    height: auto;
}

/* Texto */
.greeting-text {
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

.text-highlight {
    color: var(--color-primary);
    /* Verde Tais */
    font-weight: 800;
}

/* Animação */
@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Ajuste Mobile */
@media (max-width: 768px) {
    .tais-greeting-pill {
        padding: 0.4rem 1.2rem 0.4rem 0.4rem;
    }

    .tais-avatar-wrapper {
        width: 48px;
        height: 48px;
    }

    .greeting-text {
        font-size: 1rem;
    }
}

/* --- CORREÇÃO: LOGO ITEM (Deep Blue Theme) --- */
.hero-logos {
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.logo-item {
    background: rgba(0, 69, 241, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.logo-item:hover {
    background: rgba(0, 69, 241, 0.3);
    border-color: rgba(0, 212, 255, 0.4);
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

/* Z-Index Hierarchy (Top to Bottom) */
.hero {
    z-index: 14;
}

.stats-section {
    z-index: 13;
}

.integrations-section {
    z-index: 12;
}

.features-section {
    z-index: 11;
}

.journey-section {
    z-index: 10;
}

.dashboard-section {
    z-index: 9;
}

.target-audience-section {
    z-index: 8;
}

.comparison-section {
    z-index: 7;
}

.testimonials-section {
    z-index: 6;
}

.whatsapp-section {
    z-index: 5;
}

.pricing-section {
    z-index: 4;
}

.contact-section {
    z-index: 3;
}

.faq-section {
    z-index: 2;
}

footer {
    z-index: 1;
}

/* Universal Overlap Logic */
section+section,
section+footer {
    margin-top: -96px;
    /* Pulls element UP behind the previous one */
    padding-top: calc(var(--spacing-section-lg) + 96px) !important;
    /* Compensates the content */
}

/* Specific Adjustments */
.hero+section {
    margin-top: -96px;
    /* Hero is liquid, next section slides under */
}

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

    section+section,
    section+footer {
        margin-top: -48px;
        padding-top: calc(var(--spacing-section-lg) + 48px) !important;
    }
}

/* =========================================
   ELASTIC CARDS (EFEITO EXPANSIVO OLIST)
   ========================================= */
.journey-section.elastic-wrapper {
    background-color: #000414;
    /* Dark Navy Olist */
    padding: 6rem 0;
    color: #fff;
    overflow: hidden;
}

.elastic-container {
    display: flex;
    width: 100%;
    height: 450px;
    /* Altura fixa é necessária para o efeito */
    gap: 1rem;
    margin-top: 3rem;
}

.elastic-card {
    position: relative;
    height: 100%;
    border-radius: 100px;
    overflow: hidden;
    cursor: pointer;

    /* A MÁGICA DO FLEXBOX */
    flex: 1;
    /* Todos começam com tamanho 1 */
    transition: flex 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #0B1120;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Imagem de fundo (opcional, escurecida) */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    transition: opacity 0.5s ease;
}

/* ESTADO HOVER (EXPANSÃO) */
.elastic-card:hover,
.elastic-card.active {
    flex: 3;
    /* O card focado triplica de tamanho */
}

.elastic-card:hover .card-bg,
.elastic-card.active .card-bg {
    opacity: 0.4;
    /* Imagem fica mais visível */
}

/* CONTEÚDO INTERNO */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    z-index: 2;
}

.card-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    min-width: 50px;
    /* Force minimum width */
    min-height: 50px;
    /* Force minimum height */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    /* Prevent squashing */
}

.elastic-card:hover .card-icon {
    /*background: var(--color-primary);*/
    color: var(--color-brand-dark);
    /*box-shadow: 0 0 20px rgba(0, 204, 136, 0.4);*/
}

.card-text h3 {
    font-size: 1.1rem;
    /* Reduced to fit collapsed state */
    margin-bottom: 0.5rem;
    white-space: nowrap;
    /* Impede quebra de linha quando fechado */
    color: #fff;
    transition: all 0.4s ease;
}

.elastic-card:hover .card-text h3,
.elastic-card.active .card-text h3 {
    font-size: 1.5rem;
    /* Restores size on expand */
}

/* TEXTO ESCONDIDO (REVELA NO HOVER) */
.hidden-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-height: 0;
    /* Escondido */
    opacity: 0;
    /* Invisível */
    overflow: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.elastic-card:hover .hidden-desc,
.elastic-card.active .hidden-desc {
    max-height: 200px;
    /* Altura suficiente para o texto */
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
    /* Pequeno delay para suavidade */
    overflow: visible;
}

/* Update icon style for active state */
.elastic-card:hover .card-icon,
.elastic-card.active .card-icon {
    color: var(--color-brand-dark);
}

/* RESPONSIVO (TRANSFORMA EM ACCORDION VERTICAL NO CELULAR) */
@media (max-width: 900px) {
    .elastic-container {
        flex-direction: column;
        /* Vira vertical */
        height: auto;
        gap: 1rem;
    }

    .elastic-card {
        height: 80px;
        border-radius: 50px;
        /* Custom Mobile Radius */
        /* Altura fechada */
        flex: none;
        /* Desliga o flex grow horizontal */
        transition: height 0.4s ease;
    }

    .elastic-card:hover,
    .elastic-card:active,
    .elastic-card.active {
        height: 250px;
        /* Custom Mobile Height for Active State */
        flex: none;
    }

    .card-content {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        background: none;
    }

    .card-text {
        text-align: left;
    }

    .elastic-card:hover .card-content,
    .elastic-card.active .card-content {
        flex-direction: column;
        align-items: flex-start;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    }
}

/* =========================================
   BADGE TECH (DESTAQUE NEON)
   ========================================= */
.badge-tech {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    color: var(--color-brand-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.badge-tech-blue {
    display: inline-block;
    background: rgba(0, 69, 241, 0.1);
    color: var(--color-brand-blue);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 69, 241, 0.2);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* =========================================
   IMPLEMENTATION TIMELINE (48H)
   ========================================= */
.timeline-48h {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* 3-Column Timeline (for journey-story with 3 cards) */
.timeline-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.time-card {
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.time-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 40px rgba(0, 255, 171, 0.15);
}

.time-card.highlight {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0FFF9 100%);
    border-color: rgba(0, 255, 171, 0.3);
    box-shadow: 0 8px 24px rgba(0, 255, 171, 0.1);
}

.time-header {
    margin-bottom: 1rem;
    border-bottom: 1px dashed #E2E8F0;
    padding-bottom: 1rem;
}

.time-badge {
    display: inline-block;
    background: #000414;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.time-badge.success {
    background: var(--color-primary);
    color: var(--color-brand-dark);
}

.time-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0;
}

.time-card p {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

/* Responsivo Timeline */
@media (max-width: 900px) {
    .timeline-48h {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .time-card {
        display: flex;
        align-items: center;
        gap: 1rem;
        text-align: left;
    }

    .time-header {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
        min-width: 120px;
    }
}

/* NAVBAR BUTTON HOVER FIX FOR SCROLLED STATE */
.header-fixed.scrolled .btn-primary:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-brand-dark) !important;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 20px rgba(0, 255, 171, 0.4);
}

/* =========================================
   ESTILOS PARA PÁGINAS INTERNAS
   ========================================= */


@media (max-width: 900px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* No mobile, a imagem sempre vem depois do texto, ou antes se preferir */
    .grid-2-col.reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* Ajustes de Tipografia Interna */
.feature-detail h2 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Badge Tecnológico (Reuso) */


/* Efeito Glow no Botão CTA Final */
.btn-glow {
    box-shadow: 0 0 20px rgba(0, 204, 136, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(0, 204, 136, 0.6);
    transform: translateY(-2px);
}

/* =========================================
   FIXES FOR INTERNAL PAGES & Z-INDEX
   ========================================= */

/* 1. Z-Index Automatico para Seções (Liquid Waterfall) */
main>section {
    position: relative;
}

main>section:nth-child(1) {
    z-index: 20;
}

main>section:nth-child(2) {
    z-index: 19;
}

main>section:nth-child(3) {
    z-index: 18;
}

main>section:nth-child(4) {
    z-index: 17;
}

main>section:nth-child(5) {
    z-index: 16;
}

main>section:nth-child(6) {
    z-index: 15;
}

main>section:nth-child(7) {
    z-index: 14;
}

main>section:nth-child(8) {
    z-index: 13;
}



/* =========================================
   GLOBAL TYPOGRAPHY UTILITIES
   ========================================= */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}

/* =========================================
   CONTACT FORM SECTION
   ========================================= */
.contact-form input:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 3px rgba(0, 255, 171, 0.1);
}

.contact-form input:hover,
.contact-form select:hover {
    border-color: var(--color-accent);
}

.contact-section {
    padding-bottom: var(--spacing-section-lg);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================
   ESTILOS ESPECÍFICOS: FUNCIONALIDADES
   ========================================= */



/* Ajustes de Lista com Ícones */
.features-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: var(--color-text);
}

.features-list li i {
    color: var(--color-primary);
    font-size: 1.2rem;
}

/* RESPONSIVO */
@media (max-width: 900px) {


    .hero h1 {
        font-size: 2.5rem;
    }
}

/* =========================================
   SEÇÃO FINANCEIRA (CHECKMATE VISUAL)
   ========================================= */

.finance-checkmate {
    padding-top: var(--spacing-section-lg);
    padding-bottom: var(--spacing-section-lg);
    position: relative;
    overflow: hidden;
    background: var(--color-secondary);
}

/* Tipografia */
.finance-checkmate h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.finance-checkmate .big-p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.text-white-opacity {
    color: rgba(255, 255, 255, 0.7);
}

/* Cards de Features (Lista) */
/* Lista de Features Financeiras */
.checkmate-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.checkmate-item {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0.2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.checkmate-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    transform: translateX(10px);
}

.checkmate-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.checkmate-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
}

.icon-box-dark {
    font-size: 1.5rem;
    min-width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-primary);
}

/* --- VISUAL INTERATIVO (LADO ESQUERDO) --- */
.visual-finance {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Card Principal (Chat) */
.finance-card-glass {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    margin-left: auto;
    /* Força alinhamento à direita dentro do flex container */
    z-index: 2;
}

.finance-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}

.finance-icon {
    color: #25D366;
    font-size: 1.5rem;
}

.finance-header span {
    color: #fff;
    font-weight: 600;
}

.chat-bubble {
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    position: relative;
}

.chat-bubble.user {
    background: rgba(255, 255, 255, 0.1);
    color: #ddd;
    border-top-left-radius: 0;
}

.chat-bubble.ai {
    background: rgba(0, 204, 136, 0.15);
    border: 1px solid var(--color-primary);
    color: #fff;
    border-top-right-radius: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-tag {
    position: absolute;
    right: 10px;
    bottom: -25px;
    font-size: 0.7rem;
    color: var(--color-primary);
    font-weight: 700;
}

/* Linha de Processamento */
.processing-line {
    display: flex;
    gap: 5px;
    margin: 10px 0;
    padding-left: 10px;
    opacity: 0.5;
}

.dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

.line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    align-self: center;
}

/* Card Secundário (Alerta Flutuante) */
.alert-card {
    position: absolute;
    bottom: 40px;
    right: -20px;
    width: 280px;
    padding: 1rem;
    background: #1e1e2d;
    /* Fundo sólido para contraste */
    border-left: 4px solid #FFBD2E;
    /* Amarelo alerta */
    display: flex;
    gap: 1rem;
    align-items: center;
    z-index: 3;
}

.alert-icon {
    font-size: 1.5rem;
}

.alert-content p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
    line-height: 1.3;
}

/* Animação Flutuante */
.floating-animation {
    animation: float-card 6s ease-in-out infinite;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 900px) {
    .visual-finance {
        height: auto;
        margin-bottom: 3rem;
        justify-content: center;
    }

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

    .finance-checkmate h2 {
        font-size: 2.2rem;
    }
}

/* ========================================
   INTERNAL PAGES STYLES
   ======================================== */



/* Active Nav Link */
.nav-links a.active {
    color: var(--color-primary);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
}

/* Hero Internal */
.hero-internal {
    padding: 12rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero-internal h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-internal p {
    font-size: 1.5rem;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Badge Green */
.badge-green {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 255, 171, 0.15), rgba(0, 255, 171, 0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 171, 0.3);
    color: var(--color-primary);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 16px rgba(0, 255, 171, 0.1);
}

@media (max-width: 768px) {
    .hero-internal {
        padding: 10rem 0 4rem;
    }

    .hero-internal h1 {
        font-size: 2.5rem;
    }

    .hero-internal p {
        font-size: 1.2rem;
    }
}

/* Feature Sections */
.feature-section {
    padding: 6rem 0;
}

.feature-section.bg-alt {
    background-color: var(--color-bg-alt);
}

/* Grid 2 Columns */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Zig-Zag Layout */
/* Inverte a ordem visualmente (Imagem na esquerda) */
.grid-2-col.reverse .text-content {
    order: 2;
}

.grid-2-col.reverse .image-placeholder {
    order: 1;
}

@media (max-width: 968px) {
    .grid-2-col {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* No celular, a imagem sempre vem DEPOIS do texto */
    .grid-2-col.reverse .text-content {
        order: 1;
    }

    .grid-2-col.reverse .image-placeholder {
        order: 2;
    }
}

/* Text Content */
.text-content {
    max-width: 600px;
}

.text-content h2 {
    margin-bottom: 1.5rem;
}

.text-content p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

/* Icon Box */
.icon-box {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    color: var(--color-brand-cyan);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--color-text);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-list li strong {
    color: var(--color-secondary);
    font-weight: 700;
}

/* Placeholder para os Prints do Sistema */
.image-placeholder {
    background: #F1F5F9;
    border-radius: 24px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #CBD5E1;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.software-screenshot {
    background: linear-gradient(135deg, #F4F7FB 0%, #E2E8F0 100%);
    border: 1px solid rgba(0, 69, 241, 0.1);
}

.placeholder-text {
    font-weight: 600;
    color: #94A3B8;
    text-align: center;
    padding: 1rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 8rem 0;
    text-align: center;
    background: var(--color-secondary);
    /* Dark Background */
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 69, 241, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.final-cta-section .container {
    position: relative;
    z-index: 1;
}

.final-cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.final-cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 0;
    }

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

    .final-cta-section p {
        font-size: 1.1rem;
    }

    .image-placeholder {
        min-height: 300px;
        padding: 3rem 2rem;
    }
}

/* --- FEATURE LISTS (LIGHT MODE) --- */
.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    list-style: none;
    /* Remove bullets */
    padding: 0;
    /* Remove padding */
}

.benefit-item {
    display: flex;
    align-items: baseline;
    /* Center items vertically */
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: normal;
    /* Reset line-height to normal for better centering */
}

.benefit-item .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(0, 69, 241, 0.1);
    /* Brand Blue Light */
    color: var(--color-brand-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-item i {
    /* Fallback if not using icon-box */
    color: var(--color-brand-blue);
    font-size: 1.4rem;
}

/* Feature Image Styling */
.feature-image-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 4, 20, 0.08);
    transition: transform 0.3s ease;
}

.feature-image-container:hover {
    transform: translateY(-5px);
}

.feature-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Ajuste para Ícones Phosphor Duotone */
.ph-duotone {
    display: inline-block;
    vertical-align: middle;
    color: currentColor;
}

.ph-duotone::after {
    /* A parte translúcida do ícone pega a cor atual com transparência */
    opacity: 0.3;
}

/* Ajuste específico para o ícone do card de alerta */
.alert-card .alert-icon {
    color: #FFBD2E;
    /* Define a cor amarela para o ícone */
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

/* --- WHATSAPP INTEGRATION SECTION --- */
.whatsapp-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

.whatsapp-badge {
    background: #fff;
    border: 1px solid #e1e1e1;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-brand-dark);
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.whatsapp-badge i {
    color: #25D366;
    /* WhatsApp Green */
    font-size: 1.2rem;
}

.whatsapp-showcase {
    background: linear-gradient(135deg, #dcecfc 0%, #bfd9f3 100%);
    border-radius: 65px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.whatsapp-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.whatsapp-model-img {
    max-height: 550px;
    /* Reduced specific height */
    width: auto;
    object-fit: contain;
    margin-bottom: -4rem;
    /* Anchor to bottom */
}

.whatsapp-features-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 2;
    padding-left: 2rem;
}

.feature-bubble {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-bubble:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
}

.bubble-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bubble-icon.green {
    background: #E6FCEF;
    color: #25D366;
}

.bubble-icon.blue {
    background: #E6F0FF;
    color: var(--color-brand-blue);
}

.feature-bubble p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
}

.whatsapp-cta-btn {
    background: var(--color-brand-blue);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-top: 2rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
}

@media (max-width: 992px) {
    .whatsapp-showcase {
        flex-direction: column-reverse;
        padding: 3rem 1.5rem 0 1.5rem;
        text-align: center;
        gap: 3rem;
    }

    .whatsapp-features-col {
        padding-left: 0;
        align-items: center;
    }

    .feature-bubble {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        width: 100%;
    }

    .whatsapp-cta-btn {
        align-self: center;
    }

    .whatsapp-model-img {
        max-height: 450px;
        margin-bottom: 0;
    }
}

/* --- TESTIMONIALS SECTION --- */
.testimonials-section {
    position: relative;
    padding-top: var(--spacing-section-lg);
    padding-bottom: var(--spacing-section-lg);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 69, 241, 0.15);
    border-color: rgba(0, 69, 241, 0.2);
}

.stars {
    color: #FFBD2E;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand-dark);
    margin-bottom: 0.2rem;
}

.client-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

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

/* --- BLOG STYLES --- */

/* Blog Hero */
.blog-hero {
    position: relative;
    overflow: visible;
}

.blog-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.blog-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Blog Grid */
.blog-grid-section {
    position: relative;
    z-index: 10;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: stretch;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 50px rgba(0, 69, 241, 0.1);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.featured-content {
    padding: 3rem;
}

.category-tag {
    display: inline-block;
    background: #E6F0FF;
    color: var(--color-accent);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.featured-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    line-height: 1.3;
}

.featured-content p {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.read-more {
    font-weight: 700;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.post-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--color-secondary);
    line-height: 1.4;
    flex: 1;
}

.post-link {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
}

/* Post Layout (Single) */
.grid-post-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
}

.post-header {
    margin-bottom: 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--color-primary);
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    color: #888;
    font-size: 0.9rem;
}

.post-featured-image {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

.entry-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
}

.entry-content p {
    margin-bottom: 2rem;
}

.entry-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.entry-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.entry-content ul {
    margin-bottom: 2rem;
}

.entry-content li {
    margin-bottom: 0.5rem;
    margin-left: 1rem;
}

.entry-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding-left: 1.5rem;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--color-secondary);
    margin: 3rem 0;
    background: rgba(0, 69, 241, 0.05);
    padding: 2rem;
    border-radius: 0 16px 16px 0;
}

/* Contextual CTA inside Post */
.contextual-cta {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 20px;
    margin-top: 4rem;
    text-align: center;
}

.contextual-cta h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 0;
}

/* Sidebar Widget */
.sticky-widget {
    position: sticky;
    top: 120px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.widget-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    color: var(--color-secondary);
}

.check-list-small {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.check-list li {
    list-style-type: none !important;
}

.check-list-small li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-brand-dark);
}

.check-list-small i {
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
    display: block;
    text-align: center;
}

/* Newsletter Section */
.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 69, 241, 0.1);
}

/* Responsive Blog */
@media (max-width: 992px) {
    .featured-card {
        grid-template-columns: 1fr;
    }

    .featured-image img {
        min-height: 250px;
    }

    .posts-grid {
        grid-template-columns: 1fr;
    }

    .grid-post-sidebar {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        order: -1;
        /* Sidebar on top on mobile or bottom? Usually bottom for blog posts, but creating urgency top is safer for landing types. Let's keep normal flow or move below. */
        order: 1;
        margin-top: 3rem;
    }

    /* User requested 95% width for blog articles on mobile */
    .post-layout .container {
        padding-left: 2.5%;
        padding-right: 2.5%;
    }
}

/* Blog Util Classes (Refactor) */
.callout-box {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid var(--color-brand-blue);
}

.grid-list-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
}

@media (max-width: 768px) {
    .grid-list-2-col {
        grid-template-columns: 1fr;
    }
}