/* ==========================================================================
   ESTILOS PRINCIPALES: INDEX.HTML (VELOCEMUNDI.LAT)
   Paleta: Azul Medianoche (#0a192f), Rojo Carmesí (#e63946), Plata (#e2e8f0)
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #0a192f;
    color: #e2e8f0;
    line-height: 1.6;
}

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

.text-center { text-align: center; }
.max-800 { max-width: 800px; margin: 0 auto; }
.align-items-center { align-items: center; }

/* Disclaimer Banner */
.top-disclaimer-banner {
    background-color: #fca311;
    color: #14213d;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 3px solid #e63946;
}
.container-disclaimer {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.icon-warning { flex-shrink: 0; fill: #14213d; }

/* Header */
.main-header {
    background-color: #020c1b;
    padding: 20px 0;
    border-bottom: 1px solid #1e3a8a;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}
.logo-red { color: #e63946; }
.logo-ext { color: #64748b; font-size: 16px; }
.main-nav {
    display: flex;
    gap: 30px;
}
.nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
    color: #e63946;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn-header-action {
    background-color: transparent;
    color: #e63946;
    border: 2px solid #e63946;
    padding: 10px 20px;
}
.btn-header-action:hover {
    background-color: #e63946;
    color: #ffffff;
}
.btn-main-cta {
    background-color: #e63946;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(230, 57, 70, 0.4);
}
.btn-main-cta:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}
.btn-secondary-cta {
    background-color: #1e293b;
    color: #ffffff;
    margin-left: 15px;
    border: 1px solid #334155;
}
.btn-secondary-cta:hover {
    background-color: #334155;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at top right, #1e3a8a 0%, #0a192f 60%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.badge-alert {
    display: inline-block;
    background-color: rgba(230, 57, 70, 0.1);
    color: #e63946;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(230, 57, 70, 0.3);
}
.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 25px;
}
.hero-lead {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
}
.hero-bullet-points {
    margin-bottom: 35px;
}
.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
}
.bullet-icon { flex-shrink: 0; }
.hero-image-container { position: relative; }
.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #1e293b;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.floating-secure-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: #020c1b;
    border-left: 5px solid #e63946;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
.badge-title { font-weight: 700; color: #ffffff; }
.badge-desc { font-size: 12px; color: #94a3b8; }

/* Problem Section */
.problem-section {
    padding: 100px 0;
    background-color: #0b1426;
    border-top: 1px solid #112240;
}
.section-alert-tag { color: #e63946; font-weight: 700; text-transform: uppercase; font-size: 14px; }
.section-title { font-size: 36px; color: #ffffff; margin-top: 10px; margin-bottom: 20px; }
.section-subtitle { font-size: 18px; color: #94a3b8; margin-bottom: 60px; }
.grid-three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.problem-card {
    background-color: #0a192f;
    padding: 40px 30px;
    border-radius: 6px;
    border: 1px solid #1e293b;
    transition: transform 0.3s ease;
}
.problem-card:hover { transform: translateY(-5px); border-color: #e63946; }
.problem-card-icon { margin-bottom: 20px; }
.problem-card h3 { color: #ffffff; margin-bottom: 15px; font-size: 20px; }
.problem-card p { color: #94a3b8; font-size: 15px; }

/* Services Section */
.services-section { padding: 100px 0; }
.services-title-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
.badge-service { color: #e63946; font-weight: 700; text-transform: uppercase; }
.title-dark-bg { font-size: 36px; color: #ffffff; margin-top: 10px; }
.services-top-text { max-width: 500px; color: #94a3b8; font-size: 16px; }
.grid-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.service-block {
    background-color: #020c1b;
    padding: 40px;
    border-radius: 6px;
    border-left: 4px solid #1e3a8a;
}
.service-block:hover { border-left-color: #e63946; }
.service-header-meta { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.service-id-badge { background-color: #112240; color: #e63946; padding: 5px 12px; font-weight: 700; border-radius: 4px; }
.service-block h3 { color: #ffffff; font-size: 22px; }
.service-description { color: #94a3b8; }

/* Methodology */
.methodology-section { padding: 100px 0; background-color: #020c1b; }
.method-img { width: 100%; height: auto; border-radius: 6px; }
.vertical-timeline { margin-top: 40px; }
.timeline-step { display: flex; gap: 25px; margin-bottom: 30px; }
.step-num-icon {
    width: 50px;
    height: 50px;
    background-color: #e63946;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}
.step-info h4 { color: #ffffff; font-size: 18px; margin-bottom: 5px; }
.step-info p { color: #94a3b8; }

/* Lead Generation Form */
.lead-generation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a192f 0%, #020c1b 100%);
    border-top: 2px solid #e63946;
}
.grid-form { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.lead-text-side h2 { font-size: 38px; color: #ffffff; margin-bottom: 25px; }
.lead-text-side p { color: #cbd5e1; font-size: 18px; margin-bottom: 30px; }
.urgency-callout { background-color: rgba(230, 57, 70, 0.1); border: 1px dashed #e63946; padding: 20px; border-radius: 4px; }
.urgency-callout p { margin-bottom: 0; font-size: 15px; color: #ffffff; }
.form-container-box { background-color: #112240; padding: 40px; border-radius: 8px; box-shadow: 0 15px 30px rgba(0,0,0,0.4); }
.form-container-box h3 { color: #ffffff; margin-bottom: 25px; font-size: 24px; text-align: center; }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; margin-bottom: 8px; color: #e2e8f0; font-weight: 600; font-size: 14px; }
.form-field input, .form-field select {
    width: 100%;
    padding: 12px;
    background-color: #0a192f;
    border: 1px solid #233554;
    color: #ffffff;
    border-radius: 4px;
    font-size: 15px;
}
.form-field input:focus, .form-field select:focus { border-color: #e63946; outline: none; }
.btn-form-submit { background-color: #e63946; color: #ffffff; width: 100%; margin-top: 10px; font-size: 16px; }
.btn-form-submit:hover { background-color: #b91c1c; }
.form-disclaimer-notice { text-align: center; font-size: 12px; color: #64748b; margin-top: 15px; }
.error-text { color: #ef4444; font-size: 12px; display: none; margin-top: 5px; }

/* Footer */
.main-footer { background-color: #020c1b; padding: 80px 0 30px 0; border-top: 1px solid #112240; }
.grid-four-columns { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-description { color: #64748b; margin-top: 15px; font-size: 14px; }
.footer-navigation-list h4 { color: #ffffff; font-size: 16px; margin-bottom: 20px; text-transform: uppercase; }
.footer-navigation-list ul { list-style: none; }
.footer-navigation-list ul li { margin-bottom: 10px; }
.footer-navigation-list ul li a { color: #94a3b8; text-decoration: none; transition: color 0.3s ease; }
.footer-navigation-list ul li a:hover { color: #e63946; }
.footer-data-item { color: #94a3b8; font-size: 14px; margin-bottom: 10px; }
.footer-divider { border: 0; border-top: 1px solid #112240; margin: 40px 0; }
.footer-disclaimer-legal-box { background-color: #0a192f; padding: 25px; border-radius: 4px; border: 1px solid #1e293b; margin-bottom: 40px; }
.footer-disclaimer-legal-box p { font-size: 12px; color: #64748b; line-height: 1.8; text-align: justify; }
.footer-bottom-flex { display: flex; justify-content: space-between; align-items: center; }
.copyright { color: #64748b; font-size: 13px; }
.legal-footer-links a { color: #64748b; text-decoration: none; font-size: 13px; margin-left: 20px; transition: color 0.3s ease; }
.legal-footer-links a:hover { color: #e63946; }
.text-white { color: #ffffff; }

@media (max-width: 968px) {
    .hero-grid, .grid-three-columns, .grid-two-columns, .grid-form, .grid-four-columns { grid-template-columns: 1fr; }
    .services-title-flex { flex-direction: column; align-items: flex-start; gap: 20px; }
    .btn-secondary-cta { margin-left: 0; margin-top: 15px; display: block; }
}