/* ===== FARMAAI LANDING PAGE STYLES ===== */
/* ===== CSS VARIABLES ===== */
:root {
    /* FarmaAI Color Palette - Baseada no Mascote */
    --primary-cyan: #00B5B8;         /* Ciano vibrante principal */
    --secondary-cyan: #007D7F;       /* Ciano escuro */
    --accent-orange: #F7941D;        /* Laranja medico */
    --light-cyan: #66D9DB;           /* Ciano claro */
    --dark-orange: #C26200;          /* Laranja escuro */
    --petrol-blue: #004C5A;          /* Azul-petroleo escuro */
    
    /* Extended Palette (nuances) */
    --primary-cyan-light: #66D9DB;
    --primary-cyan-dark: #007D7F;
    --secondary-cyan-light: #3397A4;
    --accent-orange-light: #FFC380;
    --accent-orange-dark: #C26200;
    --petrol-blue-medium: #006A7B;
    
    /* Neutral Colors */
    --white: #FDFDFD;
    --black: #2E2E2E;
    --gray-light: #F2F2F2;
    --gray-medium: #6B6B6B;
    --gray-dark: #4A4A4A;
    
    /* Gradients com Efeito de Vidro */
    --gradient-primary: linear-gradient(135deg, #00B5B8 0%, #007D7F 100%);
    --gradient-secondary: linear-gradient(135deg, #F7941D 0%, #FFC380 50%, #FF8A65 100%);
    --gradient-hero: linear-gradient(135deg, #00B5B8 0%, #004C5A 50%, #007D7F 100%);
    --gradient-accent: linear-gradient(135deg, rgba(102, 217, 219, 0.8) 0%, rgba(247, 148, 29, 0.7) 50%, rgba(0, 181, 184, 0.6) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(253, 253, 253, 0.25) 0%, rgba(253, 253, 253, 0.1) 100%);
    --gradient-orange: linear-gradient(135deg, #F7941D 0%, #FFC380 100%);
    
    /* Typography */
    --font-primary: 'Orbitron', monospace;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing */
    --container-max-width: 1400px;
    --section-padding: 120px 0;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    
    /* Shadows com Nova Paleta */
    --shadow-sm: 0 2px 8px rgba(0, 181, 184, 0.1);
    --shadow-md: 0 8px 32px rgba(0, 181, 184, 0.15);
    --shadow-lg: 0 16px 64px rgba(0, 181, 184, 0.2);
    --shadow-glow: 0 0 40px rgba(247, 148, 29, 0.3);
    --shadow-glass: 0 8px 32px rgba(0, 76, 90, 0.1);
    --shadow-cyan: 0 4px 20px rgba(102, 217, 219, 0.25);
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Personalizacao da barra de rolagem */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--petrol-blue);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
    border: 2px solid var(--petrol-blue);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Para Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-cyan) var(--petrol-blue);
}

html {
    scroll-behavior: smooth;
    background-color: #fefffe; /* Garantir background verde claro em dispositivos moveis */
    min-height: 100%;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--black);
    background-color: #fefffe; /* Fallback para dispositivos moveis */
    background: linear-gradient(135deg, #fefffe 0%, #f7fef8 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(31, 70, 62, 0.1);
    z-index: 1000;
    transition: var(--transition-normal);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-link {
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
    font-family: var(--font-primary);
}

.nav-link:hover {
    color: var(--accent-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-demo {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-cyan);
    position: relative;
    overflow: hidden;
    animation: techPulse 2s ease-in-out infinite alternate;
    backdrop-filter: blur(10px);
}

.btn-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-demo:hover::before {
    left: 100%;
}

@keyframes techPulse {
    0% { box-shadow: 0 0 20px rgba(0, 181, 184, 0.3); }
    100% { box-shadow: 0 0 30px rgba(0, 181, 184, 0.6), 0 0 40px rgba(0, 181, 184, 0.3); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.btn-demo:hover {
    background: var(--gradient-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-menu-mobile {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.btn-menu-mobile span {
    width: 24px;
    height: 2px;
    background: var(--primary-cyan);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fefffe 0%, #f7fef8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%2390EE90" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
    padding-right: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 181, 184, 0.1);
    border: 1px solid var(--primary-cyan);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-cyan);
    margin-top: 32px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-glass);
}

.badge-icon {
    color: var(--primary-cyan);
}







.hero-title {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    font-family: var(--font-primary);
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.gradient-text {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description,
.hero-subtitle {
    font-size: 20px;
    color: var(--gray-medium);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 100%;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(27, 88, 74, 0.3), 0 0 20px rgba(27, 88, 74, 0.2);
    animation: techPulse 2s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.9) 0%, rgba(234, 88, 12, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(251, 146, 60, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    transform-style: preserve-3d;
    filter: drop-shadow(0 2px 4px rgba(31, 70, 62, 0.3));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hero Features Simple */
.hero-features {
    margin: 24px 0;
}

.features-text {
    font-size: 15.84px;
    font-weight: 600;
    color: var(--primary-cyan);
    margin: 0;
    text-align: left;
    line-height: 1.4;
}

.btn-icon:hover {
    transform: translateZ(5px) rotateX(10deg) rotateY(10deg) scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(31, 70, 62, 0.4));
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-glass);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.btn-secondary:hover::before {
    animation: shimmer 1.5s ease-in-out;
    opacity: 1;
}

.btn-secondary:hover {
    background: var(--primary-cyan);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 181, 184, 0.3), 0 0 20px rgba(0, 181, 184, 0.2);
    animation: techPulse 2s ease-in-out infinite;
}

.play-icon {
    width: 20px;
    height: 20px;
    transform-style: preserve-3d;
    filter: drop-shadow(0 2px 4px rgba(31, 70, 62, 0.3));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-icon:hover {
    transform: translateZ(5px) rotateX(10deg) rotateY(10deg) scale(1.2);
    filter: drop-shadow(0 4px 8px rgba(31, 70, 62, 0.4));
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-cyan);
    font-family: var(--font-primary);
    text-shadow: 0 2px 4px rgba(0, 181, 184, 0.2);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 500;
}

/* Hero Indicators */
.hero-indicators {
    margin: 1.5rem 0;
    text-align: left;
}

.indicators-text {
    color: var(--gray-medium);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
}

.indicators-text strong {
    color: var(--text-color);
    font-weight: 600;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 20px rgba(31, 70, 62, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(31, 70, 62, 0.5);
    }
    100% {
        box-shadow: 0 8px 20px rgba(31, 70, 62, 0.3);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    font-family: var(--font-primary);
    text-align: center;
}



/* FarmaAI + Intercom Section */
.intercom-section {
    padding: 20px 0; /* Altura reduzida */
    background: var(--white); /* Background branco */
}

.intercom-section h2 .intercom-text {
    background: linear-gradient(135deg, #004D9C, #2378d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intercom-section h2 .plus-text {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intercom-section h2 .farma-text {
    color: var(--black);
}

.intercom-section .section-title .ai-text {
    background: var(--gradient-orange) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

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

.intercom-section .section-description {
    font-size: 20px;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--font-primary);
}

/* WhatsFlux section title with animated gradient */
#whatsflux .section-title {
    background: linear-gradient(45deg, #1F463E 0%, #a6f4ec 25%, #1F463E 50%, #a6f4ec 75%, #1F463E 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradientMove 4s ease-in-out infinite;
}

/* Plans section title with animated gradient */
#planos .section-title {
    background: linear-gradient(45deg, #1F463E 0%, #a6f4ec 25%, #1F463E 50%, #a6f4ec 75%, #1F463E 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradientMove 4s ease-in-out infinite;
}

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

.section-description {
    font-size: 20px;
    color: var(--gray-medium);
    max-width: 900px;
    margin: 0 auto;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: var(--section-padding);
    background: var(--white);
}

/* Primeira linha: Mascote + 2 boxes */
.features-row-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
    margin-bottom: 30px;
}

/* Segunda linha: 3 boxes */
.features-row-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

/* Mascote Container */
.mascot-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
    transition: var(--transition-normal);
}

.mascot-image {
    width: 100%;
    height: 280px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mascot-container:hover .mascot-image {
    transform: scale(1.02);
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(31, 70, 62, 0.1);
    transition: var(--transition-normal);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #ffffff;
    box-shadow: var(--shadow-cyan);
    backdrop-filter: blur(10px);
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ===== AI ADAPTIVE SECTION ===== */
.ai-adaptive-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, 
        rgba(31, 70, 62, 0.05) 0%, 
        rgba(0, 188, 212, 0.05) 50%, 
        rgba(255, 152, 0, 0.05) 100%);
    position: relative;
}

.adaptive-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.adaptive-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(31, 70, 62, 0.1);
    transition: var(--transition-normal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.adaptive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.adaptive-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

.adaptive-card:hover::before {
    transform: scaleX(1);
}

.adaptive-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #ffffff;
    box-shadow: var(--shadow-cyan);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.adaptive-card:hover .adaptive-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.adaptive-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.adaptive-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        var(--primary-cyan-dark) 0%, 
        var(--primary-cyan) 25%, 
        var(--secondary-cyan) 75%, 
        var(--secondary-cyan-light) 100%);
    position: relative;
    backdrop-filter: blur(20px);
}

.how-it-works .section-title {
    color: var(--white) !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--white) !important;
    background-clip: unset !important;
}

.how-it-works .section-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Estilos especificos para a secao de beneficios */
.benefits-section {
    background: var(--white);
    padding: var(--section-padding);
    position: relative;
}

.benefits-section .section-title {
    color: var(--black);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-section .section-description {
    color: var(--gray-medium);
}

.benefits-section .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefits-section .step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.benefits-section .step:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Removido - conflitava com .step-number principal */

.benefits-section .step-content h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefits-section .step-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: var(--white);
    border: 1px solid rgba(31, 70, 62, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px 40px 40px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}



.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-cyan);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-normal);
    border: 2px solid var(--primary-cyan);
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
}

.step-card:hover .step-number {
    transform: scale(1.1);
    background: var(--gradient-secondary);
    border-color: var(--accent-orange);
}

.step-card h3 {
    font-size: 24px;
    color: var(--black);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-card p {
    color: var(--gray-medium);
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: var(--section-padding);
    background: linear-gradient(135deg, 
        var(--primary-cyan-dark) 0%, 
        var(--primary-cyan) 25%, 
        var(--secondary-cyan) 75%, 
        var(--secondary-cyan-light) 100%);
    position: relative;
    backdrop-filter: blur(20px);
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.05) 0%, 
        transparent 70%);
    pointer-events: none;
}

.benefits-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 48px;
    font-family: var(--font-primary);
    text-align: center;
}

/* Centralizar todos os titulos h2 por padrao */
h2 {
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.glass-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.glass-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.glass-box .benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin: 0 auto 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.glass-box:hover .benefit-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.glass-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    font-family: var(--font-primary);
}

.glass-box p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 16px;
}

/* Responsividade para glass boxes */
@media (max-width: 800px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .glass-box {
        padding: 24px 20px;
    }
    
    .glass-box .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .glass-box h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .glass-box p {
        font-size: 15px;
    }
    
    .benefits-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
}

.benefits-visual {
    display: flex;
    justify-content: center;
}

.benefits-image {
    margin: 24px 0;
    text-align: center;
}

.benefits-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefits-image img:hover {
    transform: scale(1.02);
}

.stats-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    border: 1px solid var(--accent-orange);
}

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

