/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevenir scroll horizontal globalmente */
html {
    overflow-x: hidden;
    max-width: 100vw;
}

:root {
    /* Qorvo Brand Colors */
    --primary-color: #66D6FF; /* Azul Ciano Brilhante */
    --primary-hover: #4BC4E6; /* Hover do azul ciano */
    --secondary-color: #0A4058; /* Azul Escuro (Tarawera) */
    --secondary-hover: #083A4F; /* Hover do azul escuro */
    --accent-color: #66D6FF; /* Cor de destaque */
    
    /* Supporting Colors */
    --white: #FFFFFF; /* Branco para fundos */
    --gray-light: #F5F5F5; /* Cinza claro para seções */
    --text-primary: #333333; /* Cinza escuro para texto */
    --text-secondary: #666666; /* Cinza médio para subtítulos */
    --text-light: #999999; /* Cinza claro para texto secundário */
    --border-color: #E5E5E5; /* Cor das bordas */
    --black: #000000;
    
    /* Gradients using Qorvo colors */
    --gradient-primary: linear-gradient(135deg, #66D6FF 0%, #0A4058 100%);
    --gradient-secondary: linear-gradient(135deg, #0A4058 0%, #66D6FF 100%);
    --gradient-accent: linear-gradient(135deg, #66D6FF 0%, #4BC4E6 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(10 64 88 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(10 64 88 / 0.1), 0 2px 4px -2px rgb(10 64 88 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(10 64 88 / 0.1), 0 4px 6px -4px rgb(10 64 88 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(10 64 88 / 0.1), 0 8px 10px -6px rgb(10 64 88 / 0.1);
    
    /* Circuit pattern colors */
    --circuit-primary: #66D6FF;
    --circuit-secondary: #0A4058;
    --circuit-accent: #4BC4E6;
    
    /* CTA Button Colors - Azuis estratégicos para conversão */
    --cta-primary: #2563EB; /* Azul vibrante para CTAs principais */
    --cta-primary-hover: #1D4ED8; /* Hover do azul principal */
    --cta-secondary: #3B82F6; /* Azul médio para CTAs secundários */
    --cta-secondary-hover: #2563EB; /* Hover do azul secundário */
    --cta-accent: #1E40AF; /* Azul escuro para destaque */
    --cta-accent-hover: #1E3A8A; /* Hover do azul de destaque */
    --cta-gradient: linear-gradient(135deg, #2563EB 0%, #3B82F6 50%, #1E40AF 100%);
    --cta-glow: 0 0 20px rgba(37, 99, 235, 0.4);
    --cta-glow-hover: 0 0 30px rgba(37, 99, 235, 0.6);
}

body {
    font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    font-weight: 400;
    overflow-x: hidden; /* Previne scroll horizontal */
    width: 100%;
    max-width: 100vw; /* Limita largura máxima */
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu {
    display: none;
}

.desktop-only {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

.logo-text {
    height: 32px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-text:hover {
    opacity: 0.8;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* CTA Button Styles - Botões estratégicos para conversão */
.btn-cta-primary {
    background: var(--cta-gradient);
    color: var(--white);
    border: 2px solid var(--cta-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--cta-glow);
    animation: cta-pulse 2s infinite;
}

.btn-cta-primary::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 ease;
}

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

.btn-cta-primary:hover {
    background: var(--cta-primary-hover);
    border-color: var(--cta-primary-hover);
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--cta-glow-hover);
    animation: none;
}

.btn-cta-secondary {
    background: var(--cta-secondary);
    color: var(--white);
    border: 2px solid var(--cta-secondary);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-cta-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-cta-secondary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-cta-secondary:hover {
    background: var(--cta-secondary-hover);
    border-color: var(--cta-secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-cta-accent {
    background: var(--cta-accent);
    color: var(--white);
    border: 2px solid var(--cta-accent);
    font-weight: 700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
    animation: cta-bounce 3s infinite;
}

.btn-cta-accent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-cta-accent:hover::before {
    transform: translateX(100%);
}

.btn-cta-accent:hover {
    background: var(--cta-accent-hover);
    border-color: var(--cta-accent-hover);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.5);
    animation: none;
}

/* Animações para CTAs */
@keyframes cta-pulse {
    0%, 100% {
        box-shadow: var(--cta-glow);
    }
    50% {
        box-shadow: var(--cta-glow-hover);
    }
}

@keyframes cta-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes cta-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Efeito especial para botões de pricing */
.pricing-btn-cta {
    background: var(--cta-gradient);
    color: var(--white);
    border: 2px solid var(--cta-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--cta-glow);
    animation: cta-pulse 2.5s infinite;
}

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

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

.pricing-btn-cta:hover {
    background: var(--cta-primary-hover);
    border-color: var(--cta-primary-hover);
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--cta-glow-hover);
    animation: cta-shake 0.5s ease-in-out;
}

/* Botão especial para hero CTA */
.hero-cta {
    background: var(--cta-gradient);
    color: var(--white);
    border: 2px solid var(--cta-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--cta-glow);
    animation: cta-pulse 2s infinite;
}

.hero-cta::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 ease;
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta:hover {
    background: var(--cta-primary-hover);
    border-color: var(--cta-primary-hover);
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--cta-glow-hover);
    animation: none;
}

/* Efeitos especiais para maximizar conversão */
.cta-attention {
    position: relative;
    animation: cta-attention 2s infinite;
}

@keyframes cta-attention {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--cta-glow);
    }
    50% {
        transform: scale(1.05);
        box-shadow: var(--cta-glow-hover);
    }
}

/* Efeito de partículas para botões premium */
.premium-cta {
    position: relative;
    overflow: visible;
}

.premium-cta::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.2rem;
    animation: sparkle 1.5s infinite;
}

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

/* Efeito de urgência para botões de teste grátis */
.urgency-cta {
    position: relative;
    animation: urgency-pulse 1.5s infinite;
}

.urgency-cta::before {
    content: '⚡';
    position: absolute;
    top: -8px;
    left: -8px;
    font-size: 1rem;
    animation: lightning 2s infinite;
}

@keyframes urgency-pulse {
    0%, 100% {
        box-shadow: var(--cta-glow);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 0, 0, 0.5), var(--cta-glow);
    }
}

@keyframes lightning {
    0%, 100% {
        opacity: 0;
        transform: rotate(0deg);
    }
    25% {
        opacity: 1;
        transform: rotate(15deg);
    }
    75% {
        opacity: 1;
        transform: rotate(-15deg);
    }
}

/* Efeito de gradiente animado */
.gradient-cta {
    background: linear-gradient(-45deg, #2563EB, #3B82F6, #1E40AF, #2563EB);
    background-size: 400% 400%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Neon Animations */
@keyframes neon-glow {
    0% {
        box-shadow: 
            0 0 5px var(--cta-primary),
            0 0 10px var(--cta-primary),
            0 0 15px var(--cta-primary);
    }
    100% {
        box-shadow: 
            0 0 10px var(--cta-primary),
            0 0 20px var(--cta-primary),
            0 0 30px var(--cta-primary),
            0 0 40px var(--cta-primary);
    }
}

@keyframes neon-border {
    0% {
        opacity: 0.6;
        filter: blur(1px);
    }
    100% {
        opacity: 1;
        filter: blur(0.5px);
    }
}

@keyframes gradient-flow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

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

/* Efeito de hover especial para botões de pricing */
.pricing-btn-cta:hover {
    background: var(--cta-primary-hover);
    border-color: var(--cta-primary-hover);
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--cta-glow-hover);
    animation: cta-shake 0.5s ease-in-out;
}

/* Efeito de brilho para botões principais */
.shine-cta {
    position: relative;
    overflow: hidden;
}

.shine-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.shine-cta:hover::before {
    left: 100%;
}

/* Responsividade para animações */
@media (max-width: 720px) {
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-accent,
    .hero-cta,
    .pricing-btn-cta {
        animation-duration: 3s;
    }
    
    .cta-attention,
    .urgency-cta {
        animation-duration: 2.5s;
    }
}

/* Reduzir animações para usuários que preferem movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-accent,
    .hero-cta,
    .pricing-btn-cta,
    .cta-attention,
    .urgency-cta,
    .gradient-cta {
        animation: none;
    }
    
    .btn-cta-primary:hover,
    .btn-cta-secondary:hover,
    .btn-cta-accent:hover,
    .hero-cta:hover,
    .pricing-btn-cta:hover {
        transform: none;
    }
}

/* HLS Video Player Styles */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-popup {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.video-popup-overlay.active .video-popup {
    transform: scale(1);
}

.video-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10001;
    transition: all 0.3s ease;
}

.video-popup-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
}

.video-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.video-loading i {
    animation: spin 1s linear infinite;
}

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

.video-error {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.video-error i {
    font-size: 3rem;
    color: #ff4444;
    margin-bottom: 1rem;
}

.video-quality-selector {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    z-index: 10001;
}

.video-quality-selector:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Responsive video player */
@media (max-width: 720px) {
    .video-popup {
        width: 95%;
        margin: 1rem;
    }
    
    .video-popup-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .video-quality-selector {
        top: 0.5rem;
        left: 0.5rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .video-popup {
        width: 100%;
        height: 100%;
        border-radius: 0;
        margin: 0;
    }
    
    .video-container {
        padding-bottom: 100vh;
    }
}

/* Responsive Hero Video */
@media screen and (max-width: 768px) {
    /* Show mobile video and hide desktop video */
    .hero-video-mobile {
        display: block !important;
        width: 100%;
        margin: 1rem 0;
        visibility: visible !important;
    }
    
    .hero-video-section {
        display: none !important;
    }
    
    /* Ensure mobile video container is visible */
    .video-container-hero-mobile {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Slightly reduce subtitle text size on tablet */
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
    
    .video-container-hero {
        margin-bottom: 2rem;
        border-radius: 1rem;
    }
    
    .video-container-hero::before {
        border-radius: 1rem;
    }
    
    .video-container-hero::after {
        border-radius: 1rem;
    }
    
    .video-container-hero video {
        border-radius: 1rem;
    }
    
    .video-overlay {
        border-radius: 1rem;
    }
    
    .play-button {
        width: 80px;
        height: 80px;
    }
    
    .play-button i {
        font-size: 2rem;
    }
    
    .video-badge {
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Responsividade para cards pequenos */
    .video-features-top,
    .video-features-bottom {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-card-small {
        min-width: 180px;
        max-width: 220px;
        padding: 0.875rem 1rem;
    }
    
    .video-features-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-content h4 {
        font-size: 0.9rem;
    }
    
    .feature-content p {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-video-section {
        padding: 0 0.5rem;
    }
    
    .video-container-hero {
        border-radius: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    /* Ensure mobile video is visible on small screens */
    .hero-video-mobile {
        display: block !important;
        width: 100%;
        margin: 1rem 0;
        visibility: visible !important;
    }
    
    .video-container-hero-mobile {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border-radius: 0.75rem;
    }
    
    /* Reduce subtitle text size on mobile */
    .hero-subtitle {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 1rem !important;
    }
    
    .video-container-hero::before {
        border-radius: 0.75rem;
    }
    
    .video-container-hero::after {
        border-radius: 0.75rem;
    }
    
    .video-container-hero video {
        border-radius: 0.75rem;
    }
    
    .video-overlay {
        border-radius: 0.75rem;
    }
    
    .play-button {
        width: 70px;
        height: 70px;
    }
    
    .play-button i {
        font-size: 1.75rem;
    }
    
    .video-badge {
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    /* Responsividade mobile para cards pequenos */
    .video-features-top,
    .video-features-bottom {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin: 1.5rem 0;
    }
    
    .feature-card-small {
        min-width: 160px;
        max-width: 200px;
        padding: 0.75rem 0.875rem;
    }
    
    .feature-icon-small {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon-small i {
        font-size: 0.875rem;
    }
    
    .feature-content-small h4 {
        font-size: 0.8rem;
    }
    
    .feature-content-small p {
        font-size: 0.7rem;
    }
    
    .video-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    
    .feature-card {
        padding: 0.75rem;
        gap: 0.5rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .feature-icon i {
        font-size: 0.9rem;
    }
    
    .feature-content h4 {
        font-size: 0.85rem;
    }
    
    .feature-content p {
        font-size: 0.75rem;
    }
}

/* Hero Section */
.hero {
    padding: 5rem 0 2rem;
    margin-top: 2rem;
    background: var(--white);
    position: relative;
    overflow: hidden;
    min-height: auto;
    display: flex;
    align-items: center;
}

/* Hero Video Styles */
.hero-video-section {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Mobile Video Styles - Hidden by default on desktop */
.hero-video-mobile {
    display: none;
}

.video-container-hero-mobile {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 1rem;
    overflow: hidden;
    margin: 1.5rem 0;
    border: 2px solid transparent;
}

.video-container-hero-mobile::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(
        from 0deg,
        #2563EB 0deg,
        #3B82F6 90deg,
        #1E40AF 180deg,
        #60A5FA 270deg,
        #2563EB 360deg
    );
    border-radius: 1rem;
    z-index: -1;
    animation: neon-rotate 3s linear infinite;
    filter: blur(1px);
}

.video-container-hero-mobile::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: conic-gradient(
        from 0deg,
        #2563EB 0deg,
        #3B82F6 90deg,
        #1E40AF 180deg,
        #60A5FA 270deg,
        #2563EB 360deg
    );
    border-radius: 1rem;
    z-index: -1;
    animation: neon-rotate 3s linear infinite reverse;
    opacity: 0.8;
}

.video-container-hero-mobile iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border: none;
}

/* Video overlay mobile removed - using PandaVideo native controls */

.video-badge-mobile {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.video-badge-mobile i {
    color: var(--cta-primary);
    font-size: 14px;
}

.video-container-hero {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 1.5rem;
    overflow: hidden;
    margin: 2rem 0 3rem 0;
    border: 2px solid transparent;
}

.video-container-hero::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: conic-gradient(
        from 0deg,
        #2563EB 0deg,
        #3B82F6 90deg,
        #1E40AF 180deg,
        #60A5FA 270deg,
        #2563EB 360deg
    );
    border-radius: 1.5rem;
    z-index: -1;
    animation: neon-rotate 3s linear infinite;
    filter: blur(1px);
}

.video-container-hero::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: conic-gradient(
        from 0deg,
        #2563EB 0deg,
        #3B82F6 90deg,
        #1E40AF 180deg,
        #60A5FA 270deg,
        #2563EB 360deg
    );
    border-radius: 1.5rem;
    z-index: -1;
    animation: neon-rotate 3s linear infinite reverse;
    opacity: 0.8;
}

.video-container-hero iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    border-radius: 1.5rem;
    z-index: 2;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: all 0.4s ease;
    border-radius: 1.5rem;
    z-index: 3;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
}

.play-button {
    width: 100px;
    height: 100px;
    background: var(--cta-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 40px rgba(37, 99, 235, 0.4),
        0 0 0 4px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.play-button:hover::before {
    transform: translateX(100%);
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: 
        0 25px 50px rgba(37, 99, 235, 0.6),
        0 0 0 6px rgba(255, 255, 255, 0.2);
}

.play-button i {
    font-size: 2.5rem;
    color: var(--white);
    margin-left: 6px;
    z-index: 1;
}

.video-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-badge i {
    color: var(--cta-primary);
    font-size: 1rem;
}

/* Video Features Layout */
.video-features-top {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.video-features-bottom {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Cards pequenos para vídeo */
.feature-card-small {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    min-width: 200px;
    max-width: 250px;
}

.feature-card-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
    border-color: var(--cta-primary);
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cta-primary) 0%, var(--cta-secondary) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small i {
    color: white;
    font-size: 1rem;
}

.feature-content-small h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
}

.feature-content-small p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.3;
}

/* Cards pequenos para estatísticas */
.stat-card-small {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    min-width: 200px;
    max-width: 250px;
}

.stat-card-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
    border-color: var(--cta-primary);
}

/* Featured Stat Card - Igual aos outros cards pequenos */
.stat-card-featured {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    min-width: 200px;
    max-width: 250px;
}

.stat-card-featured:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.15);
    border-color: var(--cta-primary);
}



.stat-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cta-primary) 0%, var(--cta-secondary) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-small i {
    color: white;
    font-size: 1rem;
}

.stat-content-small {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

/* Featured Stat Card - Ícone e conteúdo igual aos outros */
.stat-icon-featured {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cta-primary) 0%, var(--cta-secondary) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-featured i {
    color: white;
    font-size: 1rem;
}

.stat-content-featured {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.stat-number-featured {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-label-featured {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
    text-align: left;
}

.stat-number-small {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cta-primary);
    line-height: 1;
}

.stat-label-small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
    text-align: left;
}

/* Chat Demo Actions */
.chat-demo-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Video Features Grid - mantido para compatibilidade */
.video-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--cta-gradient);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.feature-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Chat Demo Section */
.chat-demo-section {
    padding: 4rem 0;
    background: var(--gray-light);
}

.chat-demo-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, var(--circuit-primary) 1px, transparent 1px),
        linear-gradient(-45deg, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.03;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 214, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(102, 214, 255, 0.2);
}

.hero-badge i {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.title-line-1 {
    display: block;
    margin-bottom: 0.3rem;
    white-space: nowrap;
}

.title-line-2 {
    display: block;
    min-height: 1.2em;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 2rem;
    overflow: hidden;
}

/* Card destacado alinhado à esquerda apenas no desktop */
@media screen and (min-width: 769px) {
    .hero-stats .stat-card-featured {
        margin-right: auto;
    }
}

.hero-demo {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Highlights Section */
.highlights {
    padding: 3rem 0;
    background: var(--white);
    position: relative;
}

.highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--circuit-primary) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.03;
    z-index: 1;
}

.highlights .container {
    position: relative;
    z-index: 2;
}

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

.highlight-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.highlight-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.highlight-card:hover .highlight-icon::before {
    transform: translateX(100%);
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--white);
}

.highlight-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.highlight-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* How it Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, var(--circuit-primary) 1px, transparent 1px),
        linear-gradient(-45deg, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.04;
    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--white);
}

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

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-icon::before {
    transform: translateX(100%);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

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

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

/* Integrations Section */
.integrations {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
}

.integrations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--circuit-primary) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.03;
    z-index: 1;
}

