/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00f5ff;
    --secondary-color: #ff006e;
    --accent-color: #8338ec;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --gradient-1: linear-gradient(135deg, #00f5ff, #8338ec);
    --gradient-2: linear-gradient(135deg, #ff006e, #00f5ff);
    --gradient-3: linear-gradient(135deg, #8338ec, #ff006e);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #13131a;
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animações de Background Impressionantes */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #13131a;
    overflow: hidden;
}

/* Partículas flutuantes melhoradas */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: float 25s infinite linear;
    filter: blur(0.5px);
}

.particle:nth-child(1) { width: 4px; height: 4px; left: 10%; animation-delay: 0s; background: var(--primary-color); }
.particle:nth-child(2) { width: 6px; height: 6px; left: 20%; animation-delay: 2s; background: var(--secondary-color); }
.particle:nth-child(3) { width: 3px; height: 3px; left: 30%; animation-delay: 4s; background: var(--accent-color); }
.particle:nth-child(4) { width: 5px; height: 5px; left: 40%; animation-delay: 6s; background: var(--primary-color); }
.particle:nth-child(5) { width: 4px; height: 4px; left: 50%; animation-delay: 8s; background: var(--secondary-color); }
.particle:nth-child(6) { width: 7px; height: 7px; left: 60%; animation-delay: 10s; background: var(--accent-color); }
.particle:nth-child(7) { width: 3px; height: 3px; left: 70%; animation-delay: 12s; background: var(--primary-color); }
.particle:nth-child(8) { width: 5px; height: 5px; left: 80%; animation-delay: 14s; background: var(--secondary-color); }
.particle:nth-child(9) { width: 4px; height: 4px; left: 90%; animation-delay: 16s; background: var(--accent-color); }

@keyframes float {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 0.8;
        transform: translateY(95vh) rotate(18deg) scale(1);
    }
    95% {
        opacity: 0.8;
        transform: translateY(-5vh) rotate(342deg) scale(1);
    }
    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0);
        opacity: 0;
    }
}

/* Ondas de energia pulsantes */
.energy-waves {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 245, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 110, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(131, 56, 236, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(0, 245, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 10% 30%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    animation: energyPulse 12s ease-in-out infinite;
}

@keyframes energyPulse {
    0%, 100% { 
        opacity: 0.4; 
        transform: scale(1) rotate(0deg); 
        filter: hue-rotate(0deg);
    }
    25% { 
        opacity: 0.7; 
        transform: scale(1.1) rotate(90deg); 
        filter: hue-rotate(90deg);
    }
    50% { 
        opacity: 0.9; 
        transform: scale(1.2) rotate(180deg); 
        filter: hue-rotate(180deg);
    }
    75% { 
        opacity: 0.7; 
        transform: scale(1.1) rotate(270deg); 
        filter: hue-rotate(270deg);
    }
}

/* Grid futurista animado */
.grid-overlay {
    position: absolute;
    width: 120%;
    height: 120%;
    background-image: 
        linear-gradient(rgba(0, 245, 255, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 255, 0.15) 1px, transparent 1px),
        linear-gradient(rgba(255, 0, 110, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 110, 0.08) 1px, transparent 1px);
    background-size: 50px 50px, 50px 50px, 100px 100px, 100px 100px;
    animation: gridMove 30s linear infinite, gridPulse 8s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes gridMove {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 50px) rotate(360deg); }
}

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

/* Raios de luz */
.light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(0, 245, 255, 0.1) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 0, 110, 0.1) 50%, transparent 60%),
        linear-gradient(135deg, transparent 40%, rgba(131, 56, 236, 0.1) 50%, transparent 60%);
    animation: lightSweep 15s ease-in-out infinite;
}

@keyframes lightSweep {
    0%, 100% { 
        transform: translateX(-100%) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% { 
        transform: translateX(0%) rotate(180deg);
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translateX(100%) rotate(360deg);
        opacity: 0;
    }
}

/* Orbes flutuantes */
.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: orbFloat 20s ease-in-out infinite;
}

.orb:nth-child(1) {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.3), transparent);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb:nth-child(2) {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.2), transparent);
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.orb:nth-child(3) {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.4), transparent);
    bottom: 30%;
    left: 70%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -40px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translate(-20px, -80px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(-40px, -20px) scale(1.1);
        opacity: 0.5;
    }
}

/* Efeito de DNA/Hélice */
.dna-helix {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(0, 245, 255, 0.05) 100px,
            rgba(0, 245, 255, 0.05) 102px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 100px,
            rgba(255, 0, 110, 0.05) 100px,
            rgba(255, 0, 110, 0.05) 102px
        );
    animation: helixRotate 25s linear infinite;
}

