/* Variables de colores */
:root {
    /* Colores principales */
    --primary-color: #1a73e8;    /* Azul principal */
    --primary-dark: #0d47a1;     /* Azul oscuro */
    --primary-light: #e8f0fe;    /* Azul claro de fondo */
    --secondary-color: #34a853;  /* Verde para acciones positivas */
    --accent-color: #fbbc05;     /* Amarillo para acentos */
    --error-color: #ea4335;      /* Rojo para errores/alertas */
    
    /* Fondo oscuro por defecto */
    --header-bg: #121212;        /* Fondo oscuro para el header */
    --hero-bg: #1e1e1e;          /* Fondo oscuro para el hero */
    --text-on-dark: #ffffff;     /* Texto claro sobre fondo oscuro */
    
    /* Escala de grises */
    --text-color: #ffffff;       /* Texto principal (blanco) */
    --text-secondary: #b0b0b0;   /* Texto secundario */
    --text-light: #80868b;       /* Texto claro */
    --background: #121212;       /* Fondo general oscuro */
    --white: #ffffff;            /* Blanco puro */
    --black: #000000;            /* Negro puro */
    --gray-lightest: #2d2d2d;    /* Gris más claro */
    --gray-lighter: #3d3d3d;     /* Gris claro */
    --gray-light: #5a5a5a;       /* Gris medio claro */
    --gray: #9aa0a6;             /* Gris medio */
    --gray-dark: #b0b0b0;        /* Gris oscuro */
    --gray-darker: #e0e0e0;      /* Gris más oscuro */
    
    /* Sombras */
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    
    /* Asegurar colores de texto por defecto */
    color: var(--text-color);
    background-color: var(--background);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    
    /* Transiciones */
    --transition-fast: all 0.15s ease;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Bordes */
    --border-radius-sm: 4px;
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-full: 9999px;
    
    /* Espaciados */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
}

/* Reset y estilos generales */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Espacio para el header fijo */
}

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

/* Establecer colores por defecto */
html {
    background-color: var(--background);
}

body {
    color: var(--text-color);
    background-color: var(--background);
    font-family: 'Roboto', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background-color: var(--header-bg);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(13, 71, 161, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* Logo */
.logo-placeholder {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.logo-placeholder::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: 0.5s;
}

.logo-placeholder:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.4);
}

.logo-placeholder:hover::before {
    left: 100%;
}

/* Navegación */
.main-nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links li {
    position: relative;
    margin: 0;
}

.nav-links > li > a {
    font-weight: 500;
    color: var(--light-text);
    transition: var(--transition);
    padding: 8px 12px;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.4);
}

/* Botón CTA */
.cta-button {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 30px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-size: 0.8rem !important;
    white-space: nowrap;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    margin-left: 5px;
}

.cta-button i {
    margin-right: 10px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.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: 0.5s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
}

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

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
}

/* Selector de idioma */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 20px;
    background: rgba(66, 165, 245, 0.1);
    border-radius: 20px;
    padding: 2px;
    position: relative;
    overflow: hidden;
}

.language-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    font-size: 0.85rem;
    color: var(--light-text);
    transition: var(--transition);
    font-weight: 500;
    border-radius: 18px;
    z-index: 1;
    position: relative;
}

.language-btn.active {
    color: white;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.3);
}

.language-separator {
    margin: 0 2px;
    color: var(--light-text);
    opacity: 0.5;
    font-weight: 300;
}

/* Menú hamburguesa */
.hamburger {
    display: none;
    cursor: pointer;
    margin-left: 15px;
    z-index: 1001;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(66, 165, 245, 0.1);
}

.bar {
    display: block;
    width: 25px;
    height: 2.5px;
    margin: 5px auto;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
    background-color: var(--hero-bg);
    color: var(--text-on-dark);
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .nav-links {
        margin-right: 15px;
    }
    
    .nav-links li {
        margin: 0 10px;
    }
}

/* Estilos para la sección Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomInOut 20s infinite alternate;
}

.hero-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent; /* Eliminamos el fondo oscuro */
    z-index: 2;
    opacity: 1;
}

/* Añadimos una capa para la imagen de fondo con opacidad */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero img.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomInOut 20s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    color: white;
    padding: 0 15px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    text-align: center;
    padding: 0 20px;
    line-height: 1.6;
    opacity: 0.95;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-weight: 500;
}

.download-btn i {
    font-size: 1.8rem;
    margin-right: 12px;
}

.download-btn-text {
    text-align: left;
    line-height: 1.2;
}

.download-btn-text span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.9;
}

.download-btn-text strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Animaciones personalizadas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Sección de Beneficios */
.benefits-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4a90e2, #6b48ff, #ff3e9d);
    background-size: 200% 100%;
    animation: gradientBG 8s ease infinite;
}

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

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 1s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

.section-title:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section-title .highlight {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    transform-style: preserve-3d;
    backdrop-filter: blur(10px);
}

.benefit-card:nth-child(1) { animation-delay: 0.2s; }
.benefit-card:nth-child(2) { animation-delay: 0.4s; }
.benefit-card:nth-child(3) { animation-delay: 0.6s; }

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #6b48ff);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1;
    display: inline-block;
    color: #4a90e2;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 5px rgba(74, 144, 226, 0.7));
}

.benefit-title {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    font-weight: 600;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.benefit-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.benefit-card:hover .benefit-title::after {
    width: 100%;
}

.benefit-description {
    color: #b0bac5;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    max-width: 300px;
    margin: 0 auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover .benefit-description {
    color: #e0e6ed;
}

/* Efecto de brillo al pasar el cursor */
.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% -50%, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: -1;
}

.benefit-card:hover::after {
    opacity: 1;
}

/* Partículas decorativas */
.benefit-card .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: float 8s infinite ease-in-out;
}

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

/* ===== Sección Cómo Funciona ===== */
.how-it-works {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    color: #e0e6ed;
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(26, 115, 232, 0.1) 0%, transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(52, 168, 83, 0.1) 0%, transparent 30%);
    pointer-events: none;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem 2rem;
    margin-top: 3rem;
    position: relative;
}

.step-wrapper {
    position: relative;
    padding-top: 0; /* Eliminado el padding superior */
}

