* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables de color modernas */
:root {
    --primary-blue: #00BFFF;
    --accent-turquoise: #40E0D0;
    --bg-white: #FFFFFF;
    --bg-light: #F8FCFF;
    --bg-lighter: #E6F7FF;
    --border-light: #E0F2FE;
    --text-dark: #1a1a1a;
    --text-medium: #333333;
    --text-light: #555555;
    --text-lighter: #666666;
}

/* Mejoras generales de tipografía */
body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Transiciones suaves globales */
a, button, .card, .feature-card, .caso-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Splash Screen de Entrada */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F8FF 50%, #E6F7FF 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.8s ease-in-out 2.5s forwards;
}

.splash-screen.hide {
    opacity: 0;
    pointer-events: none;
}

.splash-content {
    text-align: center;
    animation: zoomIn 1s ease-out;
}

.splash-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
    animation: bounce 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.8));
    border-radius: 50%;
}

.splash-title {
    color: #00BFFF;
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 191, 255, 0.2);
    animation: glow 2s ease-in-out infinite;
}

.splash-subtitle {
    color: #333333;
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.splash-loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(0, 191, 255, 0.2);
    border-top: 4px solid #00BFFF;
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

/* Animaciones */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 191, 255, 0.5), 0 0 40px rgba(0, 191, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 191, 255, 0.8), 0 0 60px rgba(0, 191, 255, 0.5);
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Página de Inicio */
.home-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #FFFFFF;
}

.home-container {
    max-width: 1200px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

.home-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.6));
    animation: float 3s ease-in-out infinite;
}

.home-title {
    color: #FFFFFF;
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.home-slogan {
    color: #00BFFF;
    font-size: 1.8em;
    margin-bottom: 60px;
    font-weight: 300;
}

.home-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: #FFFFFF;
    border: 2px solid #E0F2FE;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 191, 255, 0.25);
    border-color: #00BFFF;
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #00BFFF;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666666;
    font-size: 1em;
    line-height: 1.6;
}

.home-description {
    background: #F8FCFF;
    border: 2px solid #E0F2FE;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.08);
}

.home-description h3 {
    color: #00BFFF;
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    color: #333333;
    font-size: 1.2em;
    line-height: 2;
    list-style-position: inside;
    max-width: 700px;
    margin: 0 auto;
}

.steps-list li {
    margin-bottom: 15px;
}

.steps-list strong {
    color: #00BFFF;
}

.btn-comenzar {
    background: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    color: #FFFFFF;
    font-size: 1.5em;
    font-weight: bold;
    padding: 20px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-comenzar:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.6);
}

.btn-comenzar .arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.btn-comenzar:hover .arrow {
    transform: translateX(10px);
}

.btn-volver {
    background: rgba(0, 191, 255, 0.2);
    color: #00BFFF;
    border: 2px solid #00BFFF;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}
.btn-volver:hover {
    background: #00BFFF;
    color: #FFFFFF;
}

/* === NUEVA LANDING PAGE === */

.landing-page {
    width: 100%;
    margin: 0;
    background: #FFFFFF;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../assets/fotofondo.png') center/cover no-repeat;
    position: relative;
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 20px rgba(0, 191, 255, 0.6));
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

.hero-title {
    color: #FFFFFF;
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    z-index: 1;
}

.hero-subtitle {
    color: #FFFFFF;
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.section-text {
    color: #555555;
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
}

.section-text.highlight {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1.3em;
    margin-top: 30px;
}

/* Casos Section */
.casos-section {
    padding: 80px 20px;
    text-align: center;
    background: #FFFFFF;
}

.casos-section h2 {
    color: #00BFFF;
    font-size: 2.5em;
    margin-bottom: 50px;
}

.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

    .home-container {
        width: 100%;
        text-align: center;
        animation: fadeInUp 1s ease-out;
    }
.caso-card {
    background: #FFFFFF;
    border: 2px solid #E0F2FE;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.1);
}

.caso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 191, 255, 0.25);
    border-color: #00BFFF;
}

