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

/* Navbar brand: round logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    min-width: 0;
}

.logo .navbar-logo-text {
    width: 56px;
    height: 56px;
    max-width: 56px;
    max-height: 56px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem;
    border: 1px solid rgba(255, 159, 67, 0.22);
    filter:
        drop-shadow(0 0 5px rgba(255, 106, 0, 0.55))
        drop-shadow(0 0 10px rgba(255, 45, 0, 0.24))
        drop-shadow(0 0 12px rgba(0, 140, 255, 0.28));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.navbar-brand:hover .navbar-logo-text {
    transform: translateY(-1px);
    filter:
        drop-shadow(0 0 7px rgba(255, 106, 0, 0.68))
        drop-shadow(0 0 12px rgba(255, 45, 0, 0.30))
        drop-shadow(0 0 16px rgba(0, 140, 255, 0.34));
}

@media (max-width: 768px) {
    .logo .navbar-logo-text {
        width: 46px;
        height: 46px;
        max-width: 46px;
        max-height: 46px;
    }
}

@media (max-width: 360px) {
    .logo .navbar-logo-text {
        width: 42px;
        height: 42px;
        max-width: 42px;
        max-height: 42px;
    }
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

/* GLOBAL DARK THEME */
:root {
    color-scheme: dark;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #e4e6ea;
    padding-top: 4rem;
    margin: 0;
    min-height: 100vh;
    /* FONDO OSCURO INTENSO FINAL */
    background:
        /* Se mantienen los gradientes del fondo, solo se cambia el color de interacción */
        radial-gradient(circle at 20% 20%, rgba(0, 119, 190, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 159, 67, 0.15) 0%, transparent 50%), /* Cambio de Cyan a Naranja en el gradiente de fondo */
        radial-gradient(circle at 40% 40%, rgba(0, 119, 190, 0.08) 0%, transparent 70%),
        linear-gradient(135deg, #050810 0%, #0f1419 25%, #1a1f2e 50%, #0a0f1c 75%, #050810 100%);
    background-attachment: fixed;
    background-size: 800px 800px, 600px 600px, 1000px 1000px, 100% 100%;
}

/* NAVBAR OSCURA FINAL */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 28, 0.3);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO OPTIMIZADO */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 3rem;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.3) contrast(1.2) saturate(1.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.4) contrast(1.3) saturate(1.2);
    /* Se cambia la sombra del logo a naranja */
    box-shadow: 0 0 20px rgba(255, 159, 67, 0.3);
    border-color: rgba(255, 159, 67, 0.3);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
    /* Se cambia el hover del menú a naranja */
    border-color: rgba(255, 159, 67, 0.3);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #e4e6ea;
    margin: 4px 0;
    transform-origin: center;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    border-radius: 2px;
}

/* NAVEGACIÓN OSCURA */
.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #e4e6ea;
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

/* === CAMBIO DE HOVER DE NAVEGACIÓN DE CELESTE A NARANJA === */
.nav-link:hover {
    color: #ff9f43; /* Naranja principal */
    background: rgba(255, 159, 67, 0.1); /* Fondo naranja suave */
    transform: translateY(-2px);
    border-color: rgba(255, 159, 67, 0.3); /* Borde naranja */
    box-shadow: 0 4px 15px rgba(255, 159, 67, 0.2); /* Sombra naranja */
}