.step {
    background: rgba(30, 41, 59, 0.9);
    padding: 0 1.5rem 1.5rem; /* Eliminado el padding superior */
    border-radius: 16px;
    position: relative;
    overflow: hidden; /* Cambiado a hidden para evitar desbordamiento */
    backdrop-filter: blur(8px);
    border: 1px solid rgba(74, 85, 104, 0.2);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease; /* Especificar solo las propiedades que se animan */
    margin-top: 0;
    padding-top: 2rem;
    transform: translateZ(0); /* Forzar aceleración por hardware */
    will-change: transform, box-shadow; /* Indicar qué propiedades van a animarse */
}

.step:hover {
    transform: translateY(-5px) translateZ(0);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.4);
    z-index: 1; /* Asegurar que el elemento hover esté por encima de los demás */
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover::before {
opacity: 1;
}

.step h4 {
font-size: 1.4rem;
margin: 1.2rem 0 0.8rem;
color: #ffffff;
font-weight: 600;
line-height: 1.3;
margin-bottom: 1rem;
color: var(--white);
font-weight: 700;
position: relative;
display: inline-block;
padding-bottom: 0.5rem;
    color: var(--white);
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.step h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.step:hover h4::after {
    width: 50px;
    background: var(--secondary-color);
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 1.2rem 0 0;
    padding: 0 0.5rem;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.step:hover p {
    color: #ffffff;
    transform: translateY(-2px);
}

.step-number {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary-color), #0d47a1);
    color: white !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15; /* Aumentado para asegurar que esté por encima de todo */
    border: 3px solid rgba(255, 255, 255, 0.9);
    line-height: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 6px 12px -2px rgba(13, 71, 161, 0.25);
    pointer-events: none;
    backface-visibility: hidden; /* Mejorar el rendimiento */
    -webkit-font-smoothing: subpixel-antialiased; /* Mejorar la renderización de fuentes */
}

.step:hover .step-number {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--secondary-color), #1b5e20);
    box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.3);
}

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

.step {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }
.step:nth-child(4) { animation-delay: 0.4s; }

/* Efecto de brillo al pasar el ratón */
.step::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: 0.5s;
}

.step:hover::after {
    left: 100%;
}

/* Contenedor del separador entre secciones */
.section-divider-container {
    background: #0a0e17;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.section-divider {
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #6b48ff, #ff6b6b);
    margin: 0 auto;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shine 3s infinite;
    filter: blur(4px);
}

@keyframes shine {
    0% { transform: translateX(-100%) skewX(-30deg); }
    100% { transform: translateX(100%) skewX(-30deg); }
}

.how-it-works .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-top: 1rem;
}

.how-it-works .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #b0bac5;
    line-height: 1.6;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 144, 226, 0.2);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    background: linear-gradient(135deg, #4a90e2, #6b48ff);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.5);
    z-index: 1;
}

.step-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
    min-height: 3.5rem;
    font-weight: 600;
}

.step-description {
    color: #b0bac5;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.features-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    color: #b0bac5;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
    top: -2px;
}

.step-note {
    font-style: italic;
    color: #4a90e2;
    font-weight: 500;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(74, 144, 226, 0.3);
}

/* Sección para Conductores */
.drivers-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    color: #e0e6ed;
    position: relative;
    overflow: hidden;
}

.drivers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 226, 0.5), transparent);
}

.drivers-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.drivers-text {
    flex: 1;
    padding-right: 2rem;
}

.drivers-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.drivers-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.drivers-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.drivers-image:hover .drivers-img {
    transform: scale(1.03);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0 3rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateY(-3px);
    border-color: rgba(74, 144, 226, 0.2);
}

.benefit-icon {
    font-size: 1.8rem;
    min-width: 40px;
    text-align: center;
    color: #4a90e2;
}

