/* ==========================================================================
   COLECTIVAS AUTOS - CSS ESPECÍFICO (VERSIÓN MEJORADA)
   ========================================================================== */

/* Variables específicas para esta página */
:root {
    /* Colores principales (mejorados) */
    --color-primary: #001632;
    --color-primary-light: #0a2a4a;
    --color-accent: #FC4303;
    --color-accent-light: #ff6b35;
    --color-dark: #0a0e17;
    --color-light: #f8fafc;
    
    /* Gradientes (manteniendo compatibilidad) */
    --color-gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --color-gradient-accent: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    --color-gradient-light: linear-gradient(135deg, rgba(252, 67, 3, 0.1) 0%, rgba(0, 22, 50, 0.05) 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e17 0%, #1a2238 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Sombras mejoradas */
    --shadow-hero: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 10px 30px rgba(0, 22, 50, 0.2);
    --shadow-card-hover: 0 20px 40px rgba(252, 67, 3, 0.25);
    --shadow-form: 0 20px 60px rgba(0, 22, 50, 0.4);
    --shadow-glow: 0 0 40px rgba(252, 67, 3, 0.2);
    
    /* Espaciados */
    --section-spacing-xl: 120px;
    --section-spacing-lg: 80px;
    --section-spacing-md: 60px;
}

/* ==========================================================================
   HERO SECTION - Rediseño completo con tono oscuro y animaciones
   ========================================================================== */

/* Contenedor principal del hero */
.colectivas-hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
    color: var(--color-light);
    padding: 100px 0 80px;
    margin-top: 80px;
    isolation: isolate;
}

/* Partículas animadas de fondo */
.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--color-accent);
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0.1;
}

.particle:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    background: linear-gradient(135deg, var(--color-accent), transparent);
}

.particle:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 10%;
    animation-delay: -5s;
    background: linear-gradient(135deg, transparent, var(--color-accent));
}

.particle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 15%;
    left: 15%;
    animation-delay: -10s;
    opacity: 0.05;
}

.particle:nth-child(4) {
    width: 30px;
    height: 30px;
    bottom: 30%;
    right: 20%;
    animation-delay: -7s;
}

.particle:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 40%;
    left: 70%;
    animation-delay: -12s;
}

/* Gradiente animado */
.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(252, 67, 3, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 22, 50, 0.2) 0%, transparent 50%);
    animation: gradientShift 10s ease-in-out infinite alternate;
    z-index: 1;
}

/* Líneas decorativas */
.hero-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(252, 67, 3, 0.1), transparent);
    height: 1px;
}

.line-1 {
    top: 20%;
    width: 100%;
    animation: lineMove 20s linear infinite;
}

.line-2 {
    top: 60%;
    width: 100%;
    animation: lineMove 15s linear infinite reverse;
    opacity: 0.5;
}

.line-3 {
    top: 40%;
    width: 100%;
    animation: lineMove 25s linear infinite;
    opacity: 0.3;
}

/* Grid principal */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Columna de contenido */
.hero-content-col {
    padding-right: 40px;
}

.hero-badge-wrapper {
    margin-bottom: 30px;
    transform-origin: left center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-gradient-accent);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-glow);
    animation: badgePulse 3s infinite;
}

.badge-icon {
    font-size: 1.2rem;
}

/* Título principal */
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.title-line {
    display: block;
}

.title-line:first-child {
    background: linear-gradient(135deg, #ffffff 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line.subtitle {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-top: 5px;
}

.text-highlight {
    color: var(--color-accent);
    -webkit-text-fill-color: var(--color-accent);
}

/* Descripción */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 550px;
    position: relative;
    padding-left: 20px;
}

.hero-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--color-gradient-accent);
    border-radius: 2px;
}

/* Puntos destacados */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.highlight-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    background: rgba(252, 67, 3, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(252, 67, 3, 0.3);
}

/* Estadísticas */
.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
    text-align: center;
    flex: 1;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--color-gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Botones CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: var(--color-gradient-accent);
    color: white;
    box-shadow: var(--shadow-card-hover);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(252, 67, 3, 0.3);
}

.cta-button.whatsapp {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.cta-button.whatsapp:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Columna del formulario */
.hero-form-col {
    position: relative;
}

.form-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-form);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-gradient-accent);
    z-index: 3;
}

/* Encabezado del formulario */
.form-header {
    text-align: center;
    margin-bottom: 35px;
}