.integrations .container {
    position: relative;
    z-index: 2;
}

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

.integration-item {
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0.75rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: var(--white);
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Advantages Section */
.advantages {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, var(--circuit-primary) 1px, transparent 1px),
        linear-gradient(-30deg, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.04;
    z-index: 1;
}

.advantages .container {
    position: relative;
    z-index: 2;
}

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

.advantage-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.advantage-card:hover .advantage-icon::before {
    transform: translateX(100%);
}

.advantage-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.advantage-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--white);
}

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

.testimonial-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

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

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* AI Agents Section */
.ai-agents {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
}

.ai-agents::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--circuit-primary) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.03;
    z-index: 1;
}

.ai-agents .container {
    position: relative;
    z-index: 2;
}

.feature-showcase {
    margin-top: 3rem;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.feature-info p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-list i {
    color: var(--primary-color);
    font-size: 1rem;
}

.ai-agent-demo {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.agent-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.agent-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 214, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.agent-card:hover::before {
    left: 100%;
}

.agent-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.agent-avatar {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 2;
}

.agent-avatar i {
    font-size: 2rem;
    color: var(--white);
}

.agent-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.agent-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Integrations Detail Section */
.integrations-detail {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.integrations-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, var(--circuit-primary) 1px, transparent 1px),
        linear-gradient(-45deg, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.03;
    z-index: 1;
}

.integrations-detail .container {
    position: relative;
    z-index: 2;
}

.integrations-showcase {
    margin-top: 3rem;
}

.integration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.integration-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(102, 214, 255, 0.02) 100%);
    z-index: 1;
}

.integration-card > * {
    position: relative;
    z-index: 2;
}

.integration-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.integration-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.integration-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.integration-card:hover .integration-icon::before {
    transform: translateX(100%);
}

.integration-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.integration-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.integration-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.integration-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: rgba(102, 214, 255, 0.1);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(102, 214, 255, 0.2);
}

/* Knowledge Base Section */
.knowledge-base {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
}

.knowledge-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, var(--circuit-primary) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.03;
    z-index: 1;
}

.knowledge-base .container {
    position: relative;
    z-index: 2;
}

.knowledge-showcase {
    margin-top: 3rem;
}

.knowledge-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.knowledge-source {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.knowledge-source::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(102, 214, 255, 0.05) 100%);
    z-index: 1;
}

.knowledge-source > * {
    position: relative;
    z-index: 2;
}