.benefit-text h3 {
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.benefit-text p {
    color: #b0bac5;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.driver-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4a90e2, #6b48ff);
    color: white !important;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.driver-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.6);
    background: linear-gradient(135deg, #5a9cec, #7b58ff);
}

/* Sección Por Qué Elegirnos */
.why-choose-us {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.why-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.features-grid li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: #e0e6ed;
}

.features-grid li:hover {
    background: rgba(74, 144, 226, 0.1);
    transform: translateX(5px);
    border-color: rgba(74, 144, 226, 0.2);
}

.cta-box {
    text-align: center;
    padding: 2rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    margin-top: 2.5rem;
    border: 1px solid rgba(74, 144, 226, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #6b48ff);
}

.cta-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-subtext {
    color: #b0bac5;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Media Queries para la sección Cómo Funciona */
@media (max-width: 768px) {
    .how-it-works {
        padding: 4rem 1rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .why-choose-us {
        padding: 2rem 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 1.5rem 1rem;
    }
}

/* Media Queries para la sección hero */
@media (max-width: 1200px) {
    .hero {
        height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .hero {
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .download-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero {
        height: 45vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        padding: 0 15px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
    }
}

/* Media Queries para la sección de beneficios */
@media (max-width: 768px) {
    .benefits-section {
        padding: 4rem 1rem;
        background: #0a0e17;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .benefit-icon {
        font-size: 2.8rem;
        margin-bottom: 1rem;
        display: block;
    }
    
    .benefit-title {
        font-size: 1.4rem;
        margin: 0.5rem 0 1rem;
        line-height: 1.3;
    }
    
    .benefit-description {
        font-size: 1rem;
    }
}

/* Estilos para el mockup del teléfono - Oculto por petición del usuario */
.phone-mockup {
    display: none;
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    padding: 0 15px;
}

.phone-frame {
    position: relative;
    width: 100%;
    padding-bottom: 200%; /* Relación de aspecto para el teléfono */
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 12px solid #1a1a1a;
}

.phone-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Media queries para el mockup del teléfono */
@media (max-width: 768px) {
    .phone-mockup {
        max-width: 250px;
        margin: 1.5rem auto 0;
    }
    
    .phone-frame {
        border-width: 10px;
        border-radius: 30px;
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        max-width: 200px;
        margin: 1rem auto 0;
    }
    
    .phone-frame {
        border-width: 8px;
        border-radius: 20px;
    }
}

.download-btn:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.phone-mockup {
    position: relative;
    margin: 2rem auto 0;
    max-width: 300px;
    padding: 0 20px;
    z-index: 2;
}

.phone-frame {
    position: relative;
    background: #fff;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-10deg) rotateX(10deg);
    transition: transform 0.5s ease;
}

.phone-screen {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: inset 0 0 0 2px #f0f0f0;
}

.phone-screen img {
    display: block;
    width: 100%;
    height: auto;
}

/* Animaciones */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Modo oscuro para dispositivos que lo prefieran */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #e8eaed;
        --text-secondary: #9aa0a6;
        --text-light: #bdc1c6;
        --background: #202124;
        --gray-lightest: #3c4043;
        --gray-lighter: #5f6368;
        --gray-light: #80868b;
        --gray: #9aa0a6;
        --gray-dark: #dadce0;
        --gray-darker: #e8eaed;
        --primary-color: #8ab4f8;  /* Azul más claro para mejor contraste en oscuro */
        --primary-dark: #5e97f6;   /* Azul oscuro más claro */
    }
    
    /* Asegurar que el fondo se aplique correctamente */
    html, body {
        background-color: var(--background);
        color: var(--text-color);
    }
    
    /* Mejorar contraste en modo oscuro */
    .hero-title, .hero-subtitle {
        color: var(--white);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
        margin-left: 0;
        margin-right: 0;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        opacity: 0.95;
    }
    
    .hero-background .overlay {
        background: linear-gradient(
            135deg, 
            rgba(0, 0, 0, 0.8) 0%, 
            rgba(0, 0, 0, 0.6) 50%, 
            rgba(0, 0, 0, 0.5) 100%
        );
        opacity: 1;
        z-index: 2;
    }
    
    .download-btn {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .download-btn:hover {
        background: rgba(255, 255, 255, 0.15);
    }
}

/* Estilos para móviles pequeños (hasta 480px) */
@media (max-width: 480px) {
    /* Asegurar que el fondo oscuro se herede correctamente */
    body {
        background-color: var(--background);
        color: var(--text-on-dark);
    }
    
    .header {
        background-color: var(--header-bg);
    }
    .hero {
        min-height: 100vh;
        padding-top: 70px; /* Espacio para el header */
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
        padding: 0 10px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
        margin-bottom: 2rem;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 2.5rem;
    }
    
    .download-btn {
        width: 220px;
        max-width: 100%;
        justify-content: center;
    }
    
    .phone-mockup {
        margin-top: 2.5rem;
        max-width: 260px;
    }
    
    .phone-frame {
        transform: none;
        border-radius: 30px;
    }
}

/* Estilos para tablets (481px a 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
        margin-bottom: 2.5rem;
    }
    
    .download-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-bottom: 3rem;
    }
    
    .phone-mockup {
        max-width: 280px;
        margin: 2.5rem auto 0;
    }
}

/* Estilos responsivos para la sección de conductores */
@media (max-width: 992px) {
    .drivers-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .drivers-text {
        padding-right: 0;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .benefit-item {
        text-align: left;
    }
    
    .driver-cta {
        width: 100%;
        max-width: 300px;
        margin: 1rem auto 0;
    }
    
    .drivers-image {
        max-width: 100%;
        margin: 0 auto;
    }
}

/* Estilos para móviles (hasta 768px) */
@media (max-width: 768px) {
    /* Ajustes para mejorar la legibilidad en móviles */
    .hero {
        padding-top: 70px;
        min-height: 100vh;
    }
    
    .hero-background .overlay {
        background: linear-gradient(
            135deg, 
            rgba(0, 0, 0, 0.8) 0%, 
            rgba(0, 0, 0, 0.7) 50%, 
            rgba(0, 0, 0, 0.6) 100%
        );
    }
    
    .hero-image {
        background-position: left center;
        background-size: cover;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
        background-color: rgba(0, 0, 0, 0.3);
        padding: 12px 15px;
        border-radius: 8px;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    /* Header */
    .header {
        padding: 15px 0;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        background: var(--header-bg);
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Logo */
    .logo {
        z-index: 1002;
        position: relative;
    }
    
    .logo-placeholder {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--primary-color);
        color: var(--white);
        border-radius: 12px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
    }
    
    .logo-placeholder:active {
        transform: scale(0.95);
    }
    
    /* Menú principal */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 88%;
        max-width: 320px;
        height: 100vh;
        background: var(--header-bg);
        padding: 30px 20px;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        z-index: 999;
        overflow-y: auto;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        display: flex;
        flex-direction: column;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    /* Menú de navegación */
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin: 0 0 20px;
        padding: 0;
        list-style: none;
    }
    
    .nav-links li {
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .nav-links a {
        display: block;
        padding: 14px 20px;
        color: var(--text-on-dark);
        font-size: 1.1rem;
        font-weight: 500;
        border-radius: 10px;
        transition: all 0.25s ease;
        text-decoration: none;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.1);
        color: var(--primary-color);
        transform: translateX(5px);
    }
    
    /* Botón CTA */
    .cta-button {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin: 25px 0;
        padding: 14px 20px;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1.05rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.25s ease;
        box-shadow: 0 4px 12px rgba(26, 115, 232, 0.25);
    }
    
    .cta-button i {
        margin-right: 10px;
        font-size: 1.1em;
    }
    
    .cta-button:active {
        transform: translateY(2px);
        box-shadow: 0 2px 6px rgba(26, 115, 232, 0.25);
    }
    
    /* Selector de idioma */
    .language-selector {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 30px 0 10px;
        padding: 8px;
        background: #f8fafc;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }
    
    .language-btn {
        background: none;
        border: none;
        padding: 6px 16px;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        color: #718096;
        border-radius: 8px;
        transition: all 0.2s ease;
    }
    
    .language-btn.active {
        background: white;
        color: #1a73e8;
        font-weight: 600;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }
    
    /* Botón hamburguesa */
    .hamburger {
        position: fixed;
        top: 20px;
        right: 15px;
        width: 48px;
        height: 48px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: white;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        z-index: 1001;
        padding: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
    }
    
    .hamburger:active {
        transform: scale(0.95);
    }
    
    .bar {
        display: block;
        width: 24px;
        height: 2.5px;
        background: #1a73e8;
        margin: 3.5px 0;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Overlay para fondo oscuro del menú móvil */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 998;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ============================================
   ESTILOS PARA LOS MODALES
   ============================================ */

/* Estilos base para todos los modales */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.modal-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin: 2rem auto;
    z-index: 2;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-content {
    background: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gray-lightest);
}

.modal-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e17 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-lighter);
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.close-modal:hover {
    opacity: 1;
}

.modal-body {
    padding: 1.5rem;
}

.modal-actions {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid var(--gray-lighter);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Estilos específicos para el modal de contacto */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-lighter);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(3px);
}

.contact-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(26, 115, 232, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 1.05rem;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-item span {
    color: var(--text-color);
    font-size: 1.05rem;
}

/* Animación para el modal */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   ESTILOS PARA EL BOTÓN Y MODAL DE MUNICIPIOS PRÓXIMOS
   ============================================ */

/* Estilos para el contenedor del botón */
.upcoming-cities-container {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-lighter);
    text-align: center;
}

.upcoming-cities-container p {
    color: var(--text-secondary);
    font-size: 0.95em;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.upcoming-cities-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    margin: 0.5rem 0;
}

.upcoming-cities-btn:hover {
    background: linear-gradient(135deg, #0d47a1 0%, #1a73e8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.upcoming-cities-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.upcoming-cities-btn i {
    font-size: 1.1em;
}

/* Contenedor principal del modal */
#upcoming-cities-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

/* Overlay del modal */
#upcoming-cities-modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1;
}

/* Contenedor del contenido del modal */
#upcoming-cities-modal .modal-container {
    position: relative;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    z-index: 2;
    animation: modalFadeIn 0.3s ease-out;
}

/* Contenido del modal */
#upcoming-cities-modal .modal-content {
    background: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--gray-lightest);
}

/* Encabezado del modal */
#upcoming-cities-modal .modal-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e17 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-lighter);
}

#upcoming-cities-modal .modal-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

#upcoming-cities-modal .modal-icon {
    font-size: 2rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#upcoming-cities-modal .modal-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

#upcoming-cities-modal .modal-subtitle {
    margin: 0.3rem 0 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Botón de cierre */
#upcoming-cities-modal .close-modal {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

#upcoming-cities-modal .close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotate(90deg);
}

/* Cuerpo del modal */
#upcoming-cities-modal .modal-body {
    padding: 1.5rem;
    background: var(--background);
}

