/* PALETA DE COLORES: Base Oscura Híbrida, Azul Eléctrico, Naranja Coral Neón y Verde Neón */
:root {
    --bg-dark: #0b0f19;
    --bg-card: #131a2e;
    --primary-electric: #0052ff;
    --neon-orange: #ff5e3a;
    --neon-cyan: #00ffcc;
    --text-light: #f3f4f6;
    --text-muted: #9ca3af;
    --disclaimer-bg: #1e1b10;
    --disclaimer-border: #ffaa00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.bold-design-theme {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* TOP DISCLAIMER */
.top-disclaimer-bar {
    background-color: var(--disclaimer-bg);
    border-bottom: 2px solid var(--disclaimer-border);
    padding: 12px 0;
}
.container-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.container-disclaimer p {
    font-size: 0.85rem;
    color: #ffe082;
    text-align: justify;
}
.icon-disclaimer {
    flex-shrink: 0;
}

/* HEADER */
.main-header {
    background-color: rgba(11, 15, 25, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo-text {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--text-light);
}
.logo-highlight {
    color: var(--neon-orange);
}
.main-nav {
    display: flex;
    gap: 32px;
}
.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.nav-link:hover, .nav-link.active {
    color: var(--neon-cyan);
}

/* BOTONES */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}
.btn-bold-pulse {
    background-color: var(--primary-electric);
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(0, 82, 255, 0.4);
}
.btn-bold-pulse:hover {
    background-color: #0041cc;
    transform: translateY(-2px);
}
.btn-action-neon {
    background-color: var(--neon-orange);
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(255, 94, 58, 0.4);
}
.btn-action-neon:hover {
    background-color: #e04a27;
    box-shadow: 0 0 25px rgba(255, 94, 58, 0.6);
}
.btn-outline-vibrant {
    background-color: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
}
.btn-outline-vibrant:hover {
    background-color: var(--neon-cyan);
    color: var(--bg-dark);
}
.btn-block {
    width: 100%;
}

/* HERO SECTION */
.hero-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}
.hero-badge-vibrant {
    display: inline-block;
    background-color: rgba(0, 255, 204, 0.1);
    color: var(--neon-cyan);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid var(--neon-cyan);
}
.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}
.hero-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}
.hero-trust-dark {
    display: flex;
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}
.hero-img-neon {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid var(--primary-electric);
    box-shadow: 0 0 30px rgba(0, 82, 255, 0.2);
}

/* SERVICIOS */
.services-section {
    padding: 100px 0;
}
.section-header-vibrant {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.section-header-vibrant h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-card-vibrant {
    background-color: var(--bg-card);
    padding: 40px 32px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, border 0.3s;
}
.service-card-vibrant:hover {
    transform: translateY(-5px);
    border-color: var(--neon-cyan);
}
.service-icon-box-neon {
    margin-bottom: 24px;
}
.service-card-vibrant h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: white;
}
.service-card-vibrant p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* PROCESO */
.process-section {
    padding: 100px 0;
    background-color: #0e1422;
}
.process-grid-vibrant {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.process-step-card {
    background-color: var(--bg-dark);
    padding: 40px 32px;
    border-radius: 6px;
    position: relative;
    border-top: 4px solid var(--primary-electric);
}
.step-number-neon {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(0, 255, 204, 0.1);
    position: absolute;
    top: 10px;
    right: 24px;
}
.process-step-card h3 {
    margin-bottom: 16px;
    font-size: 1.25rem;
}
.process-step-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* FORMULARIO */
.form-section {
    padding: 100px 0;
}
.form-container-box-vibrant {
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 64px;
    border: 1px solid rgba(0, 255, 204, 0.2);
    box-shadow: 0 0 40px rgba(0, 255, 204, 0.05);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.form-info-side-dark h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 24px;
}
.form-info-side-dark p {
    color: var(--text-muted);
    margin-bottom: 24px;
}
.form-side-img-neon {
    width: 100%;
    border-radius: 6px;
    margin-top: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}
.card-form-vibrant h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
}
.form-group-vibrant {
    margin-bottom: 24px;
    position: relative;
}
.form-group-vibrant label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}
.form-group-vibrant input[type="text"],
.form-group-vibrant input[type="email"],
.form-group-vibrant input[type="tel"],
.form-group-vibrant select {
    width: 100%;
    padding: 14px 16px;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: white;
    font-size: 1rem;
    transition: border 0.3s;
}
.form-group-vibrant input:focus,
.form-group-vibrant select:focus {
    outline: none;
    border-color: var(--neon-cyan);
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.checkbox-group input {
    margin-top: 4px;
}
.checkbox-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.checkbox-group a {
    color: var(--neon-cyan);
}
.btn-neon-submit {
    background-color: var(--neon-cyan);
    color: var(--bg-dark);
    border: none;
    font-size: 1.05rem;
}
.btn-neon-submit:hover {
    background-color: #00d4aa;
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.4);
}
.error-msg {
    color: #ff4444;
    font-size: 0.8rem;
    display: none;
    margin-top: 6px;
}
.success-alert-box-vibrant {
    display: none;
    background-color: rgba(0, 255, 204, 0.1);
    border: 1px solid var(--neon-cyan);
    padding: 24px;
    border-radius: 4px;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

/* FOOTER */
.main-footer-dark {
    background-color: #05070b;
    padding: 80px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
}
.text-neon {
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
}
.logo-highlight-neon {
    color: var(--neon-cyan);
}
.footer-description-dark {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 16px;
}
.footer-links-side h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: white;
}
.footer-links-list-dark {
    list-style: none;
}
.footer-links-list-dark li {
    margin-bottom: 12px;
}
.footer-links-list-dark a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.footer-links-list-dark a:hover {
    color: var(--neon-cyan);
}
.footer-divider-neon {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 40px auto;
}
.footer-bottom-disclaimer-dark {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: justify;
}
.footer-bottom-disclaimer-dark p {
    margin-bottom: 16px;
}
.copyright-text-dark {
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding-top: 16px;
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .hero-grid, .services-grid, .process-grid-vibrant, .form-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .form-container-box-vibrant { padding: 24px; }
    .hero-content h1 { font-size: 2rem; }
}