.form-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(252, 67, 3, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(252, 67, 3, 0.2);
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.form-header .highlight {
    color: var(--color-accent);
}

.form-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Formulario */
.hero-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group.floating {
    position: relative;
}

.form-group.floating label {
    position: absolute;
    left: 0;
    top: 16px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
    transform-origin: left top;
}

.form-group.floating input,
.form-group.floating textarea {
    width: 100%;
    padding: 16px 0 8px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group.floating textarea {
    min-height: 80px;
    resize: vertical;
}

.form-group.floating input:focus,
.form-group.floating textarea:focus {
    outline: none;
    border-bottom-color: var(--color-accent);
}

.form-group.floating input:focus + label,
.form-group.floating textarea:focus + label,
.form-group.floating input:not(:placeholder-shown) + label,
.form-group.floating textarea:not(:placeholder-shown) + label {
    transform: translateY(-20px) scale(0.85);
    color: var(--color-accent);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gradient-accent);
    transition: width 0.4s ease;
}

.form-group.floating input:focus ~ .form-line,
.form-group.floating textarea:focus ~ .form-line {
    width: 100%;
}

/* Select personalizado */
.form-group:not(.floating) label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.custom-select {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    color: white;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.custom-select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(252, 67, 3, 0.1);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: calc(50% + 8px);
    transform: translateY(-50%);
    pointer-events: none;
    color: rgba(255, 255, 255, 0.6);
}

/* Botón de envío */
.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--color-gradient-accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(252, 67, 3, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Disclaimer */
.form-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 20px;
    line-height: 1.5;
}

.form-disclaimer a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-disclaimer a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Alternativa de contacto */
.form-alternative {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.alternative-divider {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}

.alternative-divider span {
    display: inline-block;
    padding: 0 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

.alternative-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.alternative-whatsapp {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.alternative-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.1);
}

.whatsapp-icon {
    width: 40px;
    height: 40px;
    background: #25D366; /* Verde de WhatsApp */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Asegurar que el SVG herede correctamente */
.whatsapp-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.whatsapp-info {
    display: flex;
    flex-direction: column;
}

.whatsapp-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.whatsapp-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* Scroll indicator mejorado */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    z-index: 2;
    animation: fadeInUp 1s ease 1.5s both;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

/* ==========================================================================
   INTRO SECTION (MANTENIDO SIN CAMBIOS)
   ========================================================================== */
.intro-section {
    padding: var(--section-spacing-xl) 0;
    background: #ffffff;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #001632;
    margin-bottom: 20px;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(252, 67, 3, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h3 {
    font-size: 1.2rem;
    color: #001632;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.intro-visual .visual-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card-hover);
}

.card-header {
    background: var(--color-gradient-primary);
    color: white;
    padding: 25px 30px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.card-body {
    padding: 30px;
}

.ideal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ideal-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #001632;
    border-bottom: 1px solid #f0f0f0;
}

.ideal-list li:last-child {
    border-bottom: none;
}

.ideal-list li svg {
    flex-shrink: 0;
}

/* ==========================================================================
   COVERAGE SECTION (MANTENIDO SIN CAMBIOS)
   ========================================================================== */
.coverage-section {
    padding: var(--section-spacing-lg) 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: #FC4303;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.coverages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.coverage-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow-card);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.coverage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-gradient-light);
    transition: left 0.6s ease;
    z-index: 0;
}

.coverage-card:hover::before {
    left: 0;
}

.coverage-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-card-hover);
}

.coverage-icon {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.coverage-card h3 {
    font-size: 1.5rem;
    color: #001632;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.coverage-card > p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.coverage-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 0.95rem;
}

.coverage-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FC4303;
    font-size: 1.2rem;
    line-height: 1;
}

/* ==========================================================================
   PROCESS SECTION (MANTENIDO SIN CAMBIOS)
   ========================================================================== */
.process-section {
    padding: var(--section-spacing-lg) 0;
    background: white;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--color-gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(252, 67, 3, 0.3);
    position: relative;
    z-index: 1;
}

.step-content {
    flex: 1;
    padding-top: 10px;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #001632;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(to bottom, #FC4303, transparent);
    z-index: 0;
}

.process-step:last-child .step-connector {
    display: none;
}

/* ==========================================================================
   QUOTE SECTION (MANTENIDO SIN CAMBIOS)
   ========================================================================== */
.quote-section {
    padding: var(--section-spacing-lg) 0;
    background: #f8f9fa;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.quote-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.quote-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #001632;
    font-weight: 500;
}

.benefit-item svg {
    flex-shrink: 0;
    color: #FC4303;
}

.quote-form {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.animated-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.animated-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #001632;
    font-size: 0.95rem;
}

.animated-form input,
.animated-form select,
.animated-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: #001632;
}

.animated-form input:focus,
.animated-form select:focus,
.animated-form textarea:focus {
    outline: none;
    border-color: #FC4303;
    box-shadow: 0 0 0 3px rgba(252, 67, 3, 0.1);
}

.animated-form input::placeholder,
.animated-form textarea::placeholder {
    color: #999;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--color-gradient-accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(252, 67, 3, 0.3);
}

.form-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.form-note a {
    color: #FC4303;
    text-decoration: none;
    font-weight: 500;
}

.form-note a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   FAQ SECTION (MANTENIDO SIN CAMBIOS)
   ========================================================================== */
.faq-section {
    padding: var(--section-spacing-lg) 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #FC4303;
    box-shadow: 0 8px 25px rgba(252, 67, 3, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #001632;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   FINAL CTA (MANTENIDO SIN CAMBIOS)
   ========================================================================== */
.final-cta {
    padding: var(--section-spacing-lg) 0;
    background: var(--color-gradient-primary);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.whatsapp {
    background: #25D366;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-button.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.cta-button.phone {
    background: transparent;
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-button.phone:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ==========================================================================
   ANIMACIONES Y EFECTOS DE SCROLL (INTEGRADAS)
   ========================================================================== */

/* Animaciones para el Hero */
@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(0, -40px) rotate(180deg);
    }
    75% {
        transform: translate(-20px, -20px) rotate(270deg);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes lineMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(252, 67, 3, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(252, 67, 3, 0.5);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Animaciones específicas */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countPop {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(252, 67, 3, 0.3);
    }
    50% {
        box-shadow: 0 10px 40px rgba(252, 67, 3, 0.5);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 67, 3, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(252, 67, 3, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(252, 67, 3, 0);
    }
}

@keyframes formSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clases de animación */
[data-scroll-section] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll-section].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="fadeInUp"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll="fadeInLeft"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll="fadeInRight"] {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-scroll].visible {
    opacity: 1;
    transform: translate(0);
}

/* Retrasos de animación */
[data-delay="0.1"] { transition-delay: 0.1s; }
[data-delay="0.2"] { transition-delay: 0.2s; }
[data-delay="0.3"] { transition-delay: 0.3s; }
[data-delay="0.4"] { transition-delay: 0.4s; }
[data-delay="0.5"] { transition-delay: 0.5s; }
[data-delay="0.6"] { transition-delay: 0.6s; }

/* Efectos específicos */
.animated-form .form-group {
    animation: formSlideIn 0.6s ease forwards;
}

.stat-number.animated {
    animation: countPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-button.primary.pulse {
    animation: pulseGlow 2s infinite;
}

/* ==========================================================================
   RESPONSIVE DESIGN (INTEGRADO)
   ========================================================================== */

/* Responsive para Hero Section */
@media (max-width: 1200px) {
    .hero-grid {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .title-line.subtitle {
        font-size: 2.2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-content-col {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 40px;
        padding-left: 0;
        max-width: 600px;
    }
    
    .hero-description::before {
        display: none;
    }
    
    .hero-highlights {
        align-items: center;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .form-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .colectivas-hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-line.subtitle {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    
    .stat-card {
        flex: 0 0 calc(50% - 30px);
    }
    
    .stat-card:not(:last-child)::after {
        display: none;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .form-card {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-line.subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .stat-card {
        flex: 0 0 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .form-card {
        padding: 25px 20px;
    }
    
    .particle {
        display: none;
    }
}

/* Responsive general (mantenido) */
@media (max-width: 1024px) {
    .intro-grid,
    .quote-grid {
        gap: 50px;
    }
    
    .faq-grid {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .intro-grid,
    .quote-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .quote-form {
        padding: 30px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .coverage-card {
        padding: 30px 20px;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .step-connector {
        display: none;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .quote-form {
        padding: 20px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
}

/* ==========================================================================
   ACCESIBILIDAD
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-scroll],
    [data-scroll-section] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Mejoras de focus para accesibilidad */
.cta-button:focus,
.submit-btn:focus,
.faq-question:focus,
.submit-button:focus,
input:focus,
select:focus,
textarea:focus,
.custom-select:focus {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
}

/* Soporte para navegación por teclado */
.faq-question:focus-visible {
    background: #f8f9fa;
}

/* ==========================================================================
   UTILIDADES
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Optimización para Core Web Vitals */
.colectivas-hero img,
.coverage-card img {
    content-visibility: auto;
}

/* Optimización de fuentes */
body {
    font-display: swap;
}

/* ==========================================================================
   MODAL PARA SOLICITUD DE CORREO
   ========================================================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--gradient-dark);
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.modal-header h3 {
    font-size: 1.5rem;
    color: white;
    margin: 0;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 30px;
}

.modal-body .form-group {
    margin-bottom: 20px;
}

.modal-body label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.modal-body input,
.modal-body select,
.modal-body textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 1rem;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.modal-body input:focus,
.modal-body select:focus,
.modal-body textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(252, 67, 3, 0.1);
}

.modal-body input::placeholder,
.modal-body textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-enviar {
    flex: 1;
    padding: 16px;
    background: var(--color-gradient-accent);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(252, 67, 3, 0.3);
}

.btn-cancelar {
    flex: 1;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-cancelar:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Animaciones del modal */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive para modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}