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

/* Splash Screen de Entrada */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 50%, #0f3460 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));
}

.splash-title {
    color: #00BFFF;
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
    animation: glow 2s ease-in-out infinite;
}

.splash-subtitle {
    color: #FFFFFF;
    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: linear-gradient(135deg, #000000 0%, #0a0a1a 50%, #001a33 100%);
}

.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: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #00BFFF;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #00BFFF;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature-card p {
    color: #CCCCCC;
    font-size: 1em;
    line-height: 1.6;
}

.home-description {
    background: rgba(0, 191, 255, 0.05);
    border: 2px solid #00BFFF;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.home-description h3 {
    color: #00BFFF;
    font-size: 2em;
    margin-bottom: 25px;
    text-align: center;
}

.steps-list {
    color: #FFFFFF;
    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: #000000;
    padding: 0;
    box-sizing: border-box;
}
.landing-page {
    width: 100%;
    margin: 0;
    background: #000000;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 50%, #001a33 100%);
}

.hero-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.6));
    animation: float 3s ease-in-out infinite;
}

.hero-title, .hero-subtitle {
  color: #fff !important;
}

.hero-title {
    color: #FFFFFF;
    font-size: 3.5em;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 191, 255, 0.3);
}

.hero-subtitle {
    color: #FFFFFF;
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

.section-text {
    color: #CCCCCC;
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 20px;
}

.section-text.highlight {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1.3em;
    margin-top: 30px;
}

/* Casos Section */
.casos-section {
    padding: 80px 20px;
    text-align: center;
    background: #000000;
}

.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: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #00BFFF;
    border-radius: 15px;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.caso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

.caso-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.caso-card p {
    color: #FFFFFF;
    font-size: 1.1em;
    line-height: 1.5;
}

/* Proceso Section */
.proceso-section {
    padding: 80px 20px;
    text-align: center;
    background: #0a0a0a;
}

.proceso-section h2 {
    color: #00BFFF;
    font-size: 2.5em;
    margin-bottom: 60px;
}

.proceso-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #00BFFF;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 191, 255, 0.3);
}

.step-number {
    background: linear-gradient(135deg, #00BFFF 0%, #0080FF 100%);
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    color: #00BFFF;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.step-content p {
    color: #CCCCCC;
    font-size: 1.1em;
}

/* Beneficios Section */
.beneficios-section {
    padding: 80px 20px;
    text-align: center;
    background: #000000;
}

.beneficios-section h2 {
    color: #00BFFF;
    font-size: 2.5em;
    margin-bottom: 50px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 0 auto;
}

.beneficio-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #00BFFF;
    border-radius: 15px;
    padding: 40px 20px;
    transition: all 0.3s ease;
}

.beneficio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

.beneficio-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.beneficio-item h3 {
    color: #00BFFF;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.beneficio-item p {
    color: #CCCCCC;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Eventos Section */
.eventos-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #001a33 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: rgba(0, 191, 255, 0.05);
    border: 2px solid #00BFFF;
    border-radius: 15px;
    padding: 30px;
}

.eventos-list h3 {
    color: #00BFFF;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.eventos-list ul {
    list-style: none;
    padding: 0;
    color: #FFFFFF;
    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;
    text-align: center;
    background: #0a0a0a;
}

.compromiso-section h2 {
    color: #00BFFF;
    font-size: 2.5em;
    margin-bottom: 30px;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #0a0a1a 50%, #001a33 100%);
}

.final-cta-section h2 {
    color: #FFFFFF;
    font-size: 3em;
    margin-bottom: 50px;
}

.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;
    text-align: center;
    background: #000000;
    border-top: 2px solid #00BFFF;
}

.footer-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(0, 191, 255, 0.5));
}

.footer-brand {
    color: #00BFFF;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-description {
    color: #CCCCCC;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.footer-slogan {
    color: #FFFFFF;
    font-size: 1.3em;
    font-weight: 500;
    font-style: italic;
}