@keyframes helixRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Pulsos de energia */
.energy-pulses {
    position: absolute;
    width: 100%;
    height: 100%;
}

.pulse {
    position: absolute;
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 50%;
    animation: energyPulseRing 4s ease-out infinite;
}

.pulse:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.pulse:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 30%;
    animation-delay: 1s;
    border-color: rgba(255, 0, 110, 0.3);
}

.pulse:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 60%;
    animation-delay: 2s;
    border-color: rgba(131, 56, 236, 0.3);
}

@keyframes energyPulseRing {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    height: 73px;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    gap: 8px;
}

.logo img {
    height: 48px;
    width: auto;
    max-height: 48px;
    min-width: 36px;
    object-fit: contain;
    margin-right: 0;
    display: block;
}

.logo span {
    display: flex;
    align-items: center;
    height: 48px;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-left: 8px;
    display: flex;
    align-items: center;
    height: 48px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 14px;
    margin-left: auto;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    line-height: 48px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

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

.nav-links .login-button {
    background: linear-gradient(135deg, #00ff88 0%, #00b8ff 100%);
    color: #000;
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    align-self: center;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.nav-links .login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
    color: #000;
}

/* Seção Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 0 50px;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 40px rgba(0, 245, 255, 0.8)); }
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--text-gray);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-1);
    color: var(--bg-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

/* Estatísticas */
.stats {
    padding: 80px 0;
    background: rgba(5, 5, 5, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* Seções */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Cards de benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover::before {
    opacity: 0.1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

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

/* Gráficos */
.chart-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 300px;
    width: 100%;
    padding: 40px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    transition: transform 0.3s ease-in-out;
    transform-origin: bottom;
}

.chart-column:hover {
    transform: scale(1.15);
    z-index: 10;
}

.chart-bar {
    width: 60px;
    background: var(--gradient-1);
    border-radius: 5px 5px 0 0;
    position: relative;
    transition: height 2s ease-out;
    display: flex;
    align-items: start;
    justify-content: center;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding-top: 5px;
    margin-bottom: 10px;
}

.chart-bar::before {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.chart-label {
    color: var(--text-gray);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    margin-top: 5px;
}

.chart-column:nth-child(1) .chart-bar { 
    height: 160px;
    animation: chartGrow1 2s ease-out 0.1s both;
    background: var(--gradient-1);
}
.chart-column:nth-child(2) .chart-bar { 
    height: 190px;
    animation: chartGrow2 2s ease-out 0.2s both;
    background: var(--gradient-2);
}
.chart-column:nth-child(3) .chart-bar { 
    height: 110px;
    animation: chartGrow3 2s ease-out 0.3s both;
    background: var(--gradient-3);
}
.chart-column:nth-child(4) .chart-bar { 
    height: 145px;
    animation: chartGrow4 2s ease-out 0.4s both;
    background: var(--gradient-1);
}
.chart-column:nth-child(5) .chart-bar { 
    height: 220px;
    animation: chartGrow5 2s ease-out 0.5s both;
    background: var(--gradient-2);
}

@keyframes chartGrow1 {
    0% { height: 0; }
    100% { height: 160px; }
}

@keyframes chartGrow2 {
    0% { height: 0; }
    100% { height: 190px; }
}

@keyframes chartGrow3 {
    0% { height: 0; }
    100% { height: 110px; }
}

@keyframes chartGrow4 {
    0% { height: 0; }
    100% { height: 145px; }
}

@keyframes chartGrow5 {
    0% { height: 0; }
    100% { height: 220px; }
}

/* Formulário */
.form-section {
    background: rgba(5, 5, 5, 0.9);
    padding: 100px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-1);
    color: var(--bg-dark);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 245, 255, 0.2);
    background: rgba(5, 5, 5, 0.8);
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-container {
        margin: 0 20px;
        padding: 30px;
    }
    
    .chart {
        padding: 15px 10px 30px 10px;
    }
    
    .chart-bar {
        width: 45px;
    }
    
    .chart-label {
        font-size: 10px;
    }
    
    .chart-bar::before {
        font-size: 10px;
        top: -20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Animações de entrada */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

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

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }

/* Loading spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mensagens de sucesso/erro */
.message {
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
}

.message.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
}

.message.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
}

/* Chatbot Widget */
#chatbot-widget { z-index: 9999; }
#chatbot-box { display: flex; flex-direction: column; }
#chatbot-messages {
    flex: 1;
    overflow-y: auto;
    min-height: 60px;
    max-height: 350px;
    background: #181828;
    color: #fff;
    font-size: 1rem;
    padding: 16px;
    word-break: break-word;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.user-msg {
    align-self: flex-end;
    background: linear-gradient(90deg, #00f5ff 0%, #8338ec 100%);
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 16px 16px 4px 16px;
    max-width: 80%;
    font-size: 1rem;
    word-break: break-word;
    box-shadow: 0 2px 8px #00f5ff22;
    text-align: left;
    margin-bottom: 2px;
}
.bot-msg {
    align-self: flex-start;
    background: #232347;
    color: #fff !important;
    padding: 8px 14px;
    border-radius: 16px 16px 16px 4px;
    max-width: 80%;
    font-size: 1rem;
    word-break: break-word;
    box-shadow: 0 2px 8px #23234744;
    text-align: left;
    margin-bottom: 2px;
}
#chatbot-input { background: transparent; color: #fff; border: none; outline: none; }
#chatbot-send { color: #8338ec; background: none; border: none; cursor: pointer; font-size: 1.5rem; }
@media (max-width: 500px) {
  #chatbot-box { width: 98vw !important; height: 60vh !important; right: 1vw; bottom: 1vh; }
}

/* Melhor contraste para select de planos */
select, select option {
    background-color: #181828 !important;
    color: #fff !important;
    border: 1px solid #00f5ff;
    font-size: 1rem;
}

.plan-cards-benefit-style {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
    align-items: stretch;
    margin-bottom: 96px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.plan-cards-benefit-style .benefit-card {
    width: 100%;
    max-width: 370px;
    min-width: 0;
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
}
.plan-cards-benefit-style .benefit-card:hover {
    transform: translateY(-12px) scale(1.035);
    border-color: #8338ec;
    box-shadow: 0 0 32px #8338ec55, 0 12px 40px rgba(131,56,236,0.18);
}
.plan-cards-benefit-style .benefit-icon {
    background: linear-gradient(135deg, #00f5ff 0%, #8338ec 100%);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px #00f5ff33;
}
.plan-cards-benefit-style .benefit-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.7rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00f5ff 0%, #8338ec 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px #00f5ff33;
}
.plan-cards-benefit-style .benefit-card p {
    font-size: 1.13rem;
    color: #e0e6f7;
    opacity: 1;
    margin-bottom: 0;
    margin-top: 8px;
    line-height: 1.5;
}
.plan-cards-benefit-style .benefit-card p strong {
    color: #00f5ff;
    font-size: 1.35rem;
    display: block;
    margin-top: 18px;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px #00f5ff99;
}

@media (max-width: 1100px) {
  .plan-cards-benefit-style {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 100vw;
  }
  .plan-cards-benefit-style .benefit-card {
    max-width: 340px;
  }
}
@media (max-width: 900px) {
  .plan-cards-benefit-style {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .plan-cards-benefit-style .benefit-card {
    max-width: 95vw;
    width: 100%;
  }
}

/* Nova seção: vídeo + card explicativo */
.video-card-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.video-card-section .video-col {
    flex: 1 1 350px;
    min-width: 320px;
    max-width: 600px;
    display: flex;
    justify-content: center;
}
.video-card-section .video-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    padding: 0;
    max-width: 400px;
    width: 100%;
    height: auto;
}
.video-card-section .video-frame video {
    display: block;
    width: auto;
    max-width: 100%;
    height: 480px;
    max-height: 70vh;
    margin: 0 auto;
    background: transparent;
    border-radius: 24px;
    box-shadow: none;
}
.video-card-section .card-col {
    flex: 1 1 320px;
    min-width: 280px;
    max-width: 420px;
    background: rgba(30,30,40,0.95);
    border-radius: 18px;
    box-shadow: 0 4px 24px #0006;
    padding: 32px 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 900px) {
    .video-card-section {
        flex-direction: column;
        gap: 32px;
    }
    .video-card-section .card-col {
        margin-left: 0;
        max-width: 98vw;
    }
    .video-card-section .video-col {
        max-width: 98vw;
    }
}

#demonstrativo-chatbot {
    padding-top: 40px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Menu Hamburguer e Mobile */
.hamburger {
    margin-left: auto;
    margin-right: 8px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1101;
    position: relative;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 4px 0;
    background: #00c6ff;
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.overlay-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    z-index: 1099;
}
.overlay-menu.active {
    display: block;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 220px;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    box-shadow: -2px 0 16px rgba(0,0,0,0.2);
    z-index: 1100;
    padding: 32px 18px 18px 18px;
    animation: slideInMenu 0.3s;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.mobile-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
}
.mobile-menu a:hover {
    color: #00c6ff;
}
@keyframes slideInMenu {
    from { right: -220px; opacity: 0; }
    to { right: 0; opacity: 1; }
}

@media (max-width: 900px) {
    .nav-links {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
    .mobile-menu {
        display: block;
    }
}