.caso-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.caso-card p {
    color: #333333;
    font-size: 1.1em;
    line-height: 1.5;
}

/* Proceso Section */
.proceso-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
}

.proceso-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.proceso-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.proceso-section h2 {
    color: #00BFFF;
    font-size: 2.8em;
    margin-bottom: 70px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.proceso-steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.step {
    display: flex;
    align-items: center;
    gap: 35px;
    background: #FFFFFF;
    border: none;
    border-left: 5px solid #00BFFF;
    border-radius: 20px;
    padding: 35px 40px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #00BFFF 0%, #0080FF 100%);
    transition: width 0.4s ease;
}

.step:hover {
    transform: translateX(15px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25),
                0 5px 15px rgba(0, 0, 0, 0.15);
}

.step:hover::before {
    width: 100%;
    opacity: 0.05;
}

.step-number {
    background: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    color: #FFFFFF;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3),
                0 2px 6px rgba(0, 0, 0, 0.2),
                inset 0 -2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35),
                0 4px 10px rgba(0, 0, 0, 0.25),
                inset 0 -2px 6px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    color: #00BFFF;
    font-size: 1.6em;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover .step-content h3 {
    color: #0080FF;
    transform: translateX(5px);
}

.step-content p {
    color: #555555;
    font-size: 1.15em;
    line-height: 1.6;
    font-weight: 500;
}

/* ¿Qué es RegresoFeliz? Section */
.que-es-section {
    padding: 80px 20px;
    background: #F8FCFF;
}

.que-es-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.que-es-texto h2 {
    color: #000000;
    font-size: 2.5em;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.que-es-texto h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #00BFFF;
    border-radius: 2px;
}

.que-es-texto p {
    color: #333333;
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.que-es-texto strong {
    color: #00BFFF;
    font-weight: 600;
}

.que-es-imagen {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.estadisticas-overlay {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 10;
}

.estadistica-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.estadistica-numero {
    color: #000000;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1;
}

.estadistica-label {
    color: #000000;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nube-pensamiento {
    position: absolute;
    top: 70%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 15;
}

.nube-contenido {
    background: #FFFFFF;
    padding: 20px 25px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    text-align: center;
    animation: floatNube 3s ease-in-out infinite;
}

.nube-contenido::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30%;
    width: 25px;
    height: 25px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.15);
}

.nube-contenido::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 20%;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border-radius: 50%;
    box-shadow: -3px 3px 8px rgba(0, 0, 0, 0.15);
}

.nube-contenido p {
    color: #000000;
    font-size: 1.1em;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-align: center;
}

.btn-cotizar-nube {
    display: inline-block;
    background: #00BFFF;
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.4);
}

.btn-cotizar-nube:hover {
    background: #0099CC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.6);
}

@keyframes floatNube {
    0%, 100% {
        transform: translateY(-50%) translateY(0);
    }
    50% {
        transform: translateY(-50%) translateY(-10px);
    }
}

.que-es-imagen img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.que-es-imagen img:hover {
    transform: scale(1.05);
}

/* Responsive para ¿Qué es RegresoFeliz? */
@media (max-width: 768px) {
    .que-es-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .que-es-section {
        padding: 50px 15px;
    }
    
    .que-es-texto h2 {
        text-align: center;
        font-size: 1.8em;
    }
    
    .que-es-texto h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .que-es-texto p {
        text-align: center;
        font-size: 0.95em;
        line-height: 1.6;
    }
    
    .que-es-imagen {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-top: -20px;
        position: relative;
    }
    
    .que-es-imagen img {
        max-width: 200px;
    }
    
    /* Ajustar estadísticas en móvil */
    .estadisticas-overlay {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 0;
        justify-content: center;
        flex-wrap: nowrap;
        flex-direction: row;
        gap: 10px;
    }
    
    .estadistica-item {
        padding: 8px 12px;
        min-width: 90px;
    }
    
    .estadistica-numero {
        font-size: 1.1em;
    }
    
    .estadistica-label {
        font-size: 0.65em;
    }
    
    /* Ajustar nube en móvil */
    .nube-pensamiento {
        position: absolute;
        top: 65%;
        left: 60%;
        transform: translate(-50%, -50%);
        margin-top: 0;
        scale: 0.85;
    }
    
    .nube-contenido {
        padding: 10px 15px;
    }
    
    .nube-contenido p {
        font-size: 0.85em;
        margin-bottom: 8px;
    }
    
    .btn-cotizar-nube {
        padding: 7px 14px;
        font-size: 0.75em;
    }
}

