/* Variables de Color basadas en el Logo e Imagen de referencia */
:root {
    --bg-dark: #050A14;      /* Fondo muy oscuro */
    --bg-card: #0F1724;      /* Fondo de tarjetas */
    --primary: #0056D2;      /* Azul del escudo */
    --accent: #00C853;       /* Verde neón del circuito */
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* Utilidades */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-small { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.section { padding: 80px 0; }
.bg-dark { background-color: #080d18; }

/* Botones */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
}

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

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 10, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.logo-img {
    height: 120px; /* Ajusta según tu logo */
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn-nav {
    background: var(--accent);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: bold;
}

.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; background: white; margin: 5px auto; transition: 0.3s; }

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #0F2A4A 0%, var(--bg-dark) 60%);
    padding-top: 80px;
}

.hero-content { max-width: 800px; }

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

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

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons { display: flex; gap: 15px; margin-bottom: 60px; }

.stats-bar {
    display: flex;
    gap: 50px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--accent);
    font-family: var(--font-heading);
}

.stat-item p { font-size: 0.9rem; color: var(--text-muted); }

/* About Section */
.section-header { margin-bottom: 50px; }
.subtitle { color: var(--primary); font-family: var(--font-heading); letter-spacing: 2px; font-weight: bold; }
.section-header h2 { font-size: 2.5rem; font-family: var(--font-heading); margin-top: 10px; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.feature-list { margin-top: 20px; }
.feature-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
.feature-list i { color: var(--accent); }

.shield-graphic {
    font-size: 10rem;
    color: rgba(255,255,255,0.05);
    text-align: center;
    border: 1px solid var(--primary);
    padding: 50px;
    border-radius: 50%;
    position: relative;
}

.shield-graphic::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(0, 86, 210, 0.2);
}

/* Services / How it Works */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.price-card.popular {
    border: 1px solid var(--accent);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: black;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 20px;
}

.price-card h3 { margin-bottom: 10px; }
.price { font-size: 1.5rem; color: var(--primary); font-weight: bold; margin-bottom: 20px; }
.price-card ul { margin-bottom: 30px; text-align: left; }
.price-card li { margin-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 5px; }

/* Testimonials */
.testimonials-scroll {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
}

.testimonial-card {
    min-width: 300px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}

.testimonial-card p { font-style: italic; margin-bottom: 20px; color: var(--text-muted); }

.author { display: flex; gap: 15px; align-items: center; }
.author img { width: 50px; height: 50px; border-radius: 50%; }

/* FAQ */
.faq-item { margin-bottom: 15px; background: var(--bg-card); border-radius: 5px; }
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: white;
    padding: 20px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}
.faq-answer {
    padding: 0 20px 20px;
    display: none;
    color: var(--text-muted);
}
.faq-item.active .faq-answer { display: block; }
.faq-item.active i { transform: rotate(180deg); }

/* Footer */
footer {
    background: black;
    padding: 60px 0 20px;
    border-top: 1px solid var(--primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo { height: 70px; margin-bottom: 15px; }
.social-links { display: flex; gap: 15px; margin-top: 20px; }
.social-links a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.social-links a:hover { background: var(--primary); }

.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; color: #555; font-size: 0.8rem; }

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-dark);
        width: 100%;
        text-align: center;
        padding: 20px 0;
        transition: 0.3s;
    }
    
    .nav-menu.active { left: 0; }
    .menu-toggle { display: block; }
    
    .hero h1 { font-size: 2.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .stats-bar { flex-wrap: wrap; gap: 20px; }
    .footer-content { flex-direction: column; }
} 
/* --- ESTILOS PAQUETES (ACTUALIZADO) --- */
.card-icon-top {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.plan-type {
    display: block;
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    height: 60px; /* Altura fija para alineación */
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.plan-features li {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 8px;
    list-style: none;
}

.plan-features li strong {
    color: #fff;
}

/* Ajuste para que las tarjetas tengan la misma altura */
.pricing-grid {
    align-items: stretch;
}

.price-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* --- ESTILOS SLIDER TESTIMONIOS (NUEVO) --- */
.slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px; /* Espacio para puntos abajo */
}

.slider-wrapper {
    position: relative;
    height: 300px; /* Altura del contenedor del slider */
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease;
    transform: scale(0.95);
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
    z-index: 10;
}

.testimonial-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border-top: 3px solid var(--accent);
    max-width: 600px;
    width: 100%;
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: #ddd;
}

.testimonial-content .author {
    justify-content: center;
}

/* Botones del Slider */
.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    z-index: 20;
}

.slider-controls button:hover {
    background: var(--primary);
}

#prevBtn { left: 0; }
#nextBtn { right: 0; }

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slider-wrapper { height: 380px; } /* Más alto en móviles para el texto */
    .slider-controls button { display: none; } /* Ocultar flechas en móvil, usar dots o swipe */
} 