/* Tarjetas del modal */
#upcoming-cities-modal .modal-card {
    background: var(--gray-lightest);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-lighter);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

#upcoming-cities-modal .modal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 144, 226, 0.2);
}

/* Encabezado de las tarjetas */
#upcoming-cities-modal .card-header {
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--gray-lighter);
}

#upcoming-cities-modal .card-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

#upcoming-cities-modal .card-header h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* Badge de contador */
#upcoming-cities-modal .badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-left: auto;
}

/* Pie de las tarjetas */
#upcoming-cities-modal .card-footer {
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--gray-lighter);
}

#upcoming-cities-modal .card-footer i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Mapa */
#upcoming-cities-modal .map-container {
    position: relative;
    height: 300px;
    width: 100%;
    background: var(--gray-lightest);
}

#upcoming-cities-modal .map-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    z-index: 10;
}

#upcoming-cities-modal .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

/* Grid de ciudades */
#upcoming-cities-modal .cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

/* Tarjeta de ciudad */
#upcoming-cities-modal .city-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-lightest);
}

#upcoming-cities-modal .city-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#upcoming-cities-modal .city-card i {
    color: var(--primary-color);
    font-size: 1.2rem;
    background: rgba(26, 115, 232, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#upcoming-cities-modal .city-card h5 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

#upcoming-cities-modal .city-card span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Badge de estado */
#upcoming-cities-modal .status-badge {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#upcoming-cities-modal .coming-soon {
    background: rgba(52, 168, 83, 0.2);
    color: #34a853;
}

/* Acciones del modal */
#upcoming-cities-modal .modal-actions {
    padding: 1.25rem 1.5rem;
    background: var(--gray-lightest);
    border-top: 1px solid var(--gray-lighter);
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* Botones */
#upcoming-cities-modal .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid transparent;
}

#upcoming-cities-modal .btn i {
    font-size: 1rem;
}

#upcoming-cities-modal .btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

#upcoming-cities-modal .btn-primary:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

#upcoming-cities-modal .btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--gray);
}

#upcoming-cities-modal .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Animaciones */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Estilos responsivos */
@media (max-width: 992px) {
    #upcoming-cities-modal .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    #upcoming-cities-modal .modal-actions {
        flex-direction: column;
    }
    
    #upcoming-cities-modal .btn {
        width: 100%;
    }
}

/* ============================================
   MEDIA QUERIES PARA MÓVILES - MODAL MUNICIPIOS
   ============================================ */

@media (max-width: 768px) {
    /* Contenedor principal */
    #upcoming-cities-modal {
        padding: 1rem 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    #upcoming-cities-modal .modal-container {
        max-width: 100%;
        margin: 0.5rem auto;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    /* Contenido del modal */
    #upcoming-cities-modal .modal-content {
        border-radius: 12px 12px 0 0;
        height: 100%;
        max-height: 90vh;
        display: flex;
        flex-direction: column;
    }
    
    /* Encabezado */
    #upcoming-cities-modal .modal-header {
        padding: 1.2rem 1rem;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    #upcoming-cities-modal .modal-header-content {
        align-items: flex-start;
    }
    
    #upcoming-cities-modal .modal-icon {
        width: 42px;
        height: 42px;
        font-size: 1.5rem;
    }
    
    #upcoming-cities-modal .modal-title {
        font-size: 1.3rem;
        line-height: 1.2;
    }
    
    #upcoming-cities-modal .modal-subtitle {
        font-size: 0.85rem;
    }
    
    /* Botón de cierre */
    #upcoming-cities-modal .close-modal {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(255, 255, 255, 0.15);
    }
    
    /* Cuerpo del modal */
    #upcoming-cities-modal .modal-body {
        padding: 1rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex: 1;
    }
    
    /* Tarjetas */
    #upcoming-cities-modal .modal-card {
        margin-bottom: 1rem;
    }
    
    #upcoming-cities-modal .card-header {
        padding: 0.8rem 1rem;
    }
    
    #upcoming-cities-modal .card-header h4 {
        font-size: 1rem;
    }
    
    /* Lista de municipios */
    #upcoming-cities-modal .city-list {
        grid-template-columns: 1fr;
    }
    
    #upcoming-cities-modal .city-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Pie del modal */
    #upcoming-cities-modal .modal-footer {
        padding: 1rem;
        position: sticky;
        bottom: 0;
        background: var(--background);
        border-top: 1px solid var(--gray-lighter);
    }
    
    #upcoming-cities-modal .modal-close-btn {
        width: 100%;
        padding: 0.9rem;
        font-size: 1rem;
    }
    
    /* Ajustes para pantallas pequeñas */
    @media (max-width: 480px) {
        #upcoming-cities-modal {
            padding: 0;
        }
        
        #upcoming-cities-modal .modal-content {
            border-radius: 0;
            max-height: 100vh;
        }
        
        #upcoming-cities-modal .modal-header {
            padding: 1rem 0.8rem 0.8rem;
        }
        
        #upcoming-cities-modal .modal-body {
            padding: 0.8rem;
        }
        
        #upcoming-cities-modal .modal-title {
            font-size: 1.2rem;
        }
    }
    
    #upcoming-cities-modal .cities-grid {
        grid-template-columns: 1fr;
    }
    
    #upcoming-cities-modal .modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    #upcoming-cities-modal .close-modal {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    #upcoming-cities-modal .modal-body {
        padding: 1rem;
    }
    
    #upcoming-cities-modal .cities-card .card-header {
        flex-wrap: wrap;
    }
    
    #upcoming-cities-modal .badge {
        margin: 0.5rem 0 0 0;
        width: 100%;
        text-align: left;
    }
}