.knowledge-source:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.knowledge-source i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.knowledge-source span {
    display: block;
    font-weight: 600;
    color: var(--secondary-color);
}

.knowledge-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.ai-brain {
    background: var(--gradient-primary);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ai-brain::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.ai-brain:hover::before {
    transform: translateX(100%);
}

.ai-brain i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.ai-brain span {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Lead Capture Section */
.lead-capture {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.lead-capture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, var(--circuit-primary) 1px, transparent 1px),
        linear-gradient(-30deg, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.03;
    z-index: 1;
}

.lead-capture .container {
    position: relative;
    z-index: 2;
}

.lead-showcase {
    margin-top: 3rem;
}

.lead-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.process-step {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(102, 214, 255, 0.02) 100%);
    z-index: 1;
}

.process-step > * {
    position: relative;
    z-index: 2;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.process-step h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.lead-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lead-features .feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.lead-features .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(102, 214, 255, 0.02) 100%);
    z-index: 1;
}

.lead-features .feature-card > * {
    position: relative;
    z-index: 2;
}

.lead-features .feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.lead-features .feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.lead-features .feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* AI Scheduling Section */
.ai-scheduling {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
}

.ai-scheduling::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 40% 60%, var(--circuit-primary) 1px, transparent 1px),
        radial-gradient(circle at 60% 40%, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.03;
    z-index: 1;
}

.ai-scheduling .container {
    position: relative;
    z-index: 2;
}

.scheduling-showcase {
    margin-top: 3rem;
}

.calendar-demo {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    max-width: 400px;
    margin: 0 auto;
}

.calendar-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.calendar-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
}

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

.time-slot {
    padding: 1rem;
    text-align: center;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.time-slot.available {
    background: rgba(102, 214, 255, 0.1);
    color: var(--primary-color);
    border: 2px solid rgba(102, 214, 255, 0.3);
}

.time-slot.available:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.time-slot.booked {
    background: rgba(229, 229, 229, 0.5);
    color: var(--text-light);
    border: 2px solid var(--border-color);
    cursor: not-allowed;
}

/* QorvoChat Section */
.qorvo-chat {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.qorvo-chat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, var(--circuit-primary) 1px, transparent 1px),
        linear-gradient(180deg, var(--circuit-primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    z-index: 1;
}

.qorvo-chat .container {
    position: relative;
    z-index: 2;
}

.qorvo-chat-showcase {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.chat-demo {
    display: flex;
    justify-content: center;
}

.chat-widget {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-color);
    width: 350px;
    height: 500px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: var(--gradient-primary);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar i {
    font-size: 1.2rem;
}

.chat-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.status {
    font-size: 0.8rem;
    opacity: 0.8;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.bot {
    background: rgba(102, 214, 255, 0.1);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 0.25rem;
}

.message.user {
    background: var(--primary-color);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 0.25rem;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

.chat-input button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-input button:hover {
    background: var(--primary-hover);
}

.chat-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.chat-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.chat-features .feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.chat-features .feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.chat-features .feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 85%, var(--circuit-primary) 1px, transparent 1px),
        radial-gradient(circle at 85% 15%, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.03;
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(102, 214, 255, 0.02) 100%);
    z-index: 1;
}

.pricing-card > * {
    position: relative;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 214, 255, 0.2);
    padding-top: 2.5rem;
}

.pricing-card.featured::before {
    background: linear-gradient(135deg, rgba(102, 214, 255, 0.05) 0%, rgba(10, 64, 88, 0.02) 100%);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 0 0 1rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 3;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.free-trial-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.plan-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    display: block;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    line-height: 1.2;
}

.plan-price::before {
    display: none;
}

.plan-price > * {
    position: static;
    z-index: auto;
}

.price-container {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.8;
    transform: translateY(-0.1em);
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    text-shadow: 0 4px 8px rgba(74, 144, 226, 0.2);
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a9fd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.amount::after {
    content: '';
    position: absolute;
    bottom: -0.2em;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #5a9fd4, var(--primary-color));
    border-radius: 2px;
    opacity: 0.3;
}

.period {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.price-highlight {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--primary-color), #5a9fd4);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse 2s ease-in-out infinite;
}

/* Efeitos especiais para o card featured */
.pricing-card.featured .plan-price {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.08) 0%, rgba(74, 144, 226, 0.04) 100%);
    border: 2px solid rgba(74, 144, 226, 0.2);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.15);
}

.pricing-card.featured .plan-price::before {
    background: linear-gradient(135deg, transparent 0%, rgba(74, 144, 226, 0.05) 50%, transparent 100%);
}