/* 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: #000000;
    min-height: 100vh;
    padding: 20px;
}

.container {
    background: #000000;
    border-radius: 10px;
    border: 2px solid #00BFFF;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    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: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #00BFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 20px;
    height: fit-content;
}

.resumen-title {
    color: #FFFFFF;
    font-size: 1.5em;
    margin-bottom: 25px;
    text-align: center;
    text-shadow: none;
    border-bottom: 2px solid #00BFFF;
    padding-bottom: 15px;
}

.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: 3px solid #00BFFF;
}

.resumen-label {
    color: #00BFFF;
    font-weight: 600;
    font-size: 0.9em;
}

.resumen-value {
    color: #FFFFFF;
    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: rgba(0, 191, 255, 0.15);
    padding: 15px;
    margin-top: 10px;
    border: 2px solid #00BFFF;
    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: #FFFFFF;
    font-size: 3em;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.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;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Responsive para header */

/* Sección de Información y Confianza */
.info-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid #00BFFF;
    border-radius: 8px;
    padding: 20px 30px;
    margin: 0 0 30px 0;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 191, 255, 0.2);
}

.info-content {
    text-align: center;
}

.info-title {
    color: #FFFFFF;
    font-size: 1.3em;
    margin-bottom: 10px;
    text-shadow: 0 0 8px rgba(0, 191, 255, 0.4);
}

.info-description {
    color: #FFFFFF;
    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: rgba(0, 191, 255, 0.03);
    border: 1px solid rgba(0, 191, 255, 0.3);
    border-radius: 6px;
    padding: 12px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(0, 191, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 191, 255, 0.2);
}

.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: #FFFFFF;
    font-size: 0.8em;
    line-height: 1.3;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #FFFFFF;
    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: #1a1a1a;
    color: #FFFFFF;
    border: 2px solid #333;
    border-radius: 5px;
    font-size: 0.95em;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 5px rgba(0, 191, 255, 0.3);
}

input[type="date"] {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    color: #FFFFFF;
    border: 2px solid #00BFFF;
    border-radius: 5px;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0,191,255,0.08);
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}
input[type="date"]:focus {
    outline: none;
    border-color: #00BFFF;
    box-shadow: 0 0 8px 2px rgba(0,191,255,0.18);
}
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: #FFFFFF;
}

.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: #1a1a1a;
    color: #FFFFFF;
    border: 2px solid #333;
}

.btn-reset:hover {
    background: #2a2a2a;
    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: #1a1a1a;
    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: rgba(0, 191, 255, 0.1);
    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: #1a1a1a;
    border: 2px solid #00BFFF;
    border-radius: 5px;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
}

.sugerencias.active {
    display: block;
}

.sugerencia-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #333;
    transition: background 0.2s;
}

.sugerencia-item:hover {
    background: #2a2a2a;
    border-left: 3px solid #00BFFF;
}

.sugerencia-item:last-child {
    border-bottom: none;
}

.sugerencia-nombre {
    font-weight: 600;
    color: #FFFFFF;
}

.sugerencia-direccion {
    font-size: 0.85em;
    color: #00BFFF;
    margin-top: 2px;
}

/* Estilos para la información de distancia */
.distancia-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #00BFFF;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-label {
    font-size: 0.85em;
    color: #FFFFFF;
    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: 800;
  font-size: 1.2em;
  letter-spacing: 0.5px;
  border-radius: 32px;
  box-shadow: 0 4px 24px #00BFFF33;
  border: none;
  padding: 18px 36px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cta-primary:hover {
  background: linear-gradient(90deg, #40E0D0 0%, #00BFFF 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px #00BFFF55;
}

/* Responsive */

h2.info-title, .info-section h2 {
  color: #fff !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: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 191, 255, 0.2);
    border-radius: 8px;
    padding: 15px;
    transition: all 0.3s;
}

.parada-adicional:hover {
    border-color: rgba(0, 191, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.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: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 1em;
    transition: all 0.3s;
}

.input-parada:focus {
    outline: none;
    border-color: #00BFFF;
    background: rgba(255, 255, 255, 0.08);
}

.btn-agregar-parada {
    width: 100%;
    padding: 12px;
    background: rgba(0, 191, 255, 0.1);
    border: 2px dashed rgba(0, 191, 255, 0.3);
    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: rgba(0, 191, 255, 0.15);
    border-color: rgba(0, 191, 255, 0.5);
    transform: translateY(-2px);
}

.sugerencias-parada {
    position: relative;
    margin-top: 8px;
}