/* Beneficios Section */
.beneficios-section {
    padding: 80px 20px;
    text-align: center;
    background: #FFFFFF;
}

.beneficios-section h2 {
    color: #000000;
    font-size: 2.5em;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.beneficios-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #00BFFF;
    border-radius: 2px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

.beneficio-item {
    background: #FFFFFF;
    border: none;
    border-radius: 15px;
    padding: 40px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.beneficio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.beneficio-icon {
    font-size: 3em;
    margin-bottom: 20px;
    filter: grayscale(100%);
}

.beneficio-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(0%);
}

.beneficio-item h3 {
    color: #00BFFF;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.beneficio-item p {
    color: #666666;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Eventos Section */
.eventos-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #F8FCFF 0%, #E6F7FF 100%);
    border-top: 2px solid #00BFFF;
    border-bottom: 2px solid #00BFFF;
}

.eventos-section h2 {
    color: #00BFFF;
    font-size: 2.5em;
    margin-bottom: 30px;
}

.eventos-list {
    max-width: 600px;
    margin: 40px auto;
    background: #FFFFFF;
    border: 2px solid #E0F2FE;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.1);
}

.eventos-list h3 {
    color: #00BFFF;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.eventos-list ul {
    list-style: none;
    padding: 0;
    color: #333333;
    font-size: 1.2em;
}

.eventos-list ul li {
    margin: 15px 0;
}

.cta-secondary {
    background: rgba(0, 191, 255, 0.2);
    color: #00BFFF;
    font-size: 1.3em;
    font-weight: bold;
    padding: 15px 40px;
    border: 2px solid #00BFFF;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.cta-secondary:hover {
    background: #00BFFF;
    color: #FFFFFF;
    transform: scale(1.05);
}

/* Compromiso Section */
.compromiso-section {
    padding: 80px 20px;
    background: #F8FCFF;
}

.compromiso-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.compromiso-izquierda {
    text-align: left;
}

.compromiso-section h2 {
    color: #000000;
    font-size: 2.5em;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.compromiso-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: #00BFFF;
    border-radius: 2px;
}

.compromiso-derecha {
    text-align: left;
}

.compromiso-derecha .section-text {
    margin: 0;
}

/* Testimonios Section */
.testimonios-section {
    padding: 80px 20px;
    text-align: center;
    background: #FFFFFF;
    overflow: hidden;
        width: 100%;
    max-width: 100vw;
}

.testimonios-section h2 {
    color: #000000;
    font-size: 2.5em;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.testimonios-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #00BFFF;
    border-radius: 2px;
}

.testimonios-grid {
    display: flex;
    gap: 30px;
    animation: scrollTestimonios 30s linear infinite;
    width: fit-content;
}

.testimonios-grid:hover {
    animation-play-state: paused;
}

.testimonio-item {
    background: #FFFFFF;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

.testimonio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.estrellas {
    font-size: 1.5em;
    color: #FFD700;
    letter-spacing: 3px;
}

.testimonio-texto {
    color: #555555;
    font-size: 1em;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
    margin: 0;
}

.testimonio-autor {
    color: #00BFFF;
    font-weight: 600;
    font-size: 0.95em;
    margin: 0;
    text-align: right;
}

@keyframes scrollTestimonios {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 5 - 30px * 5));
    }
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FCFF 50%, #E6F7FF 100%);
}