.pricing-card.featured .amount {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a9fd4 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.pricing-card.featured .amount::after {
    background: linear-gradient(90deg, var(--primary-color), #5a9fd4, var(--primary-color));
    opacity: 0.5;
    animation: shimmer 2s ease-in-out infinite;
}

.pricing-card.featured .price-highlight {
    width: 24px;
    height: 24px;
    top: -12px;
    right: -12px;
    opacity: 0.8;
    animation: pulse 1.5s ease-in-out infinite;
}

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

@keyframes shimmer {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(1);
    }
    50% {
        opacity: 0.6;
        transform: scaleX(1.1);
    }
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 20px;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.feature-item.highlight {
    background: rgba(102, 214, 255, 0.05);
    margin: 0 -1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(102, 214, 255, 0.2);
}

.feature-item.highlight i {
    color: var(--secondary-color);
}

.feature-item.highlight span {
    font-weight: 600;
    color: var(--secondary-color);
}

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

.pricing-btn {
    width: 100%;
    justify-content: center;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(102, 214, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(102, 214, 255, 0.2);
}

.pricing-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-note i {
    color: var(--primary-color);
}

/* Security Section */
.security {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
}

.security::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 40% 60%, var(--circuit-primary) 1px, transparent 1px),
        radial-gradient(circle at 60% 40%, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.03;
    z-index: 1;
}

.security .container {
    position: relative;
    z-index: 2;
}

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

.security-card {
    text-align: center;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
}

.security-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.security-card:hover .security-icon::before {
    transform: translateX(100%);
}

.security-icon i {
    font-size: 2rem;
    color: var(--white);
}

.security-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.security-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.security-badge i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.security-badge p {
    font-weight: 600;
    color: var(--text-primary);
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.cta .btn-primary:hover {
    background: var(--gray-light);
    color: var(--secondary-color);
    transform: translateY(-2px);
}



/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background: var(--secondary-color);
    color: var(--white);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, var(--circuit-primary) 1px, transparent 1px),
        linear-gradient(180deg, var(--circuit-primary) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

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

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column a,
.footer-column span {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column span {
    cursor: default;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

/* Menu Hambúrguer */
.mobile-menu-toggle {
    display: none;
        flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu Mobile */
@media (max-width: 720px) {
    /* Prevenir scroll horizontal em mobile */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 2rem;
        display: flex !important;
    }

    .nav-menu.active {
        right: 0;
        display: flex !important;
    }

    .nav-menu .nav-actions {
        flex-direction: column;
        gap: 1.5rem;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
    }

    .nav-menu .btn {
        width: 200px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 0.75rem;
        font-weight: 600;
        text-align: center;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: var(--primary-color);
        color: var(--white);
        border: 2px solid var(--primary-color);
        cursor: pointer;
    }

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

    /* Overlay para fechar o menu */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero .container {
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .hero-content {
        padding-right: 1rem;
    }
    
    .hero-visual {
        padding-left: 1rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .demo-phone {
        max-width: 350px;
    }
    
    .bubble-1 {
        left: -5%;
    }
    
    .bubble-2 {
        right: -10%;
    }
    
    .bubble-3 {
        left: 0%;
    }
    
    .bubble-4 {
        right: -5%;
    }
}

@media (max-width: 720px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .nav-container > .nav-actions {
        display: none !important;
    }

    .hero {
        padding: 3rem 0 1rem;
        margin-top: 4.5rem;
        min-height: auto;
        text-align: center;
    }
    
    .highlights {
        padding: 2rem 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .title-line-2 {
        min-height: 1.3em;
    }

    .hero-title .changing-text {
        min-width: 150px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .hero-stats .stat-item {
        flex: 1;
        min-width: 120px;
    }
    
    /* Responsividade para cards de estatísticas */
    .stat-card-small {
        min-width: 180px;
        max-width: 220px;
        padding: 0.875rem 1rem;
    }
    
    .stat-card-featured {
        min-width: 180px;
        max-width: 220px;
        padding: 0.875rem 1rem;
    }
    
    .stat-icon-featured {
        width: 35px;
        height: 35px;
    }
    
    .stat-icon-featured i {
        font-size: 0.875rem;
    }
    
    .stat-number-featured {
        font-size: 0.8rem;
    }
    
    .stat-label-featured {
        font-size: 0.7rem;
    }

    .hero-stats .stat-number {
        font-size: 1.5rem;
    }

    .hero-stats .stat-label {
        font-size: 0.8rem;
    }

    .hero-visual {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .steps {
        gap: 1rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .company-logos {
        gap: 1rem;
    }

    .logo-item {
        padding: 0.5rem;
        font-size: 0.875rem;
    }

    .stats {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .cta-content p {
        font-size: 1.125rem;
    }

    .pricing {
        padding: 3rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
        border-radius: 2rem;
        box-shadow: 
            0 20px 40px rgba(0, 0, 0, 0.1),
            0 8px 16px rgba(0, 0, 0, 0.06);
        border: 3px solid rgba(74, 144, 226, 0.1);
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    }

    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, var(--primary-color), #5a9fd4, var(--primary-color));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

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

    .pricing-card.featured {
        transform: scale(1.02);
        border: 3px solid var(--primary-color);
        box-shadow: 
            0 25px 50px rgba(74, 144, 226, 0.2),
            0 12px 24px rgba(0, 0, 0, 0.1);
        background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
        padding-top: 4.5rem;
    }

    .pricing-card.featured::before {
        transform: scaleX(1);
        background: linear-gradient(90deg, var(--primary-color), #5a9fd4, var(--primary-color));
    }

    .pricing-header {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
        border-bottom: 2px solid rgba(74, 144, 226, 0.1);
    }

    .plan-name {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--text-primary);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .plan-description {
        font-size: 1rem;
        color: var(--text-secondary);
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .plan-price {
        margin: 1.5rem 0;
        padding: 1.5rem 1rem;
        border-radius: 1.2rem;
    }

    .price-container {
        gap: 0.2rem;
        margin-bottom: 0.3rem;
    }

    .currency {
        font-size: 1.3rem;
        font-weight: 700;
    }

    .amount {
        font-size: 3.2rem;
        font-weight: 900;
        text-shadow: 0 3px 6px rgba(74, 144, 226, 0.2);
    }

    .period {
        font-size: 1rem;
        font-weight: 600;
    }

    .price-highlight {
        width: 16px;
        height: 16px;
        top: -8px;
        right: -8px;
    }

    .pricing-features {
        margin-bottom: 2.5rem;
    }

    .feature-item {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(74, 144, 226, 0.1);
        display: flex;
        align-items: center;
        gap: 1rem;
        transition: all 0.3s ease;
    }

    .feature-item:last-child {
        border-bottom: none;
    }

    .feature-item:hover {
        background: rgba(74, 144, 226, 0.05);
        border-radius: 0.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .feature-item i {
        font-size: 1.2rem;
        color: var(--primary-color);
        min-width: 20px;
    }

    .feature-item span {
        font-size: 1rem;
        color: var(--text-primary);
        font-weight: 500;
        line-height: 1.4;
    }

    .pricing-btn {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }

    .pricing-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 ease;
    }

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

    .pricing-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
    }

    .popular-badge {
        font-size: 0.9rem;
        font-weight: 700;
        padding: 0.8rem 2rem;
        border-radius: 0 0 1rem 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    }

    /* Animações especiais para mobile */
    .pricing-card {
        animation: slideInUp 0.6s ease-out;
    }

    .pricing-card:nth-child(1) {
        animation-delay: 0.1s;
    }

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

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

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

    /* Efeito de brilho no hover */
    .pricing-card::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.1), transparent);
        transition: left 0.6s ease;
        z-index: 1;
    }

    .pricing-card:hover::after {
        left: 100%;
    }

    /* Efeito de pulso para o card featured */
    .pricing-card.featured {
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 
                0 25px 50px rgba(74, 144, 226, 0.2),
                0 12px 24px rgba(0, 0, 0, 0.1);
        }
        50% {
            box-shadow: 
                0 30px 60px rgba(74, 144, 226, 0.3),
                0 15px 30px rgba(0, 0, 0, 0.15);
        }
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 1.5rem 0 0.5rem;
        margin-top: 3rem;
        min-height: auto;
    }
    
    .highlights {
        padding: 1.5rem 0;
    }

    .hero .container {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Corrigir elementos que podem causar scroll horizontal */
    .hero-title,
    .hero-subtitle,
    .section-title,
    .section-subtitle {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Garantir que imagens não ultrapassem a largura */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Corrigir tabelas responsivas */
    .pricing-table {
        width: 100%;
        overflow-x: visible;
        -webkit-overflow-scrolling: touch;
    }
    
    .table-header {
        display: none; /* Esconder header em mobile */
    }
    
    .table-row {
        display: block;
        width: 100%;
        min-width: auto;
    }
    
    /* Corrigir cards e containers */
    .expand-card,
    .industry-card,
    .platform-feature,
    .comparison-card,
    .security-card,
    .pricing-card {
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .title-line-2 {
        min-height: 1.2em;
    }

    .hero-title .changing-text {
        min-width: 120px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
        max-width: 100%;
        line-height: 1.4;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .btn-large {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
    }

    .video-placeholder {
        height: 250px;
    }

    .video-placeholder i {
        font-size: 3rem;
    }

    .video-placeholder p {
        font-size: 1rem;
    }

    .pricing {
        padding: 2rem 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }

    .pricing-card {
        padding: 1.5rem 1rem;
        border-radius: 1.5rem;
        border: 2px solid rgba(74, 144, 226, 0.1);
    }

    .pricing-card.featured {
        transform: scale(1.01);
        border: 2px solid var(--primary-color);
        padding-top: 3.5rem;
    }

    .plan-name {
        font-size: 1.5rem;
        font-weight: 800;
    }

    .plan-description {
        font-size: 0.9rem;
    }

    .plan-price {
        margin: 1.2rem 0;
        padding: 1.2rem 0.8rem;
        border-radius: 1rem;
    }

    .currency {
        font-size: 1.2rem;
    }

    .amount {
        font-size: 2.8rem;
        font-weight: 900;
        text-shadow: 0 2px 4px rgba(74, 144, 226, 0.2);
    }

    .period {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .price-highlight {
        width: 14px;
        height: 14px;
        top: -7px;
        right: -7px;
    }

    .feature-item {
        padding: 0.8rem 0;
        gap: 0.8rem;
    }

    .feature-item i {
        font-size: 1.1rem;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

    .pricing-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 0.8rem;
    }



    .feature-item span {
        font-size: 0.85rem;
    }

    .pricing-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ai-agent-demo {
        gap: 1rem;
    }

    .agent-card {
        padding: 1.5rem 1rem;
    }

    .integration-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .knowledge-demo {
        flex-direction: column;
        gap: 1rem;
    }

    .lead-process {
        flex-direction: column;
        gap: 1rem;
    }

    .process-arrow {
        transform: rotate(90deg);
    }

    .lead-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .qorvo-chat-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .chat-widget {
        width: 100%;
        max-width: 350px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 0.75rem;
    }
    
    /* Responsividade mobile para cards de estatísticas */
    .stat-card-small {
        min-width: 160px;
        max-width: 200px;
        padding: 0.75rem 0.875rem;
    }
    
    .stat-card-featured {
        min-width: 160px;
        max-width: 200px;
        padding: 0.75rem 0.875rem;
    }
    
    .stat-icon-featured {
        width: 32px;
        height: 32px;
    }
    
    .stat-icon-featured i {
        font-size: 0.875rem;
    }
    
    .stat-number-featured {
        font-size: 0.75rem;
    }
    
    .stat-label-featured {
        font-size: 0.65rem;
    }
    
    .stat-icon-small {
        width: 35px;
        height: 35px;
    }
    
    .stat-icon-small i {
        font-size: 0.875rem;
    }
    
    .stat-number-small {
        font-size: 1.1rem;
    }
    
    .stat-label-small {
        font-size: 0.7rem;
    }

    /* Melhorar responsividade geral para mobile */
    .section {
        padding: 2.5rem 0;
        max-width: 100%;
        overflow-x: hidden;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    /* Melhorar espaçamento dos cards */
    .expand-card,
    .industry-card,
    .platform-feature,
    .comparison-card,
    .security-card {
        padding: 1.25rem 0.875rem;
        max-width: 100%;
        word-wrap: break-word;
    }

    .expand-card h3,
    .industry-card h4,
    .platform-feature p,
    .comparison-card h3,
    .security-card h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        word-wrap: break-word;
    }

    .expand-card p,
    .industry-card p,
    .comparison-card p,
    .security-card p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    /* Prevenir scroll horizontal em elementos específicos */
    .container,
    .calculator-container,
    .pricing-table,
    .table-header,
    .table-row {
        max-width: 100%;
    }
    
    /* Corrigir grids que podem causar overflow */
    .expand-grid,
    .industries-grid,
    .platform-features,
    .comparison-grid,
    .integrations-grid,
    .pricing-grid,
    .security-grid {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-actions {
        justify-content: center;
    }



    .expand-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .industries-layout {
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .industries-mandala {
        width: 350px;
        height: 350px;
        padding: 1rem;
    }
    
    .mandala-center {
        width: 140px;
        height: 140px;
    }
    
    .center-icon {
        font-size: 2rem;
    }
    
    .center-text h3 {
        font-size: 1.1rem;
    }
    
    .center-text p {
        font-size: 0.7rem;
    }
    
    .center-text span {
        font-size: 0.8rem;
    }
    
    .orbit-1 {
        width: 220px;
        height: 220px;
    }
    
    .orbit-2 {
        width: 300px;
        height: 300px;
    }
    
    .industry-item {
        width: 70px;
        height: 70px;
        border-radius: 1rem;
    }
    
    .industry-item .industry-icon {
        font-size: 1.3rem;
    }
    
    .item-label {
        font-size: 0.6rem;
    }
    
    .industries-content {
        padding: 0 1rem;
        display: block !important;
        visibility: visible !important;
    }
    
    .content-header h3 {
        font-size: 1.6rem;
    }
    
    .content-header p {
        font-size: 1rem;
    }

    .industries-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        display: grid !important;
    }
    
    .industry-card {
        padding: 1.5rem;
        gap: 1rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.6rem;
    }
    
    .card-content h4 {
        font-size: 1.2rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .industry-list-item {
        padding: 1rem;
    }
    
    .list-icon {
        width: 40px;
        height: 40px;
        margin-right: 0.8rem;
    }
    
    .list-icon i {
        font-size: 1.2rem;
    }
    
    .list-content h4 {
        font-size: 1rem;
    }
    
    .list-content p {
        font-size: 0.8rem;
    }
    
    .industry-detail {
        padding: 1.5rem;
    }
    
    .detail-content h3 {
        font-size: 1.3rem;
    }
    
    .detail-content p {
        font-size: 0.9rem;
    }

    .customization-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .platform-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

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

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight-card,
.feature-card,
.benefit-card,
.advantage-card,
.testimonial-card,
.security-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estados de foco para acessibilidade */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Melhorias de performance */
.highlight-card,
.feature-card,
.benefit-card,
.advantage-card,
.testimonial-card,
.security-card {
    will-change: transform;
}

/* Gradientes animados */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Animações específicas da Qorvo */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.logo-icon {
    animation: pulse 3s ease-in-out infinite;
}

/* Efeito de brilho nos ícones */
@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Animações específicas para pricing */
@keyframes pricingGlow {
    0%, 100% {
        box-shadow: 0 20px 40px rgba(102, 214, 255, 0.2);
    }
    50% {
        box-shadow: 0 25px 50px rgba(102, 214, 255, 0.3);
    }
}

.pricing-card.featured {
    animation: pricingGlow 3s ease-in-out infinite;
}

/* Efeito de hover nos cards de preços */
.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 214, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.pricing-card:hover::after {
    left: 100%;
}

/* Animação de entrada para os cards */
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.1s;
}

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

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

/* Estados selecionados */
.agent-card.selected {
    border-color: var(--primary-color);
    background: rgba(102, 214, 255, 0.05);
    transform: scale(1.05);
}

.time-slot.selected {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    transform: scale(1.05);
}

/* Animações específicas para as novas seções */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Aplicar animações específicas */
.feature-info {
    animation: slideInLeft 0.8s ease-out;
}

.feature-visual {
    animation: slideInRight 0.8s ease-out;
}

.ai-brain {
    animation: bounceIn 1s ease-out;
}

/* Efeito de typing para mensagens do chat */
@keyframes typing {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.message.bot::after {
    content: '...';
    animation: typing 1.5s infinite;
}



/* Efeito de digitação */
.hero-title .changing-text {
    position: relative;
    display: inline-block;
    min-width: 200px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .changing-text::after {
    content: '|';
    color: var(--primary-color);
    animation: blink 1s infinite;
    margin-left: 2px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.typing-text {
    opacity: 0;
    animation: fadeInText 0.5s ease forwards;
}

@keyframes fadeInText {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-demo {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.demo-phone {
    background: var(--white);
    border-radius: 2rem;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--border-color);
    overflow: hidden;
    position: relative;
    z-index: 2;
    max-width: 400px;
    width: 100%;
}

.phone-header {
    background: var(--gradient-primary);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
}

.phone-dots {
    display: flex;
    gap: 0.25rem;
}

.phone-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
}

.phone-title {
    font-weight: 600;
    font-size: 0.9rem;
}

.phone-content {
    background: var(--gray-light);
    height: 600px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    contain: layout;
}

.chat-messages-container {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
    max-height: calc(600px - 80px);
    min-height: 0;
    position: relative;
    z-index: 1;
    contain: layout;
}

/* Garantir que mensagens não apareçam fora do container */
.phone-content > .chat-message {
    display: none !important;
}

.chat-messages-container::-webkit-scrollbar {
    width: 4px;
}

.chat-messages-container::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages-container::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 2px;
}

.chat-input-area {
    padding: 1rem;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    height: 80px;
    min-height: 80px;
    max-height: 80px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.chat-message {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    flex-shrink: 0;
    min-height: fit-content;
    position: relative;
    z-index: 1;
}

.chat-message.user {
    justify-content: flex-end;
}

.message-avatar {
    width: 32px;
    height: 32px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message-avatar i {
    font-size: 0.8rem;
    color: var(--white);
}

.message-content {
    max-width: 70%;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    position: relative;
}

.chat-message.user .message-content {
    background: var(--primary-color);
    color: var(--white);
}

.message-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.plan-features {
    margin: 0.5rem 0;
    padding-left: 0;
    list-style: none;
}

.plan-features li {
    font-size: 0.85rem;
    margin: 0.25rem 0;
    padding-left: 0.5rem;
}

.chat-input {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 0.5rem 1rem;
}

.message-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.9rem;
    background: transparent;
}

.send-button {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-button:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

.send-button:active {
    transform: scale(0.95);
}

/* Video Popup */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.video-popup {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.video-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-popup-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to { 
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.25rem;
    display: block;
}

.quick-replies {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quick-reply {
    background: rgba(102, 214, 255, 0.1);
    border: 1px solid rgba(102, 214, 255, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-reply:hover {
    background: var(--primary-color);
    color: var(--white);
}

.typing-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.typing-dots {
    display: flex;
    gap: 0.25rem;
}

.typing-dots span {
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

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

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

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.5;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.demo-features {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.feature-bubble {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    border: 2px solid var(--border-color);
    animation: float 3s ease-in-out infinite;
}

.feature-bubble i {
    color: var(--primary-color);
    font-size: 1rem;
}

.bubble-1 {
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.bubble-2 {
    top: 30%;
    right: -10%;
    animation-delay: 1s;
}

.bubble-3 {
    bottom: 30%;
    left: 0%;
    animation-delay: 2s;
}

.bubble-4 {
    bottom: 10%;
    right: -5%;
    animation-delay: 1.5s;
}

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

/* Expand Team Section */
.expand-team {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
}

.expand-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--circuit-primary) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.03;
    z-index: 1;
}

.expand-team .container {
    position: relative;
    z-index: 2;
}

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

.expand-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(102, 214, 255, 0.02) 100%);
    z-index: 1;
}

.expand-card > * {
    position: relative;
    z-index: 2;
}

.expand-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.expand-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.expand-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.expand-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.expand-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Industries Section */
.industries {
    padding: 6rem 0;
    background: var(--gray-light);
    overflow: hidden;
}

.industries-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.mandala-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.industries-mandala {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    padding: 2rem;
    margin: 0 auto;
}

.mandala-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #5a9fd4);
    box-shadow: 
        0 20px 60px rgba(74, 144, 226, 0.3),
        0 8px 20px rgba(0, 0, 0, 0.1),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.center-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.center-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.center-text {
    text-align: center;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.center-text h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.center-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
    line-height: 1;
}

.center-text span {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.mandala-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: rotate 60s linear infinite;
}

.orbit-1 {
    width: 300px;
    height: 300px;
}

.orbit-2 {
    width: 420px;
    height: 420px;
    animation-direction: reverse;
    animation-duration: 80s;
}

.orbit-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(74, 144, 226, 0.15);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    box-shadow: 
        0 0 20px rgba(74, 144, 226, 0.1),
        inset 0 0 20px rgba(74, 144, 226, 0.05);
}

.industry-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 4px 8px rgba(0, 0, 0, 0.05),
        0 0 0 2px rgba(74, 144, 226, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.industry-item:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        0 0 0 3px var(--primary-color);
    z-index: 20;
}

.industry-item.active {
    transform: scale(1.15) translateY(-8px);
    background: linear-gradient(135deg, var(--primary-color), #5a9fd4);
    color: var(--white);
    z-index: 20;
    box-shadow: 
        0 25px 50px rgba(74, 144, 226, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.1),
        0 0 0 3px var(--primary-color);
}

.item-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-item:hover .item-glow,
.industry-item.active .item-glow {
    opacity: 1;
}

.industry-item .industry-icon {
    font-size: 1.6rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    margin-bottom: 0.2rem;
}

.industry-item:hover .industry-icon,
.industry-item.active .industry-icon {
    color: var(--white);
    transform: scale(1.1);
}

.item-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    text-align: center;
    line-height: 1;
}

.industry-item:hover .item-label,
.industry-item.active .item-label {
    color: var(--white);
}

/* Posicionamento dos itens na órbita 1 */
.orbit-1 .industry-item:nth-child(2) {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-1 .industry-item:nth-child(3) {
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
}

.orbit-1 .industry-item:nth-child(4) {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

/* Posicionamento dos itens na órbita 2 */
.orbit-2 .industry-item:nth-child(2) {
    top: -50px;
    left: 25%;
    transform: translateX(-50%);
}

.orbit-2 .industry-item:nth-child(3) {
    top: 25%;
    right: -50px;
    transform: translateY(-50%);
}

.orbit-2 .industry-item:nth-child(4) {
    bottom: -50px;
    right: 25%;
    transform: translateX(50%);
}

.industry-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 30;
    margin-bottom: 0.5rem;
}

.industry-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-primary);
}

.industry-item:hover .industry-tooltip {
    opacity: 1;
    visibility: visible;
}

.industries-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 2rem;
}

.content-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.content-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.content-header p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-card {
    background: var(--white);
    border-radius: 1.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(74, 144, 226, 0.1);
    overflow: hidden;
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #5a9fd4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.18),
        0 8px 16px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

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

.industry-card.active {
    background: linear-gradient(135deg, #2c5aa0, #4a90e2);
    color: var(--white);
    border-color: #2c5aa0;
    transform: translateY(-12px);
    box-shadow: 
        0 24px 72px rgba(44, 90, 160, 0.4),
        0 12px 24px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 255, 255, 0.1);
}

.industry-card.active::before {
    transform: scaleX(1);
    background: rgba(255, 255, 255, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    align-self: center;
    border: 2px solid rgba(74, 144, 226, 0.3);
    box-shadow: 
        0 4px 12px rgba(74, 144, 226, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), #5a9fd4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover .card-icon::before {
    opacity: 0.2;
}

.industry-card.active .card-icon {
    background: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.industry-card.active .card-icon::before {
    opacity: 0;
}

.card-icon i {
    font-size: 2rem;
    color: #1976d2;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.industry-card:hover .card-icon i {
    transform: scale(1.1);
}

.industry-card.active .card-icon i {
    color: #1976d2;
    transform: scale(1.1);
}

.card-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    transition: color 0.3s ease;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.industry-card.active .card-content h4 {
    color: var(--white);
}

.card-description {
    font-size: 1rem;
    margin: 0;
    color: #4a4a4a;
    transition: color 0.3s ease;
    line-height: 1.5;
    font-weight: 500;
}

.industry-card.active .card-description {
    color: rgba(255, 255, 255, 0.95);
}

.list-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
}

.industry-list-item:hover .list-arrow {
    background: rgba(74, 144, 226, 0.2);
    transform: scale(1.1);
}

.industry-list-item.active .list-arrow {
    background: rgba(255, 255, 255, 0.2);
}

.list-arrow i {
    font-size: 1.1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.industry-list-item.active .list-arrow i {
    color: var(--white);
    transform: translateX(3px);
}

.card-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.industry-card.active .card-detail {
    max-height: 200px;
    padding: 1.5rem;
}

.card-detail p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    text-align: left;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.industry-card.active .card-detail p {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.mandala-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 3s;
    animation-duration: 6s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 10%;
    animation-delay: 4s;
    animation-duration: 8s;
}

.particle:nth-child(6) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    animation-duration: 7s;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

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

.industry-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(102, 214, 255, 0.02) 100%);
    z-index: 1;
}

.industry-card > * {
    position: relative;
    z-index: 2;
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.industry-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.industry-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.industry-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Customization Section */
.customization {
    padding: 6rem 0;
    background: var(--white);
}

.customization .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Journey Path */
.customization-journey {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.journey-path {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.path-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #5a9fd4, var(--primary-color));
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 1;
}

.path-dots {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    z-index: 2;
}

.path-dot {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.path-dot.active {
    background: linear-gradient(135deg, var(--primary-color), #5a9fd4);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.3);
}

.path-dot:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.dot-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.dot-inner i {
    font-size: 1.5rem;
    color: #666;
    transition: color 0.3s ease;
}

.path-dot.active .dot-inner i {
    color: var(--white);
}

/* Journey Steps */
.journey-steps {
    position: relative;
    min-height: 400px;
}

.journey-step {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.journey-step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    min-width: 80px;
}



.step-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.step-content h3 i {
    font-size: 2rem;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #5a9fd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.2));
}

.step-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.step-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 20px;
}

.detail-item span {
    font-weight: 500;
    color: var(--text-primary);
}

/* Navigation */
.journey-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 1.5rem;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.nav-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.step-indicators {
    display: flex;
    gap: 1rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

/* Responsividade para a trilha de customização */
@media (max-width: 720px) {
    .customization {
        padding: 4rem 0;
    }
    
    .customization .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }
    
    .journey-path {
        margin-bottom: 1.5rem;
    }
    
    .path-dot {
        width: 60px;
        height: 60px;
    }
    
    .dot-inner i {
        font-size: 1.2rem;
    }
    
    .journey-steps {
        min-height: 350px;
    }
    
    .step-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    

    
    .step-content h3 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .step-content h3 i {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1.1rem;
    }
    
    .step-details {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .detail-item {
        padding: 0.8rem;
    }
    
    .customization {
        padding: 3rem 0 4rem 0;
    }
    
    .platform {
        padding: 9rem 0 4rem 0;
    }

    .customization .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .journey-path {
        margin-bottom: 2rem;
    position: relative;
    }

    .journey-path::after {
        content: 'Toque nos ícones para navegar';
        position: absolute;
        bottom: -2rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.8rem;
        color: var(--text-secondary);
        opacity: 0.7;
        text-align: center;
        animation: fadeInOut 3s ease-in-out infinite;
    }

    @keyframes fadeInOut {
        0%, 100% {
            opacity: 0.3;
        }
        50% {
            opacity: 0.8;
        }
    }

    .path-dot {
        width: 50px;
        height: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .path-dot:hover {
        transform: scale(1.1);
    }

    .path-dot:not(.active) {
        animation: pulseHint 2s ease-in-out infinite;
    }

    .dot-inner i {
        font-size: 1rem;
    }

    @keyframes pulseHint {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.4);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 0 0 8px rgba(74, 144, 226, 0.1);
        }
    }

        .journey-steps {
        min-height: 300px;
        margin-bottom: 2rem;
        position: relative;
        z-index: 1;
        display: block;
    }

    .step-header {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .step-content h3 i {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .step-details {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .detail-item {
        padding: 0.8rem;
        text-align: center;
    }

    .journey-navigation {
        display: none;
    }
    
    .nav-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
        border-radius: 0.8rem;
        background: var(--white);
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        box-sizing: border-box;
        min-height: 48px;
        touch-action: manipulation;
    }

    .nav-btn:hover:not(:disabled) {
        background: var(--primary-color);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    }

    .nav-btn:active {
        transform: translateY(0);
        box-shadow: 0 2px 8px rgba(74, 144, 226, 0.2);
    }

    .nav-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        border-color: #ccc;
        color: #ccc;
        transform: none;
        box-shadow: none;
    }
    
    .step-indicators {
        order: -1;
        justify-content: center;
        gap: 1.5rem;
    }

    .indicator {
        width: 16px;
        height: 16px;
    }


}

@media (max-width: 480px) {
    .customization {
        padding: 2rem 0 3rem 0;
    }
    
    .platform {
        padding: 8rem 0 3rem 0;
    }

    .customization .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .journey-path {
        margin-bottom: 1.5rem;
        position: relative;
    }

    .journey-path::after {
        content: 'Toque nos ícones para navegar';
        position: absolute;
        bottom: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.7rem;
        color: var(--text-secondary);
        opacity: 0.7;
        text-align: center;
        animation: fadeInOut 3s ease-in-out infinite;
    }

    .path-dot {
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .path-dot:hover {
        transform: scale(1.1);
    }

    .path-dot:not(.active) {
        animation: pulseHint 2s ease-in-out infinite;
    }

    .dot-inner i {
        font-size: 0.9rem;
    }

    .journey-steps {
        min-height: 250px;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
        display: block;
    }

    .step-header {
        margin-bottom: 1rem;
    }

    .step-number {
        font-size: 1.8rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content h3 i {
        font-size: 1rem;
    }

    .step-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .step-details {
        gap: 0.6rem;
    }

    .detail-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }

    .journey-navigation {
        display: none;
    }
    
    .nav-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        min-height: 44px;
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        touch-action: manipulation;
    }
    
    .step-indicators {
        gap: 1rem;
    }

    .indicator {
        width: 14px;
        height: 14px;
    }


}

.customization::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, var(--circuit-primary) 1px, transparent 1px),
        radial-gradient(circle at 70% 30%, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.03;
    z-index: 1;
}

.customization .container {
    position: relative;
    z-index: 2;
}

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

.custom-step {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.custom-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(102, 214, 255, 0.02) 100%);
    z-index: 1;
}

.custom-step > * {
    position: relative;
    z-index: 2;
}

.custom-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
}

.custom-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.custom-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}



/* Platform Section */
.platform {
    padding: 10rem 0 5rem 0;
    background: var(--white);
    position: relative;
}

.platform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(30deg, var(--circuit-primary) 1px, transparent 1px),
        linear-gradient(-30deg, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.03;
    z-index: 1;
}

.platform .container {
    position: relative;
    z-index: 2;
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.platform-feature:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.platform-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.platform-feature p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.platform-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Comparison Section */
.comparison {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 40% 60%, var(--circuit-primary) 1px, transparent 1px),
        radial-gradient(circle at 60% 40%, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 90px 90px;
    opacity: 0.03;
    z-index: 1;
}

.comparison .container {
    position: relative;
    z-index: 2;
}

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

.comparison-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.comparison-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(102, 214, 255, 0.02) 100%);
    z-index: 1;
}

.comparison-card > * {
    position: relative;
    z-index: 2;
}

.comparison-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.ai-card {
    border-color: var(--primary-color);
}

.chatbot-card {
    border-color: var(--secondary-color);
}

.card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.ai-card .card-icon {
    background: var(--gradient-primary);
}

.chatbot-card .card-icon {
    background: var(--gradient-secondary);
}

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

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Montserrat', sans-serif;
}

.card-features {
    padding: 1rem 2rem 2rem;
}

.card-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-features .feature-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.card-features .feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Integrations Section */
.integrations {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.integrations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, var(--circuit-primary) 1px, transparent 1px),
        linear-gradient(180deg, var(--circuit-primary) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    z-index: 1;
}

.integrations .container {
    position: relative;
    z-index: 2;
}

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

.integration-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    text-align: center;
}

.integration-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.integration-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.integration-item span {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.integrations-cta {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--gray-light);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--circuit-primary) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--circuit-secondary) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.03;
    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

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

.faq-item {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(102, 214, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 2rem;
    max-height: 200px;
    opacity: 1;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

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

.final-cta .section-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.final-cta .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-actions {
    margin-top: 2rem;
}

/* Calculator CTA Section */
.calculator-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.calculator-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(102, 214, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(10, 64, 88, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.calculator-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.calculator-cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.calculator-cta-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 500px;
}

.calculator-cta-actions {
    flex-shrink: 0;
}

@media (max-width: 720px) {
    .calculator-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .calculator-cta-text h2 {
        font-size: 2rem;
    }
    
    .calculator-cta-text p {
        font-size: 1.1rem;
    }
}

/* ========================================
   CALCULATOR PAGE STYLES
   ======================================== */

/* Calculator Header Section */
.calculator-header {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.calculator-header-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.calculator-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.calculator-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Calculator Section */
.calculator-section {
    padding: 2rem 0 4rem;
    background: var(--white);
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.calculator-form h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.form-section h3 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Pricing Table */
.pricing-table {
    background: var(--white);
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.feature-column,
.plan-column {
    padding: 1.25rem 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-column {
    text-align: left;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-column:last-child {
    border-right: none;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.table-row.features-row {
    grid-template-columns: 2fr 2fr;
}

.table-row:hover {
    background: rgba(102, 214, 255, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.base-plan {
    background: none;
    border-bottom: none;
}

.feature-cell,
.plan-cell {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    border-right: none;
    min-height: 60px;
}

.plan-cell:last-child {
    border-right: none;
}

.feature-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
}

.feature-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.feature-info small {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.25rem;
}

/* Channels Icons */
.channels-icons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.channels-icons i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.channels-icons .fa-whatsapp {
    color: #25D366;
}

.channels-icons .fa-instagram {
    color: #E4405F;
}

.channels-icons .fa-facebook-messenger {
    color: #0084FF;
}

.plan-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    display: block;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    line-height: 1.2;
}

.plan-cell small {
    font-size: 0.85rem;
    color: var(--text-secondary) !important;
    display: block;
    margin-top: 0.5rem;
    font-weight: 500;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    line-height: 1.3;
}

.plan-status {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.85rem;
    padding: 0;
    background: none;
    border: none;
    text-align: left;
    margin-top: 0.5rem;
}

.input-group-simple {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

    /* REMOVER COMPLETAMENTE inputs antigos - apenas number-input-group */
    .input-group-simple input[type="number"] {
        display: none !important;
    }
    
    .input-group-simple .number-input-group input[type="number"] {
        display: block !important;
    }
    
    /* Garantir que apenas o number-input-group seja visível */
    .input-group-simple > input {
        display: none !important;
    }
    
    .input-group-simple .number-input-group {
        display: flex !important;
    }

/* Remover estilos conflitantes - apenas number-input-group será usado */

.input-group-simple small {
    font-size: 0.8rem;
    color: var(--text-light) !important;
    text-align: center;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    line-height: 1.3;
    margin-top: 0.25rem;
}

/* Estilos para botões de + e - */
.number-input-group {
    display: flex;
    align-items: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: white;
    overflow: hidden;
    transition: all 0.3s ease;
}

.number-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 214, 255, 0.1);
    transform: translateY(-1px);
}

.number-btn {
    background: var(--gray-light);
    border: none;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.number-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.number-btn:active {
    transform: scale(0.95);
}

.minus-btn {
    border-right: 1px solid var(--border-color);
}

.plus-btn {
    border-left: 1px solid var(--border-color);
}

.number-input-group input {
    width: 80px;
    padding: 0.5rem;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    background: transparent;
    outline: none;
    /* Remover setinhas nativas do input number */
    -moz-appearance: textfield;
    -webkit-appearance: none;
    appearance: none;
}

.number-input-group input::-webkit-outer-spin-button,
.number-input-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.number-input-group input:focus {
    outline: none;
}

.features-simple {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    align-items: flex-start;
    justify-content: center;
}

.feature-simple {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
    min-height: 60px;
}

.feature-simple:last-child {
    margin-bottom: 0;
}

.feature-simple:hover {
    background: rgba(102, 214, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(102, 214, 255, 0.2);
}

.feature-simple input[type="checkbox"] {
    margin-right: 1rem;
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
    flex-shrink: 0;
}

.feature-simple label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    flex: 1;
    font-size: 1rem;
    gap: 1rem;
}

.feature-simple label span:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

.feature-simple .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
    min-width: 80px;
    text-align: right;
}


/* Plan Summary */
.plan-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.summary-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.summary-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 700;
}

.total-label {
    font-size: 1rem;
    font-weight: 600;
}

.total-price {
    font-size: 1.75rem;
    font-weight: 800;
}

.summary-breakdown {
    margin-bottom: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-name {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.breakdown-name span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.breakdown-name small {
    font-size: 0.8rem;
    color: var(--text-light);
}

.breakdown-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.summary-plan-details {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.summary-plan-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Mobile Summary Toggle - Removed - No longer needed */

.plan-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.plan-detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.plan-detail-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(102, 214, 255, 0.1);
}

.plan-detail-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.plan-detail-item span:first-of-type {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    min-width: 120px;
}

.plan-detail-item span:last-of-type {
    color: var(--text-secondary);
    font-size: 0.9rem;
    flex: 1;
}

.plan-summary-simple {
    text-align: center;
    padding: 1rem;
}

.plan-summary-simple p {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.5;
}

.plan-summary-simple strong {
    color: var(--primary-color);
}

/* Calculator FAQ */
.calculator-faq {
    padding: 4rem 0;
    background: var(--gray-light);
}

.calculator-faq .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .plan-summary {
        position: static;
        margin-top: 2rem;
        max-width: 100%;
        padding: 2rem;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
    }
    
    .calculator-section {
        padding-bottom: 2rem;
    }
    
    /* Melhorar responsividade da tabela */
    .pricing-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table-header {
        min-width: 600px;
    }
    
    .table-row {
        min-width: 600px;
    }
}

@media (max-width: 720px) {
    /* MOBILE CALCULATOR - VERSÃO LIMPA */
    
    /* Reset básico */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
    }
    
    .container {
        max-width: 100% !important;
        padding: 0 1rem !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    /* Calculator Header */
    .calculator-header {
        padding: 1.5rem 0 !important;
        width: 100% !important;
    }
    
    .calculator-header h1 {
        font-size: 2rem !important;
        word-wrap: break-word !important;
        margin-bottom: 0.5rem !important;
    }
    
    .calculator-header p {
        font-size: 1rem !important;
        word-wrap: break-word !important;
    }
    
    /* Calculator Form */
    .calculator-form {
        padding: 1rem !important;
        width: 100% !important;
    }
    
    /* Plan Summary */
    .plan-summary {
        padding: 1.5rem !important;
        margin-top: 1.5rem !important;
        width: 100% !important;
    }
    
    /* Pricing Table - Layout em Cards */
    .pricing-table {
        display: block !important;
        width: 100% !important;
    }
    
    .table-header {
        display: none !important;
    }
    
    .table-row {
        display: block !important;
        width: 100% !important;
        margin-bottom: 1.5rem !important;
        background: white !important;
        border-radius: 8px !important;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
        overflow: hidden !important;
    }
    
    /* Feature Cell */
    .feature-cell {
        background: var(--gray-light) !important;
        padding: 1.5rem !important;
        border-bottom: 1px solid var(--border-color) !important;
        width: 100% !important;
    }
    
    .feature-info {
        display: flex !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .feature-name {
        font-weight: 600 !important;
        font-size: 1.1rem !important;
        word-wrap: break-word !important;
        flex: 1 !important;
        min-width: 0 !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.4 !important;
    }
    
    .feature-info small {
        font-size: 0.9rem !important;
        color: var(--text-secondary) !important;
        display: block !important;
        word-wrap: break-word !important;
        width: 100% !important;
        line-height: 1.4 !important;
    }
    
    .channels-icons {
        display: flex !important;
        gap: 1rem !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        margin: 1rem 0 !important;
    }
    
    .channels-icons i {
        font-size: 1.3rem !important;
        margin: 0.25rem 0 !important;
    }
    
    /* Plan Cell */
    .plan-cell {
        padding: 1.5rem !important;
        border-bottom: 1px solid var(--border-color) !important;
        width: 100% !important;
    }
    
    .plan-cell:last-child {
        border-bottom: none !important;
    }
    
    .plan-price {
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: var(--primary-color) !important;
        display: block !important;
        margin-bottom: 1rem !important;
        line-height: 1.4 !important;
    }
    
    .plan-price small {
        font-size: 0.9rem !important;
        color: var(--text-secondary) !important;
        display: block !important;
        margin-top: 0.5rem !important;
        line-height: 1.4 !important;
    }
    
    /* INPUT GROUP - VERSÃO LIMPA */
    .input-group-simple {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        width: 100% !important;
        margin: 1rem 0 !important;
    }
    
    /* ESCONDER TODOS OS INPUTS ANTIGOS */
    .input-group-simple input[type="number"] {
        display: none !important;
    }
    
    /* APENAS O NUMBER-INPUT-GROUP VISÍVEL */
    .number-input-group {
        display: flex !important;
        align-items: center !important;
        border: 2px solid var(--border-color) !important;
        border-radius: 8px !important;
        background: white !important;
        overflow: hidden !important;
        width: 200px !important;
        margin: 0 auto !important;
    }
    
    .number-btn {
        background: var(--gray-light) !important;
        border: none !important;
        padding: 0.75rem 1rem !important;
        cursor: pointer !important;
        font-size: 1.2rem !important;
        font-weight: 600 !important;
        color: var(--text-primary) !important;
        min-width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
    }
    
    .number-btn:hover {
        background: var(--primary-color) !important;
        color: white !important;
    }
    
    .minus-btn {
        border-right: 1px solid var(--border-color) !important;
    }
    
    .plus-btn {
        border-left: 1px solid var(--border-color) !important;
    }
    
    .number-input-group input {
        width: 100px !important;
        padding: 0.75rem !important;
        border: none !important;
        text-align: center !important;
        font-size: 1.1rem !important;
        font-weight: 700 !important;
        color: var(--primary-color) !important;
        background: transparent !important;
        outline: none !important;
        -moz-appearance: textfield !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }
    
    .number-input-group input::-webkit-outer-spin-button,
    .number-input-group input::-webkit-inner-spin-button {
        -webkit-appearance: none !important;
        margin: 0 !important;
    }
    
    .input-group-simple small {
        font-size: 0.9rem !important;
        color: var(--text-secondary) !important;
        text-align: center !important;
        word-wrap: break-word !important;
        line-height: 1.4 !important;
    }
    
    /* Features Simple */
    .features-simple {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        margin: 1rem 0 !important;
    }
    
    .feature-simple {
        padding: 1rem !important;
        background: white !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 6px !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .feature-simple label {
        font-size: 1rem !important;
        padding: 0.5rem !important;
        white-space: normal !important;
        display: flex !important;
        align-items: center !important;
        gap: 1rem !important;
        cursor: pointer !important;
        width: 100% !important;
        line-height: 1.4 !important;
    }
    
    /* Summary */
    .summary-total {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
        margin: 1rem 0 !important;
    }
    
    .breakdown-item {
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin: 0.75rem 0 !important;
        padding: 0.75rem 0 !important;
    }
    
    .breakdown-price {
        align-self: flex-end !important;
    }
    
    .calculator-section {
        padding-bottom: 2rem !important;
        width: 100% !important;
    }
    
    .plan-price small {
        font-size: 0.8rem !important;
        color: var(--text-secondary) !important;
        display: block !important;
        margin-top: 0.75rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        line-height: 1.5 !important;
    }
    
    .input-group-simple {
        align-items: center !important;
        flex-wrap: wrap !important;
        margin: 1rem 0 !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        width: 100% !important;
        gap: 0.5rem !important;
    }
    
    .number-input-group {
        width: 100% !important;
        max-width: 200px !important;
        margin: 0 auto !important;
        overflow-x: hidden !important;
    }
    
    .number-btn {
        min-width: 30px !important;
        height: 35px !important;
        font-size: 1rem !important;
        flex-shrink: 0 !important;
        max-width: 50px !important;
    }
    
    .number-input-group input {
        width: 70px !important;
        font-size: 0.9rem !important;
        flex-shrink: 0 !important;
        max-width: 70px !important;
        /* Remover setinhas nativas do input number */
        -moz-appearance: textfield !important;
        -webkit-appearance: none !important;
        appearance: none !important;
    }
    
    .number-input-group input::-webkit-outer-spin-button,
    .number-input-group input::-webkit-inner-spin-button {
        -webkit-appearance: none !important;
        margin: 0 !important;
    }
    
    .features-simple {
        gap: 0.75rem !important;
        flex-wrap: wrap !important;
        margin: 1rem 0 !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    .feature-simple {
        padding: 0.75rem !important;
        background: white !important;
        border: 1px solid var(--border-color) !important;
        border-radius: 4px !important;
        min-width: 100px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        flex: 1 !important;
        width: 100% !important;
        margin-bottom: 0.5rem !important;
    }
    
    .feature-simple label {
        font-size: 0.9rem !important;
        padding: 0.75rem !important;
        white-space: normal !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        cursor: pointer !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        flex-wrap: wrap !important;
        width: 100% !important;
        line-height: 1.4 !important;
    }
    
    .summary-total {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        max-width: 100%;
        overflow-x: hidden;
        margin: 1rem 0;
    }
    
    .breakdown-item {
        flex-direction: column;
        gap: 0.75rem;
        max-width: 100%;
        overflow-x: hidden;
        margin: 0.5rem 0;
        padding: 0.5rem 0;
    }
    
    .breakdown-price {
        align-self: flex-end;
    }
    
    .calculator-section {
        padding-bottom: 2rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Ajustar textos que podem estar cortando */
    .channels-icons {
        display: flex !important;
        gap: 0.75rem !important;
        flex-wrap: wrap !important;
        max-width: 100% !important;
        width: 100% !important;
        justify-content: flex-start !important;
        margin: 0.75rem 0 !important;
    }
    
    .channels-icons i {
        font-size: 1.2rem !important;
        flex-shrink: 0 !important;
        max-width: 100% !important;
        margin: 0.25rem 0 !important;
    }
    
    /* Garantir que todos os textos quebrem adequadamente */
    .feature-info small,
    .plan-price small,
    .input-group-simple small {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
    }
    
    /* Forçar todos os elementos a ficarem dentro da tela */
    .calculator-container,
    .calculator-form,
    .pricing-table,
    .table-row,
    .feature-cell,
    .plan-cell,
    .input-group-simple,
    .number-input-group,
    .features-simple,
    .feature-simple,
    .plan-summary,
    .summary-breakdown,
    .breakdown-item {
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    /* Garantir que textos longos quebrem */
    .feature-name,
    .plan-price,
    .breakdown-name,
    .summary-header h3,
    .total-price {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
    
    /* FORÇA FINAL - Todos os elementos devem ficar dentro do enquadramento */
    .calculator-container,
    .calculator-form,
    .pricing-table,
    .table-row,
    .feature-cell,
    .plan-cell,
    .input-group-simple,
    .number-input-group,
    .features-simple,
    .feature-simple,
    .plan-summary,
    .summary-breakdown,
    .breakdown-item,
    .feature-info,
    .channels-icons,
    .summary-header,
    .summary-total {
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }
    
    /* Forçar quebra de linha em todos os textos */
    p, span, div, h1, h2, h3, h4, h5, h6, label, small {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 100% !important;
    }
    
    /* Inputs duplicados já removidos acima */
    
    /* Forçar espaçamento adequado entre elementos de preço */
    .plan-cell {
        padding: 1.25rem !important;
    }
    
    .plan-cell .plan-price {
        margin-bottom: 1rem !important;
    }
    
    .plan-cell .plan-price small {
        margin-top: 1rem !important;
    }
}

/* ========================================
   MOBILE CALCULATOR STYLES
   ======================================== */


/* Mobile Hero */
.mobile-hero {
    padding: 2rem 1.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.mobile-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.mobile-hero p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 300px;
    margin: 0 auto;
}

/* Mobile Calculator Container */
.mobile-calculator-container {
    padding: 1.5rem;
    padding-bottom: 250px; /* More space for fixed summary with scroll */
}

/* Plan Cards */
.plan-cards-container {
    margin-bottom: 2rem;
}

.plan-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 214, 255, 0.1);
}

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

.plan-card.active::before {
    opacity: 1;
}

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

.plan-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.plan-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.plan-features {
    margin-bottom: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.feature-item span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}


/* Configuration Sections */
.config-sections {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.config-section {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.config-section:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

.section-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    border: 2px solid #e2e8f0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-wrap: wrap;
    padding: 0.4rem;
}

.section-icon:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4BC4E6 100%);
    color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(102, 214, 255, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

/* Ícones específicos das redes sociais - Estilo profissional */
.section-icon .fab.fa-whatsapp {
    color: #25D366;
    font-size: 1.1rem;
    font-weight: 600;
    filter: drop-shadow(0 2px 4px rgba(37, 211, 102, 0.4));
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.section-icon .fab.fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    font-weight: 600;
    filter: drop-shadow(0 2px 4px rgba(188, 24, 136, 0.4));
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.section-icon .fab.fa-facebook-messenger {
    color: #0084FF;
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 132, 255, 0.3));
}

.section-icon .fas.fa-users {
    color: #6366f1;
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(99, 102, 241, 0.3));
}

.section-icon .fas.fa-cogs {
    color: #8b5cf6;
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(139, 92, 246, 0.3));
}

/* Hover states específicos para cada ícone */
.section-icon:hover .fab.fa-whatsapp {
    color: var(--white);
    filter: drop-shadow(0 3px 6px rgba(255, 255, 255, 0.5));
    transform: scale(1.1);
}

.section-icon:hover .fab.fa-instagram {
    background: linear-gradient(45deg, #ffffff 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 3px 6px rgba(255, 255, 255, 0.5));
    transform: scale(1.1);
}

.section-icon:hover .fab.fa-facebook-messenger {
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.section-icon:hover .fas.fa-users {
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.section-icon:hover .fas.fa-cogs {
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 0.3));
}

.section-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.section-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.section-info small {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.quantity-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.quantity-btn:active {
    transform: scale(0.95);
    background: var(--primary-color);
    color: var(--white);
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.quantity-btn:disabled:active {
    transform: none;
    background: var(--white);
    color: var(--primary-color);
}

.quantity-selector input {
    width: 80px;
    height: 48px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.quantity-selector input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 214, 255, 0.1);
}

/* Features Section */
.features-section .section-header {
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.feature-checkbox:hover {
    background: #e2e8f0;
    transform: translateY(-1px);
}

.feature-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.feature-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.feature-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.feature-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Mobile Summary - Fixed Bottom */
.mobile-summary {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem;
    max-height: 40vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.summary-content {
    margin-bottom: 1rem;
    flex: 1;
    overflow-y: auto;
    max-height: calc(40vh - 120px); /* Altura máxima menos espaço do botão */
    padding-right: 0.5rem; /* Espaço para a scrollbar */
}

/* Scrollbar personalizada para o resumo */
.summary-content::-webkit-scrollbar {
    width: 4px;
}

.summary-content::-webkit-scrollbar-track {
    background: var(--gray-light);
    border-radius: 2px;
}

.summary-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

.summary-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

.summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.summary-details {
    margin-bottom: 1rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.875rem;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item span:first-child {
    color: var(--text-secondary);
}

.detail-item span:last-child {
    font-weight: 600;
    color: var(--text-primary);
}

.summary-plan-info {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.summary-plan-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.summary-actions {
    width: 100%;
    flex-shrink: 0; /* Garante que o botão não encolha */
    margin-top: auto; /* Empurra o botão para baixo */
}

.btn-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.btn-cta:active {
    transform: scale(0.98);
    box-shadow: var(--shadow-lg);
}

.btn-cta i {
    font-size: 1.125rem;
}

/* Mobile FAQ */
.mobile-faq {
    padding: 2rem 1.5rem;
    background: var(--gray-light);
}

.faq-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.config-section {
    animation: slideUp 0.5s ease forwards;
}

.config-section:nth-child(1) { animation-delay: 0.1s; }
.config-section:nth-child(2) { animation-delay: 0.2s; }
.config-section:nth-child(3) { animation-delay: 0.3s; }
.config-section:nth-child(4) { animation-delay: 0.4s; }

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
    .quantity-btn:hover,
    .feature-checkbox:hover,
    .faq-question:hover {
        transform: none;
    }
    
    .quantity-btn:active,
    .feature-checkbox:active,
    .faq-question:active {
        transform: scale(0.95);
    }
}

/* Mobile-specific optimizations */
@media (max-width: 768px) {
    /* Ensure proper mobile viewport */
    html {
        height: 100%;
        height: -webkit-fill-available;
    }
    
    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    /* Mobile calculator specific styles */
    .mobile-calculator-container {
        padding-bottom: 280px; /* More space for fixed summary with scroll */
    }
    
    .mobile-summary {
        padding: 1rem 1.5rem;
        max-height: 45vh;
    }
    
    .summary-content {
        max-height: calc(45vh - 100px); /* Ajuste para telas menores */
    }
    
    /* Improve touch targets */
    .quantity-btn,
    .feature-checkbox,
    .faq-question {
        min-height: 44px; /* iOS recommended touch target */
        min-width: 44px;
    }
    
    /* Optimize text for mobile reading */
    .mobile-hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .mobile-hero p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Improve card spacing */
    .config-section {
        margin-bottom: 0.75rem;
    }
    
    .plan-card {
        margin-bottom: 1rem;
    }
    
    /* Optimize summary for mobile */
    .summary-header h3 {
        font-size: 1rem;
    }
    
    .total-price {
        font-size: 1.25rem;
    }
    
    .btn-cta {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .mobile-calculator-container {
        padding: 1rem;
        padding-bottom: 240px; /* Ajuste para telas muito pequenas */
    }
    
    .mobile-summary {
        padding: 1rem;
        max-height: 50vh; /* Mais altura em telas pequenas */
    }
    
    .summary-content {
        max-height: calc(50vh - 80px); /* Ajuste para telas muito pequenas */
    }
    
    .config-section {
        padding: 1rem;
    }
    
    .plan-card {
        padding: 1rem;
    }
    
    .mobile-hero {
        padding: 5rem 1rem 1.5rem;
    }
    
    .mobile-hero h1 {
        font-size: 1.5rem;
    }
    
    .mobile-hero p {
        font-size: 0.9rem;
    }
}

/* Seção 480px removida - usando apenas 720px para evitar bugs */

/* ========================================
   DESKTOP ENHANCEMENTS
   ======================================== */

@media (min-width: 769px) {
    /* Desktop Calculator Container - Centralizado */
    .mobile-calculator-container {
        max-width: 600px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Desktop Hero Section - Centralizado */
    .mobile-hero {
        padding: 4rem 2rem;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        border-radius: 20px;
        margin-bottom: 2rem;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .mobile-hero h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 1rem;
        line-height: 1.2;
        text-align: center;
        width: 100%;
    }

    .mobile-hero p {
        font-size: 1.25rem;
        color: var(--text-secondary);
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }

    /* Desktop Plan Cards - Centralizados */
    .plan-cards {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .plan-card {
        width: 100%;
        max-width: 500px;
    }

    /* Desktop Configuration Sections - Centralizados */
    .config-section {
        width: 100%;
        max-width: 500px;
        margin-bottom: 1.5rem;
    }

    /* Desktop Summary - Centralizado */
    .mobile-summary {
        width: 100%;
        max-width: 500px;
        margin-top: 2rem;
    }

    /* Desktop FAQ - Centralizado */
    .mobile-faq {
        width: 100%;
        max-width: 500px;
        margin-top: 2rem;
    }
}

@media (min-width: 1024px) {
    .mobile-calculator-container {
        max-width: 700px;
        padding: 0 3rem;
    }

    .mobile-hero h1 {
        font-size: 3rem;
        text-align: center;
        width: 100%;
    }

    .mobile-hero p {
        font-size: 1.5rem;
        max-width: 600px;
        text-align: center;
        width: 100%;
    }

    .plan-card {
        max-width: 600px;
    }

    .config-section {
        max-width: 600px;
    }

    .mobile-summary {
        max-width: 600px;
    }

    .mobile-faq {
        max-width: 600px;
    }
}