/* Estilos para el modal de municipios próximos */
#upcoming-cities-modal .modal-content {
    max-width: 900px;
    width: 95%;
    margin: 2rem auto;
    background: var(--background);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid var(--gray-lightest);
}

#upcoming-cities-modal .modal-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1f2e 0%, #0a0e17 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--gray-lighter);
}

#upcoming-cities-modal .modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

#upcoming-cities-modal .close-modal {
    cursor: pointer;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

#upcoming-cities-modal .close-modal:hover {
    color: white;
}

#upcoming-cities-modal .modal-subtitle {
    padding: 0 1.5rem;
    margin: 1rem 0 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

#upcoming-cities-modal .modal-body {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

#upcoming-cities-modal .upcoming-cities-list {
    margin-top: 1.5rem;
    background: var(--gray-lightest);
    border-radius: 8px;
    padding: 1.5rem;
}

#upcoming-cities-modal .upcoming-cities-list h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

#upcoming-cities-modal .upcoming-cities-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.8rem;
}

#upcoming-cities-modal .upcoming-cities-list li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

#upcoming-cities-modal .upcoming-cities-list i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

#upcoming-cities-modal .modal-actions {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-end;
    background: var(--gray-lightest);
    border-top: 1px solid var(--gray-lighter);
}

#upcoming-cities-modal .cta-button {
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    color: white;
}

#upcoming-cities-modal .cta-button:hover {
    background: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

/* Estilos para el mapa en el modal */
#upcoming-coverage-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--gray-lightest);
    border: 1px solid var(--gray-lighter);
}

/* Estilos para móviles */
@media (max-width: 768px) {
    #upcoming-cities-modal .modal-content {
        width: 95%;
        margin: 1rem auto;
        border-radius: 8px;
    }
    
    #upcoming-cities-modal .upcoming-cities-list ul {
        grid-template-columns: 1fr;
    }
    
    #upcoming-cities-modal .modal-body {
        padding: 1rem;
    }
    
    #upcoming-cities-modal .upcoming-cities-list {
        padding: 1rem;
    }
    
    #upcoming-coverage-map {
        height: 300px;
    }
}

/* Estilos para el mapa */
#map {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin: 1rem 0;
    background-color: #e0e0e0; /* Color de fondo temporal */
}

#map.leaflet-container {
    background-color: #e0e0e0;
    z-index: 1;
}

/* Estilos para el modal de registro de conductor */
#registro-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

#registro-modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
}

#registro-modal .modal-content {
    position: relative;
    background: #1a1a1a;
    margin: 30px auto;
    max-width: 900px;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    z-index: 1002;
    padding: 0;
    box-sizing: border-box;
    transform: translateY(-20px);
    opacity: 0;
    animation: modalFadeIn 0.3s ease-out forwards;
    overflow: hidden;
    color: #f0f0f0;
}

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

@keyframes modalFadeOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-20px);
        opacity: 0;
    }
}

#registro-modal .close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #f0f0f0;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

#registro-modal .close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

#registro-modal .modal-header {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, var(--primary-color), #1a3a6a);
    color: white;
    position: relative;
}

#registro-modal .modal-header h2 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

#registro-modal .modal-header p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

#registro-modal .registration-info {
    display: flex;
    flex-wrap: wrap;
    background: #1a1a1a;
}

#registro-modal .info-text {
    flex: 1;
    min-width: 300px;
    padding: 25px;
    background: #1a1a1a;
}

#registro-modal .info-item {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

#registro-modal .info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    min-width: 24px;
    text-align: center;
}

#registro-modal .info-item h3 {
    margin: 0 0 5px 0;
    color: #f0f0f0;
    font-size: 1.1rem;
}

#registro-modal .info-item p {
    margin: 0;
    color: #bbb;
    line-height: 1.8;
}

#registro-modal .phone-link,
#registro-modal .email-link {
    color: #f0f0f0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    margin: 2px 0;
}

#registro-modal .phone-link:hover,
#registro-modal .email-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

#registro-modal .email-link i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Estilos para el marcador flasheante */
@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
    }
}

.pulse-marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.7);
    animation: pulse 2s infinite;
}

.pulse-marker:before,
.pulse-marker:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 0, 0, 0.3);
    animation: pulse 2s infinite;
    animation-delay: 0.5s;
}

.pulse-marker:before {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.pulse-marker:after {
    width: 100%;
    height: 100%;
    animation-delay: 1s;
    opacity: 0.4;
}

.pulse-marker-inner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ff0000;
    z-index: 1;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    border: 2px solid white;
}

#registro-modal .requirements {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

#registro-modal .requirements h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #f0f0f0;
    font-size: 1.2rem;
}