.final-cta-section h2 {
    color: #1a1a1a;
    font-size: 3em;
    margin-bottom: 50px;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-whatsapp {
    background: #25D366;
    color: #FFFFFF;
    font-size: 1.3em;
    font-weight: bold;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Footer */
.landing-footer {
    padding: 60px 20px 40px;
    background: #F8FCFF;
    border-top: 2px solid #00BFFF;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-izquierda {
    text-align: left;
}

.footer-derecha {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.5));
    border-radius: 50%;
}

.footer-brand {
    color: #00BFFF;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-description {
    color: #666666;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.footer-slogan {
    color: #333333;
    font-size: 1.3em;
    font-weight: 500;
    font-style: italic;
}

.footer-contacto-title {
    color: #00BFFF;
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.footer-link {
    color: #333333;
    text-decoration: none;
    font-size: 0.95em;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    background: transparent;
    border: 1px solid #E0E0E0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    color: #00BFFF;
    border-color: #00BFFF;
    background: rgba(0, 191, 255, 0.05);
}

/* Responsive para Landing */
.btn-volver:hover {
    background: #00BFFF;
    color: #FFFFFF;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Ajustes del header cuando se muestra el formulario */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #FFFFFF;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: #FFFFFF;
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    padding: 40px;
    margin: 0;
}

/* Wrapper para formulario y resumen */
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    width: 100%;
}

/* Resumen de Reserva */
.resumen-container {
    background: #F8FCFF;
    border: none;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 20px;
    height: fit-content;
}

.resumen-title {
    color: #1a1a1a;
    font-size: 1.5em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: none;
    border-bottom: none;
    padding-bottom: 15px;
    font-weight: 700;
}

.resumen-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resumen-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: rgba(0, 191, 255, 0.05);
    border-radius: 5px;
    border-left: none;
}

.resumen-label {
    color: #00BFFF;
    font-weight: 600;
    font-size: 0.9em;
}