.stat-item .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-cyan);
    display: block;
    font-family: var(--font-primary);
    text-shadow: 0 2px 4px rgba(0, 181, 184, 0.2);
}

.stat-item .stat-label {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 500;
}

/* ===== HOW IT WORKS SECTION (DUPLICATE - REMOVED) ===== */
/* .how-it-works {
    padding: var(--section-padding);
    background: var(--white);
} */

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.15);
}

.step:hover .step-number {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Definição duplicada removida - usando a principal */
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.step-icon i {
    font-size: 32px;
    color: var(--white);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.step:hover .step-number::before {
    opacity: 0.3;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.step:hover .step-icon::before {
    opacity: 0.3;
}

.step:hover .step-icon {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Animacao em cascata para os steps */
.step:nth-child(1) {
    animation-delay: 0.1s;
}

.step:nth-child(2) {
    animation-delay: 0.2s;
}

.step:nth-child(3) {
    animation-delay: 0.3s;
}

.step:nth-child(4) {
    animation-delay: 0.4s;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-content h3 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 24px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    font-family: var(--font-primary);
    text-align: center;
}

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

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.cta .btn-primary {
    background: var(--gradient-secondary);
}

.cta .btn-secondary {
    background: var(--white);
    color: var(--primary-cyan);
    border-color: var(--white);
}

.cta .btn-secondary:hover {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

/* ===== PHONE MOCKUP ===== */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
}

/* ===== PHONE MOCKUP STYLES ===== */
.phone-mockup {
    position: relative;
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #2c2c2e, #1c1c1e);
    border-radius: 42px;
    padding: 3px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 0 0 0.5px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: rotate(-3deg);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 39px;
    padding: 0;
    position: relative;
    overflow: hidden;
}



.phone-screen {
    width: 100%;
    height: 100%;
    background: #075E54;
    border-radius: 39px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Status bar */
.status-bar {
    height: 44px;
    background: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 14px;
    color: white;
    font-weight: 600;
    margin-top: 0;
}

.status-left {
    display: flex;
    align-items: center;
    gap: 4px;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 4px;
    color: white;
}

.status-right i {
    color: white;
}

/* ===== VIDEO CONTAINER ===== */
.video-container {
    position: relative;
    width: 100%;
    height: calc(100% - 44px); /* Subtraindo a altura da status bar */
    overflow: hidden;
    background: #000;
}

.demo-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom; /* Alinha o vídeo na parte inferior */
    border: none;
    outline: none;
    background: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent; /* Remove a sombra verde */
    z-index: 2;
    pointer-events: none;
}

.overlay-header {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    color: white;
    gap: 12px;
}

/* ===== VIDEO ERROR STYLES ===== */
.video-error {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    color: white;
    text-align: center;
    padding: 20px;
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.error-message h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.error-message p {
    margin: 8px 0 4px 0;
    font-size: 14px;
    opacity: 0.9;
}

.error-message small {
    font-size: 12px;
    opacity: 0.7;
}

/* ===== CHAT INTERFACE (mantido para compatibilidade) ===== */
.chat-header {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: #075E54;
    color: white;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.avatar-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 8px 16px rgba(0, 181, 184, 0.3), 0 4px 8px rgba(0, 181, 184, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.avatar-icon:hover {
    transform: translateZ(10px) rotateX(10deg) rotateY(10deg) scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 181, 184, 0.4), 0 6px 12px rgba(0, 181, 184, 0.3);
}



.chat-info {
    flex: 1;
}

.chat-info h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.status {
    font-size: 13px;
    opacity: 0.8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.chat-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 6px 12px rgba(0, 181, 184, 0.4), 0 3px 6px rgba(0, 181, 184, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    transform: translateZ(8px) rotateX(5deg) rotateY(5deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 181, 184, 0.5), 0 5px 10px rgba(0, 181, 184, 0.4);
}

.action-btn i {
    font-size: 16px;
}

.chat-messages {
    flex: 1;
    padding: 16px 16px;
    background: #E5DDD5;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    min-height: 400px;
}

.chat-messages::-webkit-scrollbar {
    display: none;
}

.message {
    display: flex;
    gap: 0px;
    animation: messageSlideIn 0.5s ease-out;
    margin-bottom: 2px;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    display: none;
}

.message-avatar:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.message-avatar .avatar-icon {
    font-size: 14px;
    color: white;
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 4px 8px rgba(0, 181, 184, 0.3), 0 2px 4px rgba(0, 181, 184, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.message-avatar .avatar-icon:hover {
    transform: translateZ(5px) rotateX(5deg) rotateY(5deg) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 181, 184, 0.4), 0 3px 6px rgba(0, 181, 184, 0.3);
}

.user-message .message-avatar {
    background: var(--gradient-primary);
}

.user-message .message-avatar .avatar-icon {
    background: var(--gradient-primary);
}

.message-content {
    max-width: 75%;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
}

.user-message .message-content {
    margin-left: auto;
}

.bot-message .message-content {
    margin-right: auto;
}

.message-content p {
    background: white;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    font-size: 15px;
    line-height: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    box-sizing: border-box;
}

.user-message .message-content p {
    background: #DCF8C6;
    color: #111B21;
    border-radius: 12px 12px 4px 12px;
}

.bot-message .message-content p {
    background: #FFFFFF;
    color: #111B21;
    border-radius: 4px 12px 12px 12px;
}

.message-time {
    font-size: 11px;
    color: #667781;
    margin-left: 4px;
    margin-top: 2px;
    display: block;
}

/* Quick replies */
.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0;
}

.quick-reply {
    background: #E8F5E8;
    color: #128C7E;
    border: 1px solid #25D366;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.quick-reply:hover {
    background: #25D366;
    color: white;
    transform: translateY(-1px);
}

/* Medicine card */
.medicine-card {
    background: white;
    border: 1px solid #25D366;
    border-radius: 12px;
    padding: 12px;
    margin: 8px 0;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.1);
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.medicine-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.medicine-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.medicine-info p {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.medicine-price {
    font-size: 14px;
    font-weight: 600;
    color: #25D366;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 0px;
    align-items: flex-start;
    animation: fadeIn 0.5s ease-out;
    margin-bottom: 2px;
}

.typing-dots {
    background: #FFFFFF;
    padding: 6px 7px 8px 9px;
    border-radius: 0px 7.5px 7.5px 7.5px;
    display: flex;
    gap: 4px;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
    max-width: 65%;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
    border-radius: 50%;
    animation: typingDots 1.4s infinite;
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.3), 0 1px 2px rgba(37, 211, 102, 0.2);
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.typing-dots span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

/* Floating elements */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    animation: float 3s ease-in-out infinite;
}

.stat-card {
    top: 20%;
    right: -60px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 0s;
    border: 1px solid #E8F5E8;
}

.notification {
    bottom: 20%;
    left: -80px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: 1.5s;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: #ffffff;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 6px 12px rgba(0, 181, 184, 0.4), 0 3px 6px rgba(0, 181, 184, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.notification-icon {
    font-size: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: #ffffff;
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 6px 12px rgba(0, 181, 184, 0.4), 0 3px 6px rgba(0, 181, 184, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.stat-icon:hover {
    transform: translateZ(8px) rotateX(5deg) rotateY(5deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(31, 70, 62, 0.5), 0 5px 10px rgba(31, 70, 62, 0.4);
}

.notification-icon:hover {
    transform: translateZ(8px) rotateX(5deg) rotateY(5deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(31, 70, 62, 0.5), 0 5px 10px rgba(31, 70, 62, 0.4);
}

.stat-info,
.notification-content {
    display: flex;
    flex-direction: column;
}

.stat-value,
.notification-title {
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

.stat-desc,
.notification-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Animations */
@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typingDots {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}



/* Responsive */
/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
        padding: 0 32px;
    }
    
    .hero-title {
        font-size: 52px;
        line-height: 1.1;
    }
    
    .hero-description {
        font-size: 18px;
    }
}

@media (max-width: 800px) {
    /* Header adjustments for tablet */
    .nav {
        padding: 12px 24px;
    }
    
    .logo-img {
        height: 70px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    /* Hero section adjustments for tablet */
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 32px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-content {
        order: 1;
        max-width: 100%;
        padding-right: 0;
    }
    
    .hero-visual {
        order: 2;
        justify-content: center;
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 20px;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 16px;
        max-width: 100%;
    }
    
    .hero-description,
    .hero-subtitle {
        font-size: 18px;
        max-width: 100%;
        margin: 0 auto 32px;
        line-height: 1.6;
        padding: 0 16px;
    }
    
    .hero-badge {
        margin-top: 0;
        margin-bottom: 20px;
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 16px;
    }
    
    .phone-frame {
        width: 280px;
        height: 560px;
        margin: 0 auto;
    }
    
    .phone-mockup {
        margin: 0 auto;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    /* Header adjustments for mobile */
    .nav {
        padding: 10px 16px;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .nav-menu {
        gap: 16px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    /* Hero section adjustments for mobile */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 24px;
        max-width: 100%;
    }
    
    .hero-content {
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.25;
        margin-bottom: 16px;
        word-wrap: break-word;
        hyphens: auto;
        padding: 0 8px;
        max-width: 100%;
    }
    
    .hero-description,
    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto 20px;
        line-height: 1.6;
        padding: 0 8px;
    }
    
    .hero-badge {
        margin-top: 0;
        margin-bottom: 16px;
        font-size: 12px;
        padding: 5px 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .phone-frame {
        width: 260px;
        height: 520px;
        margin: 0 auto;
    }
    
    .phone-mockup {
        margin: 0 auto;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--petrol-blue);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-orange);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}



.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(0, 181, 184, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 181, 184, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 181, 184, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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

@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
        padding: 0 28px;
    }
    
    .hero-title {
        font-size: 52px;
        line-height: 1.1;
    }
    
    .hero-description,
    .hero-subtitle {
        font-size: 19px;
        line-height: 1.6;
    }
}

@media (max-width: 800px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-row-1 {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .features-row-2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .mascot-image {
        width: 100%;
        height: 240px;
        object-fit: contain;
    }
}

@media (max-width: 800px) {
    .nav {
        padding: 12px 20px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        color: white;
        font-size: 24px;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .nav-menu a:hover {
        color: var(--primary-cyan);
    }
    
    .btn-menu-mobile {
        display: flex;
        z-index: 1001;
    }
    
    .btn-menu-mobile.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .btn-menu-mobile.active span:nth-child(2) {
        opacity: 0;
    }
    
    .btn-menu-mobile.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    

    
    .section-title {
        font-size: 36px;
    }
    
    .features-row-1,
    .features-row-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mascot-container {
        padding: 0;
        margin-bottom: 20px;
        order: -1;
    }
    
    .mascot-image {
        width: 100%;
        height: 250px;
        object-fit: contain;
    }
    
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .step {
        padding: 24px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
    }
    
    .step-icon i {
        font-size: 20px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav {
        padding: 12px 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step {
        padding: 20px 16px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
    }
    
    .step-icon i {
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .mascot-container {
        padding: 0;
        margin-bottom: 16px;
    }
    
    .mascot-image {
        width: 250px;
        height: 293px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 16px;
        right: 16px;
    }
}

/* ===== PLANS SECTION ===== */
.plans {
    padding: var(--section-padding);
    background: var(--gray-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.plan-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.plan-essential::before {
    background: #22c55e; /* Verde */
}

.plan-pro::before {
    background: #eab308; /* Amarelo */
}

.plan-advanced::before {
    background: #f97316; /* Laranja */
}

.plan-premium::before {
    background: #3b82f6; /* Azul */
}

.plan-header {
    text-align: center;
    margin-bottom: 32px;
}

.plan-badge {
    font-size: 32px;
    margin-bottom: 16px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.plan-badge:hover {
    transform: translateZ(10px) rotateX(10deg) rotateY(10deg) scale(1.1);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3), 0 6px 12px rgba(0, 0, 0, 0.2);
}

.plan-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.plan-essential .plan-badge {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.plan-pro .plan-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #eab308 50%, #d97706 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.plan-advanced .plan-badge {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.plan-premium .plan-badge {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.plan-card h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    color: var(--primary-cyan);
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.plan-price .currency {
    font-size: 18px;
    color: var(--gray-medium);
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-cyan);
    font-family: var(--font-primary);
}

.plan-price .period {
    font-size: 16px;
    color: var(--gray-medium);
}

.plan-description {
    color: var(--gray-medium);
    line-height: 1.6;
    margin-bottom: 0;
}

.plan-features h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--primary-cyan);
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.plan-features li {
    padding: 8px 0;
    color: var(--black);
    line-height: 1.5;
    position: relative;
    padding-left: 24px;
}

.plan-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: 600;
}

.plan-features .not-included li::before {
    content: '\2717';
    color: var(--dark-orange);
}

.plan-features .not-included li {
    color: var(--gray-medium);
}

.plan-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    margin-top: auto;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    animation: techPulse 2s ease-in-out infinite alternate;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.plan-btn:hover::before {
    left: 100%;
}

.plan-btn:hover {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.9) 0%, rgba(234, 88, 12, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.plan-btn-premium {
    background: var(--gradient-primary);
}

/* ===== PLANS FOOTER ===== */
.plans-footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.plans-note {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-cyan);
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    background: var(--white);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(31, 70, 62, 0.02);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-dark);
    margin: 0;
    font-family: var(--font-primary);
    line-height: 1.4;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-cyan);
    transition: transform 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: rgba(31, 70, 62, 0.02);
    padding: 0 32px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 24px 32px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
    font-family: var(--font-primary);
}

/* FAQ Responsive */
@media (max-width: 800px) {
    .faq-question {
        padding: 20px 24px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 24px 20px 24px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-question {
        padding: 16px 20px;
    }
    
    .faq-question h3 {
        font-size: 15px;
        line-height: 1.3;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

/* ===== WHATSFLUX SECTION ===== */
.whatsflux {
    padding: var(--section-padding);
    background: var(--white);
}

.whatsflux-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-top: 64px;
}

.whatsflux-features {
    display: grid;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    transform-style: preserve-3d;
    perspective: 1000px;
    box-shadow: 0 8px 16px rgba(0, 181, 184, 0.3), 0 4px 8px rgba(0, 181, 184, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    color: white;
}

.feature-item .feature-icon:hover {
    transform: translateZ(10px) rotateX(5deg) rotateY(5deg) scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 181, 184, 0.4), 0 6px 12px rgba(0, 181, 184, 0.3);
}

.feature-item h3 {
    font-size: 20px;
    color: var(--primary-cyan);
    margin-bottom: 8px;
    font-family: var(--font-primary);
}

.feature-item p {
    color: var(--gray-medium);
    line-height: 1.6;
    margin: 0;
}

.whatsflux-showcase {
    padding: 40px 0;
}

.showcase-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.showcase-images {
    position: relative;
    width: 100%;
    height: 450px;
}

.showcase-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    transform: scale(1.02);
}

.showcase-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
}

.slide-caption {
    padding: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}



@media (max-width: 800px) {
    .showcase-container {
        margin: 0 20px;
    }
    
    .showcase-images {
        height: 350px;
    }
    
    .showcase-slide img {
        height: 280px;
    }
    
    .showcase-nav {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .showcase-nav.prev {
        left: 10px;
    }
    
    .showcase-nav.next {
        right: 10px;
    }
    
    .slide-caption {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .showcase-images {
        height: 300px;
    }
    
    .showcase-slide img {
        height: 230px;
    }
    
    .slide-caption {
        padding: 12px;
        font-size: 13px;
    }
}

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 1400px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .whatsflux-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .mockup-container {
        max-width: 400px;
    }
    
    /* Header adjustments for iPad */
    .nav {
        padding: 16px 32px;
    }
    
    .logo-img {
        height: 80px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    /* Hero section adjustments for iPad */
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-container {
        max-width: 1000px;
        padding: 0 32px;
        gap: 60px;
        align-items: center;
        justify-items: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 18px;
        max-width: 600px;
        margin: 0 auto 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        justify-content: center;
    }
    
    .phone-mockup {
        margin: 0 auto;
    }
}

@media (max-width: 800px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        padding: 24px;
    }
    
    .plan-price .amount {
        font-size: 36px;
    }
    
    .whatsflux-features {
        gap: 24px;
        text-align: center;
    }
    
    .feature-item {
        gap: 16px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .feature-item h3 {
        text-align: center;
        margin-bottom: 12px;
    }
    
    .feature-item p {
        text-align: center;
        max-width: 300px;
    }
    
    .mockup-content {
        height: 300px;
    }
    
    .dashboard-sidebar {
        width: 120px;
        padding: 16px 12px;
    }
    
    .sidebar-item {
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .message-content {
        max-width: 70%;
    }
    
    .chat-messages {
        padding: 6px 10px;
    }
    
    .medicine-card {
        padding: 10px;
        margin: 6px 0;
    }
    
    .medicine-info h5 {
        font-size: 13px;
    }
    
    .medicine-info p {
        font-size: 11px;
    }
    
    .medicine-price {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .plan-card {
        padding: 20px;
    }
    
    .plan-price .amount {
        font-size: 32px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        align-items: center;
    }
    
    .whatsflux-features {
        gap: 20px;
        text-align: center;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .feature-item h3 {
        font-size: 18px;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .feature-item p {
        font-size: 14px;
        text-align: center;
        max-width: 280px;
        line-height: 1.5;
    }
    
    .mockup-container {
        max-width: 300px;
    }
    
    .mockup-content {
        height: 250px;
    }
    
    .dashboard-sidebar {
        width: 100px;
        padding: 12px 8px;
    }
    
    .sidebar-item {
        padding: 6px 8px;
        font-size: 10px;
    }
    
    .chat-item {
        padding: 12px;
    }
    
    .chat-avatar {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .message-content {
        max-width: 75%;
    }
    
    .message-content p {
        font-size: 13px;
        line-height: 17px;
        padding: 5px 6px 7px 8px;
    }
    
    .chat-messages {
        padding: 6px 8px;
    }
    
    .medicine-card {
        padding: 8px;
        margin: 4px 0;
    }
    
    .medicine-info h5 {
        font-size: 12px;
    }
    
    .medicine-info p {
        font-size: 10px;
    }
    
    .medicine-price {
        font-size: 12px;
    }
    
}

/* ===== CUSTOM PLAN SECTION - UPDATED ===== */
.custom-plan-section {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--secondary-cyan) 50%, var(--petrol-blue) 100%);
    padding: 48px 32px;
    margin: 32px 0;
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: customPlanGlow 3s ease-in-out infinite alternate;
}

.custom-plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.custom-plan-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 148, 29, 0.1) 0%, transparent 70%);
    animation: customPlanRotate 20s linear infinite;
    z-index: 0;
}

.custom-plan-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.custom-plan-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: customPlanFloat 3s ease-in-out infinite;
}

.custom-plan-title {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-plan-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

.custom-plan-highlight {
    background: rgba(247, 148, 29, 0.2);
    padding: 16px 24px;
    border-radius: var(--border-radius);
    margin: 24px 0;
    border-left: 4px solid var(--accent-orange);
    backdrop-filter: blur(5px);
}

.custom-plan-highlight strong {
    color: var(--accent-orange-light);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.custom-plan-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--gradient-secondary);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition-normal);
    box-shadow: 0 8px 24px rgba(247, 148, 29, 0.3);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.custom-plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.custom-plan-btn:hover::before {
    left: 100%;
}

.custom-plan-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(247, 148, 29, 0.4);
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--dark-orange) 100%);
}

.custom-plan-btn-icon {
    font-size: 20px;
    animation: customPlanBtnIcon 2s ease-in-out infinite;
    display: inline-block;
}

/* Animacoes para a secao customizada */
@keyframes customPlanGlow {
    0% {
        box-shadow: 0 16px 64px rgba(0, 181, 184, 0.2), 0 0 40px rgba(247, 148, 29, 0.1);
    }
    100% {
        box-shadow: 0 20px 80px rgba(0, 181, 184, 0.3), 0 0 60px rgba(247, 148, 29, 0.2);
    }
}

@keyframes customPlanRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes customPlanFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes customPlanBtnIcon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Responsividade para seção customizada */
@media (max-width: 768px) {
    .custom-plan-section {
        padding: 32px 24px;
        margin: 24px 0;
    }
    
    .custom-plan-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }
    
    .custom-plan-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .custom-plan-description {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .custom-plan-btn {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    /* Responsividade para seção IA Adaptável */
    .ai-adaptive-section {
        padding: 40px 20px;
    }
    
    .adaptive-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .adaptive-card {
        padding: 30px 20px;
    }
    
    .adaptive-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .adaptive-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .adaptive-card p {
        font-size: 14px;
    }
}

/* ========================================
   SEÇÃO DE VALIDAÇÃO FARMACÊUTICA
   ======================================== */
.validation-section {
    background: var(--gradient-primary);
    padding: 60px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.validation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.validation-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.validation-icon {
    font-size: 80px;
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
    flex-shrink: 0;
    width: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

.validation-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    font-family: var(--font-primary);
}

.validation-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-align: justify;
    text-justify: inter-word;
}

.validation-text strong {
    color: var(--accent-orange);
    font-weight: 600;
}

.validation-text .highlight-white {
    color: #ffffff;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsividade para validação farmacêutica */
@media (max-width: 768px) {
    .validation-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .validation-icon {
        font-size: 60px;
    }
    
    .validation-text h2 {
        font-size: 24px;
    }
    
    .validation-text p {
        font-size: 16px;
    }
}

/* ========================================
   ESTILOS PARA BENEFÍCIOS SEGMENTADOS
   ======================================== */
.benefits-section {
    margin: 48px 0;
    padding: 32px 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.benefits-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 32px;
    text-align: center;
    font-family: var(--font-primary);
}

.integration-flow {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 24px;
}

.integration-flow p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.integration-flow strong {
    color: var(--white);
    font-weight: 600;
}

/* Responsividade para benefícios segmentados */
@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 20px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .step-card {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .step-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .step-card p {
        font-size: 14px;
    }
    
    .benefits-subtitle {
        font-size: 20px;
        margin-bottom: 24px;
    }
    
    .integration-flow p {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

/* ========================================
   ESTILOS PARA FLUXO DE TRABALHO
   ======================================== */
.workflow {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(0, 181, 184, 0.1) 0%, 
        rgba(0, 125, 127, 0.05) 50%, 
        rgba(0, 76, 90, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.workflow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, 
        rgba(255, 255, 255, 0.03) 0%, 
        transparent 70%);
    pointer-events: none;
}

.workflow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 48px 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-step {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    min-width: 200px;
    max-width: 250px;
    position: relative;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 181, 184, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00B5B8, #007D7F);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.workflow-step h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: var(--font-primary);
}

.workflow-step p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.5;
}

.workflow-arrow {
    font-size: 24px;
    color: var(--primary);
    font-weight: bold;
    margin: 0 16px;
}

.workflow-branch {
    max-width: 300px;
    padding: 24px;
}

.branch-simple, .branch-complex {
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.branch-divider {
    text-align: center;
    color: var(--primary);
    font-weight: 600;
    margin: 12px 0;
    font-size: 14px;
}

.workflow-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 48px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
}

.benefit-item i {
    color: var(--primary);
    font-size: 20px;
}

/* Responsividade para fluxo de trabalho */
@media (max-width: 1024px) {
    .workflow-container {
        gap: 20px;
        padding: 0 24px;
    }
    
    .workflow-step {
        min-width: 180px;
        max-width: 220px;
        padding: 28px 20px;
    }
    
    .workflow-step h3 {
        font-size: 17px;
    }
    
    .workflow-step p {
        font-size: 13px;
    }
}

@media (max-width: 800px) {
    .workflow {
        padding: 60px 0;
    }
    
    .workflow-container {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 12px 0;
    }
    
    .workflow-step {
        min-width: auto;
        max-width: 100%;
        margin: 0;
        padding: 24px 20px;
    }
    
    .workflow-benefits {
        gap: 20px;
        margin-top: 40px;
    }
    
    .benefit-item {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .workflow {
        padding: 60px 0;
    }
    
    .workflow-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .workflow-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
    }
    
    .workflow-step {
        min-width: auto;
        max-width: 100%;
        margin: 0 16px;
    }
    
    .workflow-benefits {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .benefit-item {
        justify-content: center;
        font-size: 14px;
    }