#registro-modal .requirements ul {
    padding-left: 20px;
    margin: 0;
}

#registro-modal .requirements li {
    margin-bottom: 8px;
    color: #bbb;
    position: relative;
    padding-left: 25px;
}

#registro-modal .requirements li:before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

#registro-modal .map-container {
    flex: 1;
    min-width: 300px;
    min-height: 400px;
    background: #2a2a2a;
    position: relative;
    overflow: hidden;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

#registro-modal #map-registro {
    width: 100%;
    height: 100%;
    min-height: 400px;
    transition: all 0.3s ease;
}

/* Estilos específicos para Leaflet */
/* Estilos para el contenedor del mapa en el modal */
#registro-modal .leaflet-container {
    background: #2a2a2a;
    font-family: inherit;
    z-index: 1;
}

/* Estilos para el popup de Leaflet */
.leaflet-popup-content-wrapper {
    padding: 0 !important;
    border-radius: 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    min-width: 250px;
    line-height: 1.5;
}

.leaflet-popup-tip {
    background: white !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-top: none !important;
    border-left: none !important;
    width: 12px !important;
    height: 12px !important;
    margin-left: -6px !important;
    transform: rotate(45deg) !important;
    position: absolute !important;
    bottom: -6px !important;
    left: 50% !important;
}

/* Estilos para el marcador de pulso */
.pulse-marker-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}

#registro-modal .leaflet-popup-content {
    margin: 10px;
    line-height: 1.4;
}

#registro-modal .leaflet-popup-content h4 {
    color: #f0f0f0;
    margin: 5px 0;
    font-size: 1rem;
}

#registro-modal .leaflet-popup-content p {
    color: #bbb;
    margin: 5px 0;
    font-size: 0.9rem;
}

#registro-modal .leaflet-popup-tip {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top-color: transparent;
    border-left-color: transparent;
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    #registro-modal .map-container {
        min-height: 300px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    #registro-modal #map-registro {
        min-height: 300px;
    }
}

#registro-modal .modal-actions {
    display: flex;
    justify-content: flex-end;
    padding: 20px 25px;
    background: #222;
    border-top: 1px solid #333;
    gap: 15px;
}

#registro-modal .btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.95rem;
}

#registro-modal .btn i {
    font-size: 1.1rem;
}

#registro-modal .btn-primary {
    background: var(--primary-color);
    color: white;
}

#registro-modal .btn-primary:hover {
    background: #2a6fd6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

#registro-modal .btn-secondary {
    background: #444;
    color: #f0f0f0;
}

#registro-modal .btn-secondary:hover {
    background: #555;
    transform: translateY(-2px);
}

/* Estilos responsivos para móviles */
@media (max-width: 768px) {
    #registro-modal .modal-content {
        width: 95%;
        margin: 15px auto;
    }
    
    #registro-modal .registration-info {
        flex-direction: column;
    }
    
    #registro-modal .info-text,
    #registro-modal .map-container {
        min-width: 100%;
    }
    
    #registro-modal .modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    #registro-modal .btn {
        width: 100%;
        justify-content: center;
    }
    
    #registro-modal .modal-header h2 {
        font-size: 1.5rem;
    }
    
    #registro-modal .modal-header p {
        font-size: 1rem;
    }
}

/* Estilos para el Modal de Registro */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
}

.modal-content {
    position: relative;
    background: #1a1a1a;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    padding: 0;
    box-sizing: border-box;
    transform: translateY(-20px);
    opacity: 0;
    animation: modalFadeIn 0.3s ease-out forwards;
    overflow: hidden;
    color: #f0f0f0;
}

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

@keyframes modalFadeOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-20px);
        opacity: 0;
    }
}

.modal h2 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-align: center;
}

.modal h3 {
    color: #4a9eff;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.modal p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.requirements {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.requirements ul {
    padding-left: 1.2rem;
    margin: 0.8rem 0;
}

.requirements li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.important-note {
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.modal-map {
    background: #0a0e17;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#map {
    width: 100%;
    height: 300px;
    background: #0a0e17;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a8b8;
}

.directions-btn {
    display: block;
    background: #1a73e8;
    color: white !important;
    text-align: center;
    padding: 0.8rem;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.directions-btn:hover {
    background: #1557b0;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.close-btn {
    background: #2d3748 !important;
    color: #e2e8f0 !important;
}

.close-btn:hover {
    background: #4a5568 !important;
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 95%;
    }
    
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .close-modal {
        font-size: 1.8rem;
        top: 10px;
        right: 15px;
    }
}

/* Estilos para la sección de Testimonios */
.testimonials-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    color: #e0e6ed;
    position: relative;
    overflow: hidden;
}

.testimonials-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 1rem;
}

.testimonials-section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.3rem;
    color: #b0bac5;
    line-height: 1.6;
    padding: 0 1rem;
}

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

.testimonial {
    padding: 0 15px;
    outline: none;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial:hover .testimonial-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(74, 144, 226, 0.3);
}

.testimonial-rating {
    color: #fbbc05;
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e0e6ed;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid rgba(74, 144, 226, 0.3);
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

.author-info p {
    margin: 0;
    color: #b0bac5;
    font-size: 0.9rem;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    gap: 1.5rem;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: #4a90e2;
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #4a90e2;
    transform: scale(1.2);
}

/* Estilos para el carrusel en móviles */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 1rem;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .testimonials-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .testimonial {
        padding: 0 5px;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonials-controls {
        margin-top: 2rem;
    }
}

/* Ajustes para el tema oscuro del carrusel */
.slick-dots li button:before {
    color: rgba(255, 255, 255, 0.5);
}

.slick-dots li.slick-active button:before {
    color: #4a90e2;
}

.slick-prev:before,
.slick-next:before {
    color: #ffffff;
}

.slick-slide:focus {
    outline: none;
}

/* Estilos para los marcadores personalizados del mapa */
.custom-div-icon {
    background: none;
    border: none;
}

.map-point {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: #ff4d4d;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    animation: pulse 2s infinite;
    cursor: pointer;
    z-index: 10;
    transform: translate(-50%, -50%);
}

.map-point .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #ff4d4d;
    border-radius: 50%;
    opacity: 0.6;
    animation: ripple 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* Estilos para la sección de Cobertura Geográfica */
.coverage-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #0a0e17 0%, #121a24 100%);
    color: #e0e6ed;
    position: relative;
    overflow: hidden;
}