/* === CAMBIO DE BOTÓN CTA DE AZUL/CYAN A NARANJA === */
.btn-cta {
    background: linear-gradient(135deg, #e55b00, #ff9f43) !important; /* Degradado Naranja a Naranja Claro */
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(229, 91, 0, 0.4); /* Sombra naranja */
    border: 1px solid rgba(229, 91, 0, 0.3) !important; /* Borde naranja */
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(229, 91, 0, 0.5); /* Sombra naranja más fuerte */
    background: linear-gradient(135deg, #ff8c42, #e55b00) !important; /* Degradado de hover naranja */
}

/* HERO SECTION CON IMAGEN PERSONAL */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(10, 15, 28, 0.6), rgba(26, 31, 46, 0.7)),
                url('img/hero-lubrimotor-futurista.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #e4e6ea;
    position: relative;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    color: #ffffff;
}

.hero-text .resaltar {
    /* Se cambia el texto resaltado a naranja */
    color: #ff9f43;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: #d0d0d0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* === CAMBIO DE BOTÓN HERO DE CYNA/AZUL A NARANJA === */
.boton-hero {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, #ff9f43, #e55b00); /* Degradado Naranja */
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 159, 67, 0.4); /* Sombra naranja */
    border: 1px solid rgba(255, 159, 67, 0.3); /* Borde naranja */
}

.boton-hero:hover {
    background: linear-gradient(135deg, #e55b00, #ff8c42); /* Degradado de hover naranja */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 159, 67, 0.6); /* Sombra naranja más fuerte */
}

/* SOBRE NOSOTROS OSCURO */
.sobre-nosotros {
    padding: 5rem 10%;
    background: rgba(10, 15, 28, 0.4);
    backdrop-filter: blur(20px);
    text-align: center;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sobre-nosotros h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    /* Se cambia el título a naranja */
    color: #ff9f43;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.sobre-nosotros h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    /* Se cambia el degradado a naranja */
    background: linear-gradient(135deg, #e55b00, #ff9f43);
    border-radius: 2px;
}

.sobre-nosotros p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 2rem auto 0;
    color: #c0c0c0;
}

/* CONFIANZA ITEMS */
.trust-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    /* Se cambia el borde a naranja */
    border: 1px solid rgba(255, 159, 67, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  /* Se cambia el hover a naranja */
  border-color: rgba(255, 159, 67, 0.4);
  box-shadow: 0 10px 25px rgba(255, 159, 67, 0.2);
}


.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.trust-item h3 {
    /* Se cambia el color del título a naranja */
    color: #ff9f43;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.trust-item p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* SERVICIOS CON TARJETAS MODERNAS */
.servicios {
    padding: 5rem 5%;
    background: rgba(10, 15, 28, 0.3);
    backdrop-filter: blur(20px);
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.servicios h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    /* Se cambia el título a naranja */
    color: #ff9f43;
    font-weight: 700;
}

.servicios > p {
    text-align: center;
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 3rem;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* SERVICE CARDS */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    min-height: 200px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

/* === CAMBIO DE REACCIÓN (SWIPE) DE CARTA DE CELESTE A NARANJA === */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(229, 91, 0, 0.2) 0%, /* Naranja Oscuro Transparente */
        rgba(255, 159, 67, 0.2) 100%); /* Naranja Claro Transparente */
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.card-icon {
    font-size: 3rem;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
    align-self: flex-start;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.card-content {
    flex: 1;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    transition: all 0.4s ease;
    font-weight: 600;
}

.card-content p {
    color: #b0b0b0;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.price-badge {
    display: inline-block;
    /* Se cambia el badge a naranja */
    background: rgba(229, 91, 0, 0.3);
    color: #ff9f43;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}

.card-arrow {
    font-size: 1.5rem;
    font-weight: bold;
    /* Se cambia el color de la flecha a naranja */
    color: #ff9f43;
    align-self: flex-end;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
    transform: translateX(0);
}

.service-card:hover {
  /* Se cambian las sombras de hover de la tarjeta a naranja */
  box-shadow: 0 20px 60px rgba(229, 91, 0, 0.3), 0 0 0 1px rgba(255, 159, 67, 0.4), inset 0 1px 0 rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
}

.service-card:hover::before {
  left: 0;
  /* Se asegura el cambio de gradiente de hover a naranja */
  background: linear-gradient(135deg, rgba(229, 91, 0, 0.2) 0%, rgba(255, 159, 67, 0.2) 100%);
}


.service-card:hover .card-icon {
    color: #FFD700;
    transform: scale(1.2) rotate(5deg);
}

.service-card:hover .card-content h3 {
    color: #ffffff;
    transform: translateY(-2px);
    /* Se cambia la sombra de texto de hover a naranja */
    text-shadow: 0 2px 8px rgba(255, 159, 67, 0.5);
}

.service-card:hover .card-content p {
    color: #e0e0e0;
    transform: translateY(-2px);
}

.service-card:hover .card-arrow {
    color: #FFD700;
    transform: translateX(5px) scale(1.2);
}

/* PAQUETES SECTION */
.paquetes {
    padding: 5rem 5%;
    background: rgba(10, 15, 28, 0.4);
    backdrop-filter: blur(20px);
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.paquetes h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    /* Se cambia el título a naranja */
    color: #ff9f43;
    font-weight: 700;
}

.paquetes > p {
    text-align: center;
    font-size: 1.1rem;
    color: #c0c0c0;
    margin-bottom: 3rem;
}

.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* PAQUETE CARDS */
.paquete-card {
    /* === ESTILOS DE TARJETA DE CRISTAL (COPIADO DE .service-card) === */
    background: rgba(255, 255, 255, 0.05); /* Fondo blanco muy transparente */
    backdrop-filter: blur(25px); /* Efecto de desenfoque de fondo */
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borde claro y sutil */
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3), /* Sombra principal oscura */
        inset 0 1px 0 rgba(255, 255, 255, 0.1); /* Borde interior claro */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    /* ================================================================ */
}

/* Mantener el estilo de hover (que ya es naranja y funciona bien) */
.paquete-card:hover {
  background: rgba(255, 159, 67, 0.1);
  border-color: rgba(255, 159, 67, 0.4);
  box-shadow: 0 12px 38px rgba(255, 159, 67, 0.2);
}

/* Asegurar que la tarjeta destacada mantenga su borde naranja fuerte */
.paquete-card.featured {
  /* Se mantiene el borde naranja para destacar */
  border-color: rgba(255, 159, 67, 0.6);
  background: rgba(255, 159, 67, 0.1); /* Base naranja para destacar */
  box-shadow: 0 12px 38px rgba(255, 159, 67, 0.3); /* Sombra naranja más fuerte para destacar */
}
/* PAQUETE CARDS */
/* ... (Se asume que los estilos de .paquete-card están correctos) */

.badge-popular {
    position: absolute;
    top: -15px;
    
    /* === CAMBIO PARA CENTRADO PERFECTO === */
    left: 0; 
    right: 0; 
    margin-left: auto;
    margin-right: auto;
    width: max-content; /* Asegura que la etiqueta solo ocupe el espacio de su contenido */
    /* FIN CAMBIO DE CENTRADO */

    /* Estilos de diseño (mantener) */
    background: linear-gradient(135deg, #e55b00, #ff9f43);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.paquete-header {
    margin-bottom: 1.5rem;
}

.paquete-header h3 {
    font-size: 1.8rem;
    /* Se cambia el color del título a naranja */
    color: #ff9f43;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.price {
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
}

.currency {
    font-size: 1.5rem;
    margin-right: 0.25rem;
}

.paquete-features {
    list-style: none;
    margin-bottom: 2rem;
}

.paquete-features li {
    padding: 0.6rem 0;
    color: #e4e6ea;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check {
    color: #28a745;
    font-weight: bold;
}

.cross {
    color: #b0b0b0;
}

.paquete-features li.disabled {
    color: #888888;
}

.btn-paquete {
    width: 100%;
    padding: 1rem;
    /* Se cambia el botón secundario a naranja */
    background: rgba(229, 91, 0, 0.2);
    color: #ff9f43;
    border: 2px solid rgba(229, 91, 0, 0.5);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-paquete:hover {
    /* Se cambia el hover del botón secundario a naranja */
    background: rgba(229, 91, 0, 0.4);
    border-color: #ff9f43;
    color: #ffffff;
}

.btn-paquete.primary {
    /* Se cambia el botón primario a naranja */
    background: linear-gradient(135deg, #e55b00, #ff9f43);
    color: white;
    border: 1px solid rgba(255, 159, 67, 0.3);
}

.btn-paquete.primary:hover {
    /* Se cambia la sombra de hover a naranja */
    box-shadow: 0 6px 20px rgba(229, 91, 0, 0.4);
    transform: translateY(-2px);
}

/* SISTEMA DE CITAS OSCURO */
.citas-online {
    padding: 5rem 5%;
    background: rgba(10, 15, 28, 0.4);
    backdrop-filter: blur(20px);
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.citas-online .container {
    max-width: 1000px;
    margin: 0 auto;
}

.citas-online h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    /* Se cambia el título a naranja */
    color: #ff9f43;
    font-weight: 700;
}

.citas-online > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #c0c0c0;
    margin-bottom: 3rem;
}

.formulario-citas {
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(25px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow:
        0 15px 35px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    /* Se cambia el borde a naranja */
    border: 1px solid rgba(255, 159, 67, 0.2);
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    flex: 1;
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

/* INPUTS OSCUROS */
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    /* Se cambia el borde del input a naranja */
    border: 2px solid rgba(255, 159, 67, 0.4);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(10, 15, 28, 0.95);
    backdrop-filter: blur(15px);
    color: #ffffff;
    font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
    opacity: 0.8;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    /* Se cambia el focus del input a naranja */
    border-color: #ff9f43;
    background: rgba(10, 15, 28, 1);
    box-shadow: 0 0 0 3px rgba(255, 159, 67, 0.2);
    color: #ffffff;
}

/* SELECT PERSONALIZADO OSCURO */
.form-group select {
    appearance: none;
    /* Se cambia el ícono del select a naranja */
    background-image:
        linear-gradient(45deg, transparent 50%, #ff9f43 50%),
        linear-gradient(135deg, #ff9f43 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(1em + 2px),
        calc(100% - 15px) calc(1em + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.form-group select option {
    background: #1a1f2e;
    color: #ffffff;
    padding: 0.7rem;
    font-weight: 500;
}

.btn-reservar {
    width: 100%;
    padding: 1.2rem 2rem;
    /* Se cambia el botón reservar a naranja */
    background: linear-gradient(135deg, #e55b00, #ff9f43);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(229, 91, 0, 0.4);
    margin-top: 1rem;
}

.btn-reservar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(229, 91, 0, 0.5);
    background: linear-gradient(135deg, #ff8c42, #e55b00);
}

.disponibilidad {
    background: rgba(10, 15, 28, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.8rem;
    border-radius: 15px;
    box-shadow:
        0 8px 25px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    /* Se cambia el borde a naranja */
    border: 1px solid rgba(255, 159, 67, 0.2);
}

.disponibilidad h3 {
    margin-bottom: 1rem;
    /* Se cambia el título a naranja */
    color: #ff9f43;
    font-weight: 600;
    font-size: 1.2rem;
}

.horarios-disponibles {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    border-left: 4px solid;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #e4e6ea;
    transition: all 0.3s ease;
}

.horario-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.horario-item.disponible {
    border-left-color: #28a745;
}

.horario-item.ocupado {
    /* Color de ocupado se mantiene, es un amarillo/naranja */
    border-left-color: #fdcb6e;
}

.horario-item .status {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
}

.horario-item.disponible .status {
    background: rgba(40, 167, 69, 0.2);
    color: #90EE90;
}

.horario-item.ocupado .status {
    background: rgba(253, 203, 110, 0.2);
    color: #FFA500;
}

/* CONTACTO OSCURO */
.contacto {
    /* Se cambia el fondo del contacto a un tono más neutro, manteniendo la base azul/negro */
    padding: 5rem 10%;
    background: rgba(0, 119, 190, 0.15);
    backdrop-filter: blur(20px);
    color: #e4e6ea;
    text-align: center;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contacto h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-weight: 700;
}

.contacto > p {
    color: #c0c0c0;
}

.contacto-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contacto-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contacto-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    /* Se cambia el hover a naranja */
    border-color: rgba(255, 159, 67, 0.3);
    box-shadow: 0 5px 20px rgba(255, 159, 67, 0.2);
}

.contacto-item h3 {
    /* Se cambia el título a naranja */
    color: #ff9f43;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.contacto-item p {
    font-size: 1.1rem;
    color: #e0e0e0;
}

.contacto-item a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contacto-item a:hover {
    color: #ff9f43;
}

/* UBICACION GOOGLE MAPS */
.ubicacion {
    padding: 5rem 8%;
    background: rgba(10, 15, 28, 0.42);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 159, 67, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #e4e6ea;
}

.ubicacion-container {
    width: min(100%, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(420px, 1.4fr);
    gap: 2rem;
    align-items: stretch;
}

.ubicacion-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    border: 1px solid rgba(255, 159, 67, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.ubicacion-label {
    color: #ff9f43;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.ubicacion h2 {
    color: #ffffff;
    font-size: 2.35rem;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.ubicacion p {
    color: #d4d7dd;
    font-size: 1.08rem;
    line-height: 1.6;
    margin-bottom: 1.6rem;
}

.btn-maps {
    width: fit-content;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.35rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff9f43, #e55b00);
    box-shadow: 0 12px 28px rgba(229, 91, 0, 0.34);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-maps:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(229, 91, 0, 0.46);
}

.mapa-ubicacion {
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(255, 159, 67, 0.22);
    border-radius: 18px;
    background: rgba(5, 8, 16, 0.72);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.mapa-ubicacion iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    filter: saturate(0.9) contrast(1.04);
}

/* WIDGET WHATSAPP */
.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-chat {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: rgba(10, 15, 28, 0.9);
    backdrop-filter: blur(25px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-chat.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 1rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-details h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-details .status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

.chat-body {
    padding: 1rem;
    max-height: 300px;
    overflow-y: auto;
}

.message {
    margin-bottom: 1rem;
}

.bot-message {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-radius: 15px 15px 15px 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bot-message p {
    margin: 0 0 0.5rem 0;
    color: #e4e6ea;
}

.bot-message small {
    color: #b0b0b0;
    font-size: 0.8rem;
}

.quick-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-btn {
    /* Se cambia el botón rápido a naranja */
    background: rgba(229, 91, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(229, 91, 0, 0.3);
    color: #ff9f43;
    padding: 0.75rem;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-btn:hover {
    background: rgba(229, 91, 0, 0.2);
    color: #ffffff;
    border-color: rgba(255, 159, 67, 0.5);
}

.chat-footer {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.start-chat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.start-chat-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* ========================================= */
/* CALENDARIO NEGRO DEFINITIVO */
/* ========================================= */

/* DATE INPUT CALENDARIO NEGRO FORZADO */
.form-group input[type="date"] {
    color-scheme: dark !important;
    background: rgba(10, 15, 28, 0.95) !important;
    color: #ffffff !important;
    /* Se cambia el borde del input a naranja */
    border: 2px solid rgba(255, 159, 67, 0.4) !important;
}

.form-group input[type="date"]:focus {
    /* Se cambia el focus a naranja */
    border-color: #ff9f43 !important;
    box-shadow: 0 0 0 3px rgba(255, 159, 67, 0.2) !important;
}

/* CALENDAR PICKER ICON NARANJA */
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    /* Se cambia el fill color del SVG a naranja (#ff9f43) */
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23ff9f43'%3e%3cpath d='M3.5 0a.5.5 0 0 1 .5.5V1h8V.5a.5.5 0 0 1 1 0V1h1a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V3a2 2 0 0 1 2-2h1V.5a.5.5 0 0 1 .5-.5zM2 2a1 1 0 0 0-1 1v1h14V3a1 1 0 0 0-1-1H2zm13 3H1v9a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V5z'/%3e%3c/svg%3e") !important;
    cursor: pointer !important;
    opacity: 1 !important;
    width: 24px !important;
    height: 24px !important;
    padding: 4px !important;
    margin: 0 4px !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    /* Se cambia el hover a naranja */
    background-color: rgba(255, 159, 67, 0.2) !important;
    transform: scale(1.1) !important;
}

/* ELEMENTOS INTERNOS DEL DATE INPUT */
input[type="date"]::-webkit-datetime-edit {
    color: #ffffff !important;
    background: transparent !important;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper {
    background: transparent !important;
}

input[type="date"]::-webkit-datetime-edit-text {
    /* Se cambia el texto interno a naranja */
    color: #ff9f43 !important;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field {
    color: #ffffff !important;
    background: transparent !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    body {
        padding-top: 3.5rem;
        background-attachment: scroll;
        background-position: center center;
    }

    .navbar {
        overflow: visible;
        --mobile-navbar-height: 64px;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 1002;
        border-color: rgba(255, 159, 67, 0.28);
        background: rgba(255, 159, 67, 0.08);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    }

    .nav-menu {
        position: fixed;
        top: var(--mobile-navbar-height);
        right: 0;
        left: 0;
        width: 100%;
        height: auto;
        max-height: calc(100svh - var(--mobile-navbar-height));
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0.75rem;
        padding: 1rem 1rem 1.25rem;
        background:
            radial-gradient(circle at 50% 0%, rgba(255, 159, 67, 0.18), transparent 35%),
            radial-gradient(circle at 20% 20%, rgba(0, 170, 255, 0.12), transparent 34%),
            rgba(5, 8, 16, 0.98);
        backdrop-filter: blur(24px);
        border-top: 1px solid rgba(255, 159, 67, 0.18);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
        border-left: 0;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        width: min(100%, 340px);
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        padding: 0.9rem 1rem;
        text-align: center;
        border: 1px solid rgba(255, 159, 67, 0.18);
        margin: 0;
        background: rgba(255, 255, 255, 0.065);
        backdrop-filter: blur(15px);
        color: #ffffff;
        border-radius: 14px;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    }

    .nav-link:hover {
        /* Se cambia el hover responsive a naranja */
        background: rgba(255, 159, 67, 0.15);
        color: #ff9f43;
        border-color: rgba(255, 159, 67, 0.4);
    }

    .logo img {
        height: 2.8rem;
        padding: 0.25rem;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text p {
        font-size: 1.2rem;
    }

    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .paquetes-grid {
        grid-template-columns: 1fr;
    }

    .paquete-card.featured {
        transform: scale(1);
    }

    .contacto-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-row {
        flex-direction: column;
    }

    .whatsapp-chat {
        width: calc(100vw - 40px);
        right: 20px;
    }

    .whatsapp-widget {
        bottom: 15px;
        right: 15px;
    }

    .citas-online {
        padding: 3rem 5%;
    }

    .formulario-citas {
        padding: 1.5rem;
        background: rgba(10, 15, 28, 0.9);
    }

    .sobre-nosotros {
        padding: 3rem 5%;
    }

    .contacto {
        padding: 3rem 5%;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    .navbar-container {
        padding: 0.75rem 2rem;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .paquetes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .navbar-container {
        padding: 0.75rem 2rem;
    }

    .logo img {
        height: 3.5rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .paquetes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .navbar-container {
        padding: 1rem 3rem;
    }

    .hero-text h1 {
        font-size: 4rem;
    }

    .servicios-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .paquetes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .navbar-container {
        max-width: 1400px;
    }
}

@media (max-width: 480px) {
    .servicios-grid {
        grid-template-columns: 1fr;
    }

    .paquetes-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.25rem;
        border-radius: 15px;
    }

    .service-card .card-icon {
        font-size: 2.2rem;
    }

    .service-card .card-content h3 {
        font-size: 1.2rem;
    }

    .service-card .card-content p {
        font-size: 0.95rem;
    }
}

/* ========================================
   AJUSTES RESPONSIVE FINALES
   ======================================== */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body.menu-open {
    overflow-x: hidden;
}

img,
svg,
video {
    max-width: 100%;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    display: block;
    position: relative;
    z-index: 2;
}

.card-content h4 {
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.3;
    margin-bottom: 0.65rem;
    overflow-wrap: anywhere;
}

.servicio-titulo {
    max-width: 1200px;
    margin: 0 auto 1.5rem;
    color: #ff9f43;
    font-size: 1.6rem;
    line-height: 1.25;
}

@media (max-width: 768px) {
    .navbar-container {
        min-height: 64px;
        padding: 0.55rem 1rem;
    }

    .logo img {
        max-width: 160px;
        height: 2.4rem;
    }

    .hero {
        min-height: calc(100svh - 64px);
        height: auto;
        padding: 4.5rem 1rem 3rem;
        background-position: center;
    }

    .hero-text {
        width: 100%;
        max-width: 430px;
        padding: 0 0.25rem;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 1.05;
        overflow-wrap: anywhere;
    }

    .hero-text p {
        font-size: clamp(1rem, 4.8vw, 1.2rem);
        line-height: 1.45;
        letter-spacing: 0;
        margin-bottom: 1.5rem;
    }

    .boton-hero,
    .btn-reservar,
    .start-chat-btn {
        min-height: 48px;
        padding: 0.95rem 1.25rem;
        font-size: 1rem;
        touch-action: manipulation;
    }

    .sobre-nosotros,
    .servicios,
    .ubicacion,
    .citas-online,
    .contacto {
        padding: 3rem 1rem;
    }

    .sobre-nosotros h2,
    .servicios h2,
    .ubicacion h2,
    .citas-online h2,
    .contacto h2 {
        font-size: clamp(1.8rem, 8vw, 2.25rem);
        line-height: 1.15;
    }

    .sobre-nosotros p,
    .servicios > p,
    .ubicacion p,
    .citas-online > .container > p,
    .contacto > p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .trust-section,
    .servicios-grid,
    .paquetes-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .servicio-titulo {
        font-size: 1.35rem;
        padding: 0 0.25rem;
        margin-bottom: 1rem;
    }

    .service-card {
        width: 100%;
        min-height: auto;
        padding: 1rem;
        border-radius: 14px;
        gap: 0.85rem;
    }

    .service-card img {
        height: clamp(165px, 48vw, 220px);
        border-radius: 12px;
    }

    .card-content h4 {
        font-size: 1.15rem;
    }

    .card-content p {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .formulario-citas,
    .disponibilidad,
    .contacto-item,
    .trust-item {
        padding: 1rem;
        border-radius: 14px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    .form-group {
        margin-bottom: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px;
        padding: 0.85rem;
    }

    .horario-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contacto-info {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contacto-item {
        width: 100%;
    }

    .whatsapp-widget {
        right: 14px;
        bottom: 14px;
    }

    .whatsapp-button {
        width: 56px;
        height: 56px;
    }

    .whatsapp-chat {
        width: calc(100vw - 28px);
        right: 0;
        bottom: 72px;
        max-height: min(78vh, 560px);
        overflow: hidden;
    }

    .chat-body {
        max-height: 45vh;
    }
}

@media (max-width: 430px) {
    body {
        padding-top: 3.5rem;
    }

    .navbar-container {
        padding-inline: 0.75rem;
    }

    .logo img {
        max-width: 140px;
        height: 2.25rem;
    }

    .hero {
        padding-inline: 0.85rem;
    }

    .sobre-nosotros,
    .servicios,
    .ubicacion,
    .citas-online,
    .contacto {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .service-card img {
        height: clamp(155px, 52vw, 205px);
    }
}

@media (max-width: 360px) {
    .navbar-container {
        min-height: 58px;
        padding-block: 0.45rem;
    }

    .navbar {
        --mobile-navbar-height: 58px;
    }

    .hero {
        min-height: auto;
        padding-top: 3.4rem;
        padding-bottom: 2.4rem;
    }

    .hero-text h1 {
        font-size: 1.85rem;
        margin-bottom: 0.75rem;
    }

    .hero-text p {
        font-size: 0.98rem;
        margin-bottom: 1.15rem;
    }

    .logo img {
        max-width: 125px;
        height: 2.05rem;
    }

    .card-content h4 {
        font-size: 1.05rem;
    }

    .sobre-nosotros,
    .servicios,
    .ubicacion,
    .citas-online,
    .contacto {
        padding-top: 2.35rem;
        padding-bottom: 2.35rem;
    }

    .service-card,
    .formulario-citas,
    .disponibilidad,
    .contacto-item,
    .trust-item {
        padding: 0.85rem;
    }

    .service-card img {
        height: 148px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.78rem;
    }

    .whatsapp-widget {
        right: 10px;
        bottom: 10px;
    }

    .whatsapp-button {
        width: 52px;
        height: 52px;
    }

    .whatsapp-chat {
        width: calc(100vw - 20px);
        bottom: 64px;
        right: 0;
        border-radius: 16px;
    }
}

/* Hero móvil: encuadre y legibilidad de la imagen principal */
@media (max-width: 768px) {
    .hero {
        min-height: clamp(420px, 72svh, 560px);
        padding: 5rem 1rem 2.75rem;
        background-image:
            linear-gradient(rgba(5, 8, 16, 0.72), rgba(10, 15, 28, 0.82)),
            url('img/hero-lubrimotor-futurista.png');
        background-size: cover;
        background-position: center 42%;
        background-repeat: no-repeat;
    }

    .hero-text {
        max-width: 360px;
        margin: 0 auto;
        padding: 0;
    }

    .hero-text h1 {
        font-size: clamp(2rem, 9.5vw, 2.65rem);
        line-height: 1.08;
        margin-bottom: 0.85rem;
    }

    .hero-text p {
        font-size: clamp(0.98rem, 4.2vw, 1.12rem);
        line-height: 1.45;
        margin-bottom: 1.35rem;
    }
}

@media (max-width: 430px) {
    .hero {
        min-height: clamp(390px, 68svh, 510px);
        padding: 4.4rem 0.9rem 2.25rem;
        background-position: 54% 42%;
    }

    .hero-text {
        max-width: 330px;
    }
}

@media (max-width: 360px) {
    .hero {
        min-height: 380px;
        padding: 4rem 0.8rem 2rem;
        background-position: 56% 42%;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .hero-text p {
        font-size: 0.96rem;
    }
}

/* ========================================
   MOBILE POLISH - EXPERIENCIA PREMIUM
   ======================================== */
@media (max-width: 768px) {
    .navbar {
        background: rgba(5, 8, 16, 0.72) !important;
        border-bottom-color: rgba(255, 159, 67, 0.14);
    }

    .navbar-container {
        max-width: 100%;
    }

    .logo img {
        border-radius: 10px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    }

    .nav-link.btn-cta {
        box-shadow: 0 12px 28px rgba(229, 91, 0, 0.32);
    }

    .hero {
        align-items: flex-end;
        padding-bottom: 3rem;
        background-image:
            linear-gradient(180deg, rgba(5, 8, 16, 0.48) 0%, rgba(5, 8, 16, 0.72) 48%, rgba(5, 8, 16, 0.92) 100%),
            url('img/hero-lubrimotor-futurista.png');
    }

    .hero-text {
        background: linear-gradient(180deg, rgba(10, 15, 28, 0.08), rgba(10, 15, 28, 0.2));
        border-radius: 18px;
    }

    .hero-text h1 {
        letter-spacing: 0;
        text-shadow: 0 3px 18px rgba(0, 0, 0, 0.85);
    }

    .hero-text p {
        color: #f0f2f5;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
    }

    .boton-hero,
    .btn-reservar {
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(229, 91, 0, 0.36);
    }

    .sobre-nosotros,
    .servicios,
    .ubicacion,
    .citas-online,
    .contacto {
        border-top-color: rgba(255, 159, 67, 0.12);
    }

    .sobre-nosotros h2,
    .servicios h2,
    .ubicacion h2,
    .citas-online h2,
    .contacto h2 {
        margin-bottom: 1rem;
        letter-spacing: 0;
    }

    .sobre-nosotros p,
    .servicios > p,
    .ubicacion p,
    .citas-online > .container > p,
    .contacto > p {
        margin-top: 1rem;
        color: #d4d7dd;
    }

    .trust-item,
    .service-card,
    .ubicacion-content,
    .formulario-citas,
    .disponibilidad,
    .contacto-item {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
        border-color: rgba(255, 159, 67, 0.18);
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
    }

    .service-card {
        border-radius: 18px;
        overflow: hidden;
    }

    .service-card img {
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
    }

    .card-content h4 {
        color: #ffffff;
        margin-top: 0.1rem;
    }

    .card-content p {
        color: #cfd3da;
    }

    .servicios-grid + br {
        display: none;
    }

    .servicio-titulo {
        margin-top: 2rem;
        margin-bottom: 0.9rem;
    }

    .formulario-citas {
        box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
    }

    .form-group label {
        margin-bottom: 0.4rem;
        color: #f3f4f6;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        border-radius: 13px;
        border-width: 1px;
        background: rgba(5, 8, 16, 0.88);
    }

    .btn-reservar {
        margin-top: 0.35rem;
        font-weight: 700;
    }

    .whatsapp-button {
        box-shadow: 0 12px 26px rgba(37, 211, 102, 0.34);
    }

    .whatsapp-chat {
        background: rgba(5, 8, 16, 0.96);
        border-color: rgba(255, 159, 67, 0.18);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.42);
    }
}

@media (max-width: 430px) {
    .hero {
        padding-bottom: 2.45rem;
    }

    .servicio-titulo {
        margin-top: 1.7rem;
    }
}

@media (max-width: 360px) {
    .hero {
        padding-bottom: 2.1rem;
    }

    .boton-hero,
    .btn-reservar {
        width: 100%;
    }
}

/* ========================================
   MOBILE DETAIL PASS - PULIDO VISUAL
   ======================================== */
@media (max-width: 768px) {
    body {
        color: #eef1f5;
    }

    .hero {
        box-shadow: inset 0 -90px 90px rgba(5, 8, 16, 0.72);
    }

    .hero-text h1,
    .sobre-nosotros h2,
    .servicios h2,
    .citas-online h2,
    .contacto h2 {
        text-wrap: balance;
    }

    .hero-text h1 {
        max-width: 11ch;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-text p {
        max-width: 30ch;
        margin-left: auto;
        margin-right: auto;
        color: #e8ebef;
    }

    .boton-hero {
        min-width: 190px;
        font-weight: 800;
        letter-spacing: 0.01em;
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .sobre-nosotros,
    .servicios,
    .ubicacion,
    .citas-online,
    .contacto {
        padding-top: 2.65rem;
        padding-bottom: 2.65rem;
    }

    .sobre-nosotros h2,
    .servicios h2,
    .ubicacion h2,
    .citas-online h2,
    .contacto h2 {
        font-size: clamp(1.65rem, 7vw, 2.05rem);
        margin-bottom: 0.75rem;
    }

    .sobre-nosotros h2::after {
        width: 72px;
        height: 2px;
        bottom: -8px;
    }

    .sobre-nosotros p,
    .servicios > p,
    .ubicacion p,
    .citas-online > .container > p,
    .contacto > p {
        max-width: 34rem;
        font-size: 0.98rem;
        line-height: 1.62;
    }

    .trust-section {
        margin-top: 2rem;
    }

    .trust-icon {
        font-size: 2.15rem;
        margin-bottom: 0.45rem;
    }

    .trust-item h3,
    .contacto-item h3 {
        font-size: 1.08rem;
    }

    .servicios > p {
        margin-bottom: 2rem;
    }

    .servicios-grid {
        gap: 1.15rem !important;
    }

    .servicio-titulo {
        font-size: 1.22rem;
        padding-left: 0.55rem;
        border-left: 3px solid #ff9f43;
    }

    .service-card {
        padding: 0.9rem;
        border-radius: 18px;
        gap: 0.8rem;
        border-color: rgba(255, 159, 67, 0.2);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
    }

    .service-card img {
        height: clamp(150px, 42vw, 188px);
        border-radius: 14px;
    }

    .card-content h4 {
        font-size: 1.08rem;
        margin-bottom: 0.45rem;
    }

    .card-content p {
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .formulario-citas {
        padding: 1.05rem;
    }

    .form-group {
        margin-bottom: 0.82rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 46px;
        padding: 0.78rem 0.85rem;
    }

    .btn-reservar {
        min-height: 50px;
        border-radius: 14px;
        letter-spacing: 0.01em;
    }

    .disponibilidad h3 {
        font-size: 1.08rem;
    }

    .horario-item {
        padding: 0.85rem;
        border-radius: 13px;
    }

    .contacto-info {
        margin-top: 1.35rem;
    }

    .contacto-item p {
        font-size: 0.98rem;
    }
}

@media (max-width: 430px) {
    .service-card img {
        height: clamp(145px, 43vw, 178px);
    }

    .hero-text h1 {
        max-width: 10.5ch;
    }
}

@media (max-width: 360px) {
    .sobre-nosotros,
    .servicios,
    .ubicacion,
    .citas-online,
    .contacto {
        padding-top: 2.15rem;
        padding-bottom: 2.15rem;
    }

    .service-card {
        padding: 0.78rem;
    }

    .service-card img {
        height: 140px;
    }

    .card-content p {
        font-size: 0.9rem;
    }
}

/* ========================================
   HOME MOBILE RESERVA Y HERO COMPACTO
   ======================================== */
body.home-page .mobile-reserva-bar {
    display: none;
}

@media (max-width: 768px) {
    body.home-page {
        padding-bottom: 76px;
    }

    body.home-page .hero {
        min-height: clamp(430px, 70svh, 540px);
        padding-top: 4.75rem;
        padding-bottom: 2.6rem;
        align-items: center;
    }

    body.home-page .hero-text {
        max-width: min(100%, 340px);
        margin-inline: auto;
        padding-inline: 0;
    }

    body.home-page .hero-text h1 {
        max-width: 11ch;
        margin-inline: auto;
        margin-bottom: 0.8rem;
        color: #ffffff;
        font-size: clamp(2.05rem, 9.8vw, 2.75rem);
        line-height: 1.06;
        font-weight: 800;
        letter-spacing: 0;
        text-transform: none;
        overflow-wrap: normal;
        word-break: keep-all;
        hyphens: none;
        text-wrap: balance;
    }

    body.home-page .hero-text p {
        max-width: 30ch;
        margin-bottom: 1.25rem;
    }

    body.home-page .boton-hero {
        min-width: 164px;
        min-height: 46px;
        padding: 0.82rem 1.35rem;
        font-size: 0.98rem;
    }

    body.home-page .sobre-nosotros {
        padding-top: 2.35rem;
        padding-bottom: 2.35rem;
    }

    body.home-page .sobre-nosotros p {
        max-width: 34rem;
        margin-top: 1.15rem;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    body.home-page .ubicacion {
        padding-top: 2.35rem;
        padding-bottom: 2.2rem;
    }

    body.home-page .ubicacion-container {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    body.home-page .ubicacion-content {
        padding: 1rem;
        border-radius: 14px;
        text-align: center;
        align-items: center;
    }

    body.home-page .ubicacion-label {
        margin-bottom: 0.45rem;
        font-size: 0.75rem;
    }

    body.home-page .ubicacion h2 {
        max-width: 13ch;
        margin-inline: auto;
        margin-bottom: 0.6rem;
        font-size: clamp(1.65rem, 7vw, 2.05rem);
        line-height: 1.14;
    }

    body.home-page .ubicacion p {
        max-width: 30ch;
        margin: 0 auto 0.9rem;
        font-size: 0.95rem;
        line-height: 1.48;
    }

    body.home-page .btn-maps {
        min-height: 44px;
        padding: 0.78rem 1.15rem;
        font-size: 0.94rem;
    }

    body.home-page .mapa-ubicacion {
        min-height: 255px;
        border-radius: 14px;
    }

    body.home-page .mapa-ubicacion iframe {
        min-height: 255px;
    }

    body.home-page .trust-section {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.72rem;
        margin-top: 1.45rem;
    }

    body.home-page .trust-item {
        min-height: 0;
        padding: 0.78rem 0.58rem;
        border-radius: 12px;
    }

    body.home-page .trust-icon {
        font-size: 1.45rem;
        line-height: 1;
        margin-bottom: 0.35rem;
    }

    body.home-page .trust-item h3 {
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
        line-height: 1.18;
    }

    body.home-page .trust-item p {
        font-size: 0.78rem;
        line-height: 1.25;
    }

    body.home-page .mobile-reserva-bar {
        position: fixed;
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.65rem;
        z-index: 1200;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
        padding: 0.62rem 0.72rem 0.62rem 0.9rem;
        background: rgba(5, 8, 16, 0.94);
        border: 1px solid rgba(255, 159, 67, 0.34);
        border-radius: 16px;
        box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
        backdrop-filter: blur(18px);
    }

    body.home-page .mobile-reserva-bar span {
        color: #ffffff;
        font-size: 0.95rem;
        font-weight: 700;
        line-height: 1.15;
    }

    body.home-page .mobile-reserva-bar a {
        flex: 0 0 auto;
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.7rem 1rem;
        color: #ffffff;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 800;
        line-height: 1;
        border-radius: 12px;
        background: linear-gradient(135deg, #ff9f43, #e55b00);
        box-shadow: 0 9px 22px rgba(229, 91, 0, 0.38);
    }

    body.home-page .whatsapp-widget {
        bottom: 84px;
        right: 12px;
        z-index: 1100;
    }

    body.home-page .whatsapp-chat {
        bottom: 148px;
    }

    body.home-page .contacto {
        padding-bottom: 5.4rem;
    }
}

@media (max-width: 430px) {
    body.home-page .hero {
        min-height: clamp(410px, 68svh, 500px);
        padding-top: 4.3rem;
        padding-bottom: 2.25rem;
    }

    body.home-page .hero-text {
        max-width: 310px;
    }

    body.home-page .hero-text h1 {
        max-width: 10.6ch;
        font-size: clamp(1.95rem, 10.2vw, 2.45rem);
    }

    body.home-page .trust-section {
        gap: 0.62rem;
    }

    body.home-page .mapa-ubicacion,
    body.home-page .mapa-ubicacion iframe {
        min-height: 235px;
    }
}

@media (max-width: 360px) {
    body.home-page {
        padding-bottom: 70px;
    }

    body.home-page .hero-text h1 {
        max-width: 10.4ch;
        font-size: 1.82rem;
    }

    body.home-page .trust-item {
        padding: 0.68rem 0.45rem;
    }

    body.home-page .trust-item h3 {
        font-size: 0.82rem;
    }

    body.home-page .trust-item p {
        font-size: 0.72rem;
    }

    body.home-page .ubicacion-content {
        padding: 0.85rem;
    }

    body.home-page .mapa-ubicacion,
    body.home-page .mapa-ubicacion iframe {
        min-height: 215px;
    }

    body.home-page .mobile-reserva-bar {
        left: 0.5rem;
        right: 0.5rem;
        bottom: 0.5rem;
        padding: 0.55rem 0.58rem 0.55rem 0.72rem;
    }

    body.home-page .mobile-reserva-bar span {
        font-size: 0.88rem;
    }

    body.home-page .mobile-reserva-bar a {
        min-height: 38px;
        padding-inline: 0.82rem;
        font-size: 0.86rem;
    }
}

/* ========================================
   HEXAGONAL NEON PREMIUM TEXTURE
   ======================================== */
body {
    background:
        radial-gradient(circle at 12% 34%, rgba(0, 170, 255, 0.11), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(255, 122, 24, 0.08), transparent 32%),
        radial-gradient(circle at 76% 82%, rgba(255, 45, 0, 0.045), transparent 28%),
        linear-gradient(30deg, rgba(255, 255, 255, 0.010) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.010) 87.5%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.007) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.007) 87.5%),
        linear-gradient(180deg, #05080d 0%, #08111c 45%, #05080d 100%);
    background-size: auto, auto, auto, 42px 72px, 42px 72px, auto;
    background-position: center, center, center, 0 0, 21px 36px, center;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.20;
    background-image:
        radial-gradient(circle at center, rgba(0, 170, 255, 0.07) 1px, transparent 1.5px),
        linear-gradient(30deg, rgba(255, 255, 255, 0.014) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.014) 87.5%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.011) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.011) 87.5%),
        linear-gradient(30deg, rgba(255, 255, 255, 0.009) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.009) 87.5%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.007) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.007) 87.5%);
    background-size: 42px 72px;
    background-position: 0 0, 0 0, 0 0, 21px 36px, 21px 36px;
}

.navbar {
    overflow: visible;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.24;
    background:
        radial-gradient(circle at 18% 50%, rgba(0, 170, 255, 0.10), transparent 32%),
        radial-gradient(circle at 82% 45%, rgba(255, 122, 24, 0.065), transparent 34%),
        linear-gradient(30deg, rgba(255, 255, 255, 0.012) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.012) 87.5%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.009) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.009) 87.5%);
    background-size: auto, auto, 40px 69px, 40px 69px;
}

.navbar-container {
    position: relative;
    z-index: 1;
}

.sobre-nosotros,
.servicios,
.paquetes,
.ubicacion,
.citas-online,
.contacto {
    background-image:
        radial-gradient(circle at 18% 10%, rgba(0, 170, 255, 0.040), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(255, 122, 24, 0.032), transparent 32%),
        linear-gradient(30deg, rgba(255, 255, 255, 0.008) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.008) 87.5%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.006) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.006) 87.5%);
    background-size: auto, auto, 44px 76px, 44px 76px;
    background-blend-mode: screen, screen, normal, normal;
}

.service-card,
.paquete-card,
.trust-item,
.ubicacion-content,
.formulario-citas,
.disponibilidad,
.contacto-item,
.whatsapp-chat,
.mobile-reserva-bar {
    background-image:
        radial-gradient(circle at 18% 0%, rgba(0, 170, 255, 0.065), transparent 34%),
        radial-gradient(circle at 88% 100%, rgba(255, 122, 24, 0.052), transparent 34%),
        linear-gradient(30deg, rgba(255, 255, 255, 0.010) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.010) 87.5%),
        linear-gradient(150deg, rgba(255, 255, 255, 0.007) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.007) 87.5%),
        linear-gradient(180deg, rgba(10, 22, 36, 0.92), rgba(4, 9, 16, 0.97));
    background-size: auto, auto, 38px 66px, 38px 66px, auto;
    background-blend-mode: screen, screen, normal, normal, normal;
}

.service-card:hover,
.paquete-card:hover,
.trust-item:hover,
.contacto-item:hover {
    border-color: rgba(255, 122, 24, 0.40);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.46),
        0 0 22px rgba(0, 170, 255, 0.14),
        0 0 18px rgba(255, 122, 24, 0.12);
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    body::before {
        opacity: 0.16;
        background-size: 48px 83px;
    }

    .navbar::before {
        opacity: 0.18;
    }

    .service-card,
    .paquete-card,
    .trust-item,
    .ubicacion-content,
    .formulario-citas,
    .disponibilidad,
    .contacto-item,
    .whatsapp-chat,
    .mobile-reserva-bar {
        background-image:
            radial-gradient(circle at 18% 0%, rgba(0, 170, 255, 0.050), transparent 34%),
            radial-gradient(circle at 88% 100%, rgba(255, 122, 24, 0.040), transparent 34%),
            linear-gradient(30deg, rgba(255, 255, 255, 0.007) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.007) 87.5%),
            linear-gradient(150deg, rgba(255, 255, 255, 0.005) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.005) 87.5%),
            linear-gradient(180deg, rgba(10, 22, 36, 0.94), rgba(4, 9, 16, 0.98));
    }
}

/* ========================================
   HOME HERO - FUTURISTIC LUBRIMOTOR IMAGE
   ======================================== */
.hero,
body.home-page .hero {
    position: relative;
    height: auto;
    min-height: calc(100vh - 86px);
    overflow: hidden;
    background-image: url('img/hero-lubrimotor-futurista.png');
    background-size: cover;
    background-position: 62% center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(circle at 22% 35%, rgba(0, 170, 255, 0.16), transparent 34%),
        radial-gradient(circle at 78% 42%, rgba(255, 122, 24, 0.10), transparent 32%),
        linear-gradient(90deg, rgba(5, 8, 13, 0.66), rgba(5, 8, 13, 0.42), rgba(5, 8, 13, 0.52)),
        linear-gradient(180deg, rgba(5, 8, 13, 0.24), rgba(5, 8, 13, 0.68));
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(circle at center, transparent 34%, rgba(0, 0, 0, 0.38) 100%),
        linear-gradient(180deg, transparent 0%, rgba(5, 8, 13, 0.58) 100%);
}

.hero-text {
    position: relative;
    z-index: 3;
}

.hero-brand-logo {
    display: block;
    width: min(420px, 80vw);
    max-width: 420px;
    height: auto;
    margin: 0 auto 24px;
    object-fit: contain;
    filter:
        drop-shadow(0 0 16px rgba(255, 106, 0, 0.25))
        drop-shadow(0 0 12px rgba(0, 174, 255, 0.18));
}

.hero-text h1 {
    color: #f5f7fa;
    text-shadow:
        0 5px 20px rgba(0, 0, 0, 0.88),
        0 0 14px rgba(0, 170, 255, 0.20);
}

.hero-text p {
    color: #d6dde6;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.72);
}

@media (max-width: 768px) {
    .hero,
    body.home-page .hero {
        min-height: calc(100svh - 76px);
        padding: 120px 18px 70px;
        background-image: url('img/hero-lubrimotor-futurista.png');
        background-position: 68% center;
        align-items: center;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(5, 8, 13, 0.52), rgba(5, 8, 13, 0.78)),
            linear-gradient(90deg, rgba(5, 8, 13, 0.68), rgba(5, 8, 13, 0.42));
    }

    .hero::after {
        background:
            radial-gradient(circle at 72% 42%, transparent 26%, rgba(0, 0, 0, 0.26) 100%),
            linear-gradient(180deg, transparent 0%, rgba(5, 8, 13, 0.58) 100%);
    }

    body.home-page .hero-text {
        max-width: min(100%, 340px);
    }

    .hero-brand-logo {
        max-width: 260px;
        margin-bottom: 18px;
    }
}

@media (max-width: 430px) {
    .hero,
    body.home-page .hero {
        min-height: calc(100svh - 70px);
        padding: 108px 16px 62px;
        background-position: 70% center;
    }
}

@media (max-width: 380px) {
    .hero-brand-logo {
        max-width: 220px;
    }
}

/* ========================================
   FINAL MOBILE UX PASS
   ======================================== */
:root {
    --color-orange: #ff7a18;
    --color-orange-dark: #e85d04;
    --color-orange-soft: #ff8f2a;
    --color-blue: #00aaff;
    --color-bg: #05080d;
    --color-bg-soft: #08111c;
    --color-text: #f5f7fa;
    --color-muted: #c9d1d9;
}

html {
    scroll-padding-top: 120px;
}

section[id],
#inicio,
#nosotros,
#servicios,
#reservar,
#reservas,
#contacto {
    scroll-margin-top: 125px;
}

.logo,
.navbar-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.logo .navbar-logo-text {
    width: 56px;
    height: 56px;
    max-width: 56px;
    max-height: 56px;
    object-fit: cover;
    border-radius: 50%;
    filter:
        drop-shadow(0 0 5px rgba(255, 122, 24, 0.50))
        drop-shadow(0 0 10px rgba(232, 93, 4, 0.22))
        drop-shadow(0 0 16px rgba(0, 170, 255, 0.38))
        drop-shadow(0 0 28px rgba(0, 170, 255, 0.18));
}

.boton-hero,
.btn-cta,
.btn-reservar,
.btn-paquete.primary,
.mobile-reserva-bar a {
    background: linear-gradient(135deg, var(--color-orange-soft) 0%, var(--color-orange-dark) 100%) !important;
    border-color: rgba(255, 122, 24, 0.58) !important;
    box-shadow:
        0 0 10px rgba(255, 122, 24, 0.30),
        0 0 20px rgba(232, 93, 4, 0.12),
        0 10px 24px rgba(0, 0, 0, 0.35);
}

.sobre-nosotros h2,
.servicios h2,
.paquetes h2,
.ubicacion h2,
.citas-online h2,
.contacto h2,
.servicio-titulo {
    color: var(--color-orange-soft);
    text-shadow:
        0 0 10px rgba(255, 122, 24, 0.18),
        0 0 18px rgba(0, 170, 255, 0.07);
}

.hero,
body.home-page .hero {
    min-height: calc(100vh - 86px);
    background-image: url('img/hero-lubrimotor-futurista.png');
    background-position: 62% center;
}

.hero::before {
    background:
        radial-gradient(circle at 22% 35%, rgba(0, 170, 255, 0.14), transparent 34%),
        radial-gradient(circle at 78% 42%, rgba(255, 122, 24, 0.09), transparent 32%),
        linear-gradient(90deg, rgba(5, 8, 13, 0.58), rgba(5, 8, 13, 0.34), rgba(5, 8, 13, 0.46)),
        linear-gradient(180deg, rgba(5, 8, 13, 0.18), rgba(5, 8, 13, 0.60));
}

.hero::after {
    background:
        radial-gradient(circle at center, transparent 32%, rgba(0, 0, 0, 0.36) 100%),
        linear-gradient(180deg, transparent 0%, rgba(5, 8, 13, 0.58) 100%);
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 95px;
    }

    section[id],
    #inicio,
    #nosotros,
    #servicios,
    #reservar,
    #reservas,
    #contacto {
        scroll-margin-top: 100px;
    }

    .logo .navbar-logo-text {
        width: 46px;
        height: 46px;
        max-width: 46px;
        max-height: 46px;
    }

    .hero,
    body.home-page .hero {
        min-height: calc(100svh - 76px);
        padding: 120px 18px 90px;
        background-image: url('img/hero-lubrimotor-futurista.png');
        background-size: cover;
        background-position: 78% center;
        background-repeat: no-repeat;
        box-shadow: inset 0 -70px 74px rgba(5, 8, 16, 0.38);
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(5, 8, 13, 0.22), rgba(5, 8, 13, 0.52)),
            linear-gradient(90deg, rgba(5, 8, 13, 0.32), rgba(5, 8, 13, 0.16), rgba(5, 8, 13, 0.32));
    }

    .hero::after {
        background:
            radial-gradient(circle at center, transparent 36%, rgba(0, 0, 0, 0.24) 100%),
            linear-gradient(180deg, transparent 0%, rgba(5, 8, 13, 0.42) 100%);
    }

    .hero-text,
    body.home-page .hero-text {
        background: rgba(3, 8, 14, 0.18);
        backdrop-filter: blur(2px);
        border-radius: 22px;
        padding: 18px 14px;
    }

    body {
        padding-bottom: 82px;
    }

    body.home-page {
        padding-bottom: 82px;
    }

    .whatsapp-widget {
        right: 18px;
        bottom: 96px;
        z-index: 9997;
    }

    body.home-page .whatsapp-widget {
        right: 18px;
        bottom: 104px;
    }

    .whatsapp-button {
        width: 52px;
        height: 52px;
    }

    body.home-page .mobile-reserva-bar {
        min-height: 68px;
        padding: 10px 14px;
        background: rgba(3, 8, 14, 0.92);
        backdrop-filter: blur(14px);
        border-top: 1px solid rgba(255, 122, 24, 0.18);
        box-shadow: 0 -10px 26px rgba(0, 0, 0, 0.38);
    }
}

@media (max-width: 420px) {
    .logo .navbar-logo-text {
        width: 42px;
        height: 42px;
        max-width: 42px;
        max-height: 42px;
    }
}