.resumen-value {
    color: #333333;
    font-size: 0.9em;
    text-align: right;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.resumen-separator {
    height: 1px;
    background: linear-gradient(to right, transparent, #00BFFF, transparent);
    margin: 10px 0;
}

.resumen-total {
    background: #E6F7FF;
    padding: 15px;
    margin-top: 10px;
    border: none;
    border-radius: 8px;
}

.resumen-total .resumen-label {
    font-size: 1.1em;
}

.resumen-value-total {
    color: #40E0D0;
    font-size: 1.5em;
    font-weight: 700;
    text-shadow: none;
}

/* Header Principal */
.main-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
}

.main-header h1 {
    color: #1a1a1a;
    font-size: 3em;
    margin-bottom: 5px;
    text-shadow: none;
    text-align: left;
    font-weight: 700;
}

.main-header .subtitle {
    color: #00BFFF;
    font-size: 1.2em;
    font-weight: 500;
    text-align: left;
}

.main-header .logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    flex-shrink: 0;
    border-radius: 50%;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Responsive para header */

/* Sección de Información y Confianza */
.info-section {
    background: #F8FCFF;
    border: none;
    border-radius: 8px;
    padding: 20px 30px;
    margin: 0 0 30px 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-content {
    text-align: center;
}

.info-title {
    color: #1a1a1a;
    font-size: 1.3em;
    margin-bottom: 10px;
    text-shadow: none;
    font-weight: 700;
}

.info-description {
    color: #555555;
    font-size: 0.9em;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.feature-item {
    background: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: #F8FCFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 1.5em;
    margin-bottom: 5px;
}

.feature-item h3 {
    color: #00BFFF;
    font-size: 0.95em;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666666;
    font-size: 0.8em;
    line-height: 1.3;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #333333;
    font-weight: 600;
    font-size: 0.95em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select {
    width: 100%;
    padding: 12px;
    background: #FFFFFF;
    color: #333333;
    border: none;
    border-radius: 5px;
    font-size: 0.95em;
    transition: box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

input[type="date"] {
    width: 100%;
    padding: 12px;
    background: #FFFFFF;
    color: #333333;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    transition: box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}
input[type="date"]:focus {
    outline: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(5) hue-rotate(170deg);
    cursor: pointer;
    height: 28px;
    width: 28px;
}
input[type="date"]::-webkit-input-placeholder {
    color: #aaa;
}
input[type="date"]::-moz-placeholder {
    color: #aaa;
}
input[type="date"]:-ms-input-placeholder {
    color: #aaa;
}
input[type="date"]::placeholder {
    color: #aaa;
}

.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
    color: #333333;
}

.radio-label input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-submit,
.btn-reset {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit {
    background: #00BFFF;
    color: #000000;
    font-weight: 700;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    background: #40E0D0;
}

.btn-reset {
    background: #F8FCFF;
    color: #333333;
    border: 2px solid #E0F2FE;
}

.btn-reset:hover {
    background: #FFFFFF;
    border-color: #00BFFF;
}

.mensaje {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.mensaje.exito {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.mensaje.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Estilos para el mapa */
#map {
    width: 100%;
    height: 500px;
    border-radius: 5px;
    border: 2px solid #e0e0e0;
    margin-top: 10px;
    position: relative;
}

#map.map-locked {
    cursor: not-allowed;
    opacity: 0.8;
}

#map.map-locked::after {
    content: 'Haz clic en "Activar Mapa" para mover';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #00BFFF;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9em;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 999;
}

#map.map-locked:hover::after {
    opacity: 1;
}

#map.map-active {
    border-color: #00BFFF;
    opacity: 1;
    cursor: grab;
}

.toggle-map-btn {
    padding: 8px 16px;
    background: #FFFFFF;
    color: #00BFFF;
    border: 2px solid #00BFFF;
    border-radius: 5px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
    margin-bottom: 5px;
}

.toggle-map-btn:hover {
    background: #F8FCFF;
    transform: translateY(-1px);
}

.toggle-map-btn.map-active-btn {
    background: #00BFFF;
    color: #000000;
    font-weight: 600;
}

.toggle-map-btn.map-active-btn:hover {
    background: #40E0D0;
}

/* Estilos para sugerencias de autocompletado */
.sugerencias {
    position: relative;
    background: #FFFFFF;
    border: 2px solid #00BFFF;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.2);
    margin-top: 5px;
}

.sugerencias.active {
    display: block;
}

.sugerencia-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #E0F2FE;
    transition: background 0.2s;
}

.sugerencia-item:hover {
    background: #F8FCFF;
    border-left: 3px solid #00BFFF;
}

.sugerencia-item:last-child {
    border-bottom: none;
}

.sugerencia-nombre {
    font-weight: 600;
    color: #333333;
}

.sugerencia-direccion {
    font-size: 0.85em;
    color: #00BFFF;
    margin-top: 2px;
}

/* Estilos para la información de distancia */
.distancia-info {
    background: #F8FCFF;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #E0F2FE;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.1);
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-label {
    font-size: 0.85em;
    color: #666666;
    margin-bottom: 5px;
    font-weight: 500;
}

.info-value {
    font-size: 1.3em;
    color: #00BFFF;
    font-weight: 700;
}

.info-value.costo {
    color: #40E0D0;
    font-size: 1.5em;
}

/* Botón Cotizar Angelito Ahora */
.cta-primary {
  background: linear-gradient(90deg, #00BFFF 0%, #40E0D0 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 0.5px;
  border-radius: 28px;
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.35);
  border: none;
  padding: 14px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cta-primary:hover {
  background: linear-gradient(90deg, #40E0D0 0%, #00BFFF 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 191, 255, 0.45);
}
.cta-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 191, 255, 0.35);
}

/* Responsive */

h2.info-title, .info-section h2 {
  color: #1a1a1a !important;
  font-size: 2.5em;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
/* Paradas Adicionales */
#paradasContainer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.parada-adicional {
    background: #FFFFFF;
    border: 1px solid #E0F2FE;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
}

.parada-adicional:hover {
    border-color: #00BFFF;
    background: #F8FCFF;
}

.parada-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.parada-numero {
    color: #00BFFF;
    font-weight: 600;
    font-size: 0.95em;
}

.btn-eliminar-parada {
    background: rgba(255, 59, 48, 0.1);
    color: #ff3b30;
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    padding: 0;
}

.btn-eliminar-parada:hover {
    background: rgba(255, 59, 48, 0.2);
    border-color: rgba(255, 59, 48, 0.5);
    transform: scale(1.1);
}

.input-parada {
    width: 100%;
    padding: 12px;
    background: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 5px;
    color: #333333;
    font-size: 1em;
    transition: all 0.3s;
}

.input-parada:focus {
    outline: none;
    border-color: #000000;
    background: #FFFFFF;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.btn-agregar-parada {
    width: 100%;
    padding: 12px;
    background: #F8FCFF;
    border: 2px dashed #00BFFF;
    border-radius: 8px;
    color: #00BFFF;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-agregar-parada:hover {
    background: #FFFFFF;
    border-color: #00BFFF;
    transform: translateY(-2px);
}

.sugerencias-parada {
    position: relative;
    margin-top: 8px;
}

/* Navegación Principal */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 191, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 191, 255, 0.15);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3em;
    font-weight: 700;
    color: #00BFFF;
}

.nav-logo img {
    width: 45px;
    height: 45px;
    filter: drop-shadow(0 2px 4px rgba(0, 191, 255, 0.3));
    border-radius: 50%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #00BFFF;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 0.95em;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #00BFFF;
    background: #F8FCFF;
}

.nav-menu li a.nav-cta {
    background: linear-gradient(90deg, #00BFFF 0%, #40E0D0 100%);
    color: #FFFFFF;
    padding: 10px 24px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
}

.nav-menu li a.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

/* Ajuste para que el contenido no quede debajo del nav */
.landing-page {
    padding-top: 70px;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 191, 255, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        text-align: center;
        font-size: 1.1em;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 2em !important;
    }
    
    .hero-subtitle {
        font-size: 1em !important;
    }
    
    /* Beneficios Section */
    .beneficios-section {
        padding: 30px 10px !important;
    }
    
    .beneficios-section h2 {
        font-size: 1.4em !important;
        margin-bottom: 20px !important;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        max-width: 100% !important;
    }
    
    .beneficio-item {
        padding: 15px 10px !important;
        border-radius: 10px !important;
    }
    
    .beneficio-icon {
        margin-bottom: 10px !important;
    }
    
    .beneficio-icon img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .beneficio-item h3 {
        font-size: 0.95em !important;
        margin-bottom: 6px !important;
    }
    
    .beneficio-item p {
        font-size: 0.8em !important;
        line-height: 1.3 !important;
    }
    
    /* Compromiso Section */
    .compromiso-content {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .compromiso-izquierda,
    .compromiso-derecha {
        text-align: center !important;
    }
    
    .compromiso-section h2 {
        font-size: 2em !important;
    }
    
    .compromiso-section h2::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    /* Testimonios Section */
    .testimonios-section h2 {
        font-size: 2em !important;
    }
    
    .testimonios-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Final CTA Section */
    .final-cta-section {
        padding: 40px 15px !important;
    }
    
    .final-cta-section h2 {
        font-size: 1.5em !important;
        margin-bottom: 30px !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .cta-whatsapp {
        font-size: 1.1em !important;
        padding: 12px 30px !important;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    
    .footer-izquierda,
    .footer-derecha {
        text-align: center !important;
        align-items: center !important;
    }
    
    .footer-links {
        align-items: center !important;
        width: 100%;
    }
    
    .footer-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Form Wrapper */
    .form-wrapper {
        grid-template-columns: 1fr !important;
    }
    
    .resumen-container {
        position: relative !important;
        top: auto !important;
    }
}