.coverage-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
}

.coverage-section .section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #b0bac5;
    line-height: 1.6;
}

.coverage-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.map-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.michoacan-map {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 80%;
    background: #0a0e17;
    border-radius: 12px;
    overflow: hidden;
}

.map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.map-container:hover .map-image {
    opacity: 1;
}

.map-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #4a90e2;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7);
    animation: pulse 2s infinite;
}

.map-point:hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: #fbbc05;
    animation: none;
}

.map-point::after {
    content: '';
    position: absolute;
    width: 110%;
    height: 110%;
    background: rgba(74, 144, 226, 0.3);
    border-radius: 50%;
    animation: ripple 2s infinite;
    top: 0;
    left: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 144, 226, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.cities-container {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cities-container h3 {
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.cities-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #6b48ff);
    border-radius: 3px;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}

.city-column {
    flex: 1;
    min-width: 150px;
}

.city-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.city-item {
    padding: 0.6rem 0.8rem;
    margin-bottom: 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #e0e6ed;
    font-size: 1rem;
    position: relative;
    padding-left: 1.8rem;
}

.city-item::before {
    content: '📍';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.city-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: #ffffff;
}

.city-item:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.2);
}

.coverage-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px dashed rgba(74, 144, 226, 0.3);
}

.coverage-note p {
    margin: 0;
    color: #b0bac5;
    font-size: 1.1rem;
}

.coverage-note a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.coverage-note a:hover {
    color: #fbbc05;
    text-decoration: underline;
}

/* Estilos responsivos para la sección de cobertura */
@media (max-width: 1200px) {
    .coverage-container {
        flex-direction: column;
    }
    
    .map-container, .cities-container {
        width: 100%;
        max-width: 800px;
    }
    
    .michoacan-map {
        padding-bottom: 70%;
    }
}

@media (max-width: 768px) {
    .coverage-section {
        padding: 4rem 1rem;
    }
    
    .coverage-section .section-title {
        font-size: 2rem;
    }
    
    .coverage-section .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .cities-grid {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .city-column {
        width: 100%;
    }
    
    .city-item {
        padding: 0.5rem 0.8rem 0.5rem 2rem;
    }
    
    .coverage-note {
        padding: 1rem;
    }
    
    .coverage-note p {
        font-size: 1rem;
    }
}

/* ============================================
   SECCIÓN DE SEGURIDAD
   ============================================ */
.security-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #0a0e17 0%, #1a1f2e 100%);
    color: #e0e6ed;
    position: relative;
    overflow: hidden;
}

.security-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.security-section .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 1rem;
}

.security-section .section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.6;
    padding: 0 1rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 0.5rem;
}

.security-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    margin: 0.5rem;
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    color: #1a73e8;
    display: inline-block;
    transition: transform 0.3s ease;
}

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

.security-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-card p {
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Efecto de partículas de fondo */
.security-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)" /></svg>');
    opacity: 0.5;
    z-index: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .security-section {
        padding: 3rem 0.5rem;
    }
    
    .security-section .section-title {
        font-size: 1.8rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .security-card {
        padding: 1.5rem 1.2rem;
    }
    
    .security-card h3 {
        font-size: 1.2rem;
    }
    
    .security-icon {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .security-section {
        padding: 2.5rem 0.25rem;
    }
    
    .security-section .section-title {
        font-size: 1.6rem;
    }
    
    .security-grid {
        padding: 0 0.25rem;
    }
    
    .security-card {
        padding: 1.5rem 1rem;
    }
    
    .security-card h3 {
        font-size: 1.2rem;
    }
    
    .security-icon {
        font-size: 2.2rem;
    }
}

/* ============================================
   ESTILOS PARA EL HERO CON IMÁGENES RESPONSIVAS
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Contenedor de la imagen de fondo */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/uploads/ciudad-mobile.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0; /* Cambiado de 1 a 0 */
}

/* Overlay oscuro para mejorar la legibilidad */
/*.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1; /* Cambiado de 2 a 1 */
    /*pointer-events: none; /* Permite hacer clic a través del overlay */
/*}*/

/* Contenido del hero */
.hero-content {
    position: relative;
    z-index: 2; /* Mantenemos este como el más alto */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
    text-align: center;
    pointer-events: auto; /* Asegura que el contenido sea clickeable */
}

/* Media queries para imágenes responsivas */
/* Para tablets (ancho mínimo 768px) */
@media (min-width: 768px) {
    .hero-image {
        background-image: url('/uploads/ciudad-tablet.webp');
    }
}

/* Para escritorios (ancho mínimo 1024px) */
@media (min-width: 1024px) {
    .hero-image {
        background-image: url('/uploads/ciudad-desktop.webp');
    }
}

/* ============================================
   ESTILOS PARA SCROLL SUAVE
   ============================================ */
html {
    scroll-behavior: smooth;
}

/* Ajuste para el desplazamiento suave en móviles */
@media screen and (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Estilo para la animación de desplazamiento */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Aplicar animación a la sección de seguridad */
#seguridad {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Ajuste para el header fijo al hacer scroll */
:target::before {
    content: "";
    display: block;
    height: 80px; /* Altura del header */
    margin: -80px 0 0; /* Valor negativo de la altura del header */
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    :target::before {
        height: 60px; /* Altura reducida para móviles */
        margin: -60px 0 0;
    }
}

/* Estilos para el menú móvil */
@media (max-width: 992px) {
    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 1000;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: #0a0e17;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 2rem 2rem;
        transition: right 0.5s ease-in-out;
        z-index: 999;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.5s ease;
    }

    .nav-links.open li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 0.8rem 1rem;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(255, 255, 255, 0.1);
        color: #4a90e2;
        transform: translateX(5px);
    }

    .language-selector {
        margin: 2rem 0 0;
        justify-content: center;
        width: 100%;
    }

    /* Overlay para fondo oscuro */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }

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

/* ============================================
   CHAT FLOTANTE DE WHATSAPP
   ============================================ */
/* Botón flotante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366; /* Color de WhatsApp */
    color: #fff;
    border: none;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    cursor: pointer;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.whatsapp-float:active,
.whatsapp-float:focus,
.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #fff;
}

/* Mejorar la respuesta táctil */
@media (hover: none) {
    .whatsapp-float:hover {
        transform: none;
    }
    
    .whatsapp-float:active {
        transform: scale(0.95);
    }
}

/* Contenedor del chat */
.whatsapp-chat {
    position: fixed;
    width: 350px;
    height: 500px;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(120%);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-chat.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* Cabecera del chat */
.chat-header {
    background: #075E54;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
}

.chat-title i {
    font-size: 20px;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
}

.close-chat:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Cuerpo del chat */
.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #e5ddd5;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path fill="%23e0d6cc" d="M30 15 L15 30 L20 35 L5 50 L20 65 L15 70 L30 85 L35 80 L50 95 L65 80 L70 85 L85 70 L80 65 L95 50 L80 35 L85 30 L70 15 L65 20 L50 5 L35 20 L30 15 Z"/></svg>');
    background-size: 350px;
    display: flex;
    flex-direction: column;
}

.chat-message {
    margin-bottom: 15px;
}

.message-bubble {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
    line-height: 1.4;
}

.message-bubble.bot {
    background: white;
    border-top-left-radius: 5px;
    margin-right: auto;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
}

.message-bubble p {
    margin: 0 0 5px 0;
    color: #111b21;
    font-size: 14.2px;
}

.message-time {
    font-size: 11px;
    color: #667781;
    text-align: right;
    display: block;
}

/* Indicador de escritura */
.typing-indicator {
    display: none;
    background: white;
    padding: 10px 15px;
    border-radius: 18px;
    border-top-left-radius: 5px;
    margin-right: auto;
    margin-top: 5px;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
    width: fit-content;
}

.typing-indicator.active {
    display: flex;
    gap: 5px;
    align-items: center;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background-color: #9e9e9e;
    border-radius: 50%;
    display: inline-block;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-5px); }
}

/* Pie del chat - Área de entrada */
.chat-footer {
    background: #f0f0f0;
    padding: 10px 15px;
    border-top: 1px solid #e0e0e0;
}

.message-input-container {
    display: flex;
    background: white;
    border-radius: 21px;
    padding: 5px 5px 5px 15px;
    align-items: center;
}

#message-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    padding: 10px 0;
    background: transparent;
    color: #111b21;
}

#message-input::placeholder {
    color: #9e9e9e;
}

.send-button {
    background: #075E54;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.send-button:hover {
    background: #128C7E;
}

.send-button i {
    font-size: 18px;
}

/* Animación de entrada del chat */
@keyframes slideInUp {
    from {
        transform: translateY(120%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Ajustes responsivos */
@media (max-width: 480px) {
    .whatsapp-chat {
        width: 90%;
        height: 70vh;
        right: 5%;
        bottom: 80px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

/* Efecto de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Animación para los enlaces del menú móvil */
@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   ESTILOS PARA EL FOOTER
   ============================================ */
.site-footer {
    background-color: #121212;
    color: var(--text-color);
    padding: 4rem 0 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo .logo-placeholder {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 8px;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.footer-logo .slogan {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

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

.footer-title {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* ============================================
   ESTILOS DEL FOOTER
   ============================================ */

.site-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 0;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-placeholder {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(26, 115, 232, 0.3);
}

.footer-logo .slogan {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0.5rem 0;
}

.footer-text {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 1rem 0;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Estilos para la sección de contacto */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #b0b0b0;
    line-height: 1.5;
}

.footer-contact i {
    margin-right: 0.75rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-link {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Estilos para las redes sociales */
.social-links {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(26, 115, 232, 0.3);
}

/* Estilos para los botones de descarga */
.footer-download {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.download-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-btn i {
    font-size: 1.8rem;
    margin-right: 0.75rem;
}

.download-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.download-btn-text span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.download-btn-text strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilos para la sección inferior del footer */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem 0;
    text-align: center;
    margin-top: 3rem;
    font-size: 0.85rem;
    color: #888888;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
}

/* Prevenir desbordamiento horizontal en todo el sitio */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 992px) and (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    /* Asegurar que el correo no haga overflow */
    .contact-link {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding: 2rem 0 0;
        width: 100%;
        overflow: hidden;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-section {
        margin-bottom: 1.25rem;
        padding: 0 0.25rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
        margin-bottom: 0.75rem;
        padding: 0;
    }
    
    .footer-logo .logo-placeholder {
        margin: 0 auto 0.5rem;
    }
    
    .footer-title {
        margin: 0.75rem 0 0.5rem;
        padding-bottom: 0.25rem;
        font-size: 0.9rem;
        text-align: left;
    }
    
    .footer-links,
    .footer-contact {
        padding-left: 0;
        margin: 0;
        width: 100%;
    }
    
    .footer-links li,
    .footer-contact li {
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    .footer-links a,
    .contact-link {
        font-size: 0.82rem;
        display: inline-block;
        width: 100%;
        word-break: break-word;
    }
    
    .social-links {
        justify-content: flex-start;
        margin: 0.75rem 0;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    /* Sección de descargas mejorada */
    .footer-download {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0.75rem;
        justify-content: space-between;
        margin: 0.5rem 0 0;
        width: 100%;
        padding: 0;
        max-width: 100%;
    }
    
    .download-btn {
        flex: 1 1 50%;
        min-width: 0;
        max-width: 100%;
        padding: 0.8rem 0.25rem;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.7rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        box-sizing: border-box;
    }
    
    .download-btn i {
        font-size: 1.3rem;
        margin: 0 0.4rem 0 0;
        flex-shrink: 0;
        line-height: 1;
    }
    
    .download-btn-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.1;
        text-align: left;
    }
    
    .footer-bottom {
        margin-top: 0.75rem;
        padding: 1rem 0.75rem;
        font-size: 0.75rem;
        line-height: 1.4;
        width: 100%;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 420px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.75rem;
    }
    
    .footer-section {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .footer-title {
        margin: 1.25rem 0 0.75rem;
    }
    
    .footer-download {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .download-btn {
        width: 100%;
        max-width: none;
        padding: 0.8rem 0.5rem;
        font-size: 0.7rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .download-btn i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 1.25rem;
    }
    
    .footer-download {
        flex-direction: column;
    }
    
    .download-btn {
        width: 100%;
        justify-content: flex-start;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}
