/* RESET PROFESIONAL */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Lora', serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
}

/* TIPOGRAFÍA GLOBAL */
h1, h2, h3, h4, .logo, .nav-links a, .btn-primary, .btn-secondary-hero, .btn-cta, .sub-title, .number, .cta-box span, .main-footer p {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

/* --- BOTONES HERO / PRINCIPALES --- */

.btn-primary {
    display: inline-block;
    background-color: var(--color-primary); /* #8E7618 */
    color: var(--color-pure-white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: var(--border-radius-sm); /* 2px */
    transition: var(--transition-fast);
    border: 1px solid var(--color-primary);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(142, 118, 24, 0.2);
}

.btn-secondary-hero {
    display: inline-block;
    background-color: #ffffff;
    color: var(--color-deep-black);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-fast);
    border: 1px solid var(--color-deep-black);
    margin-left: 15px; /* Espacio entre botones */
}

.btn-secondary-hero:hover {
    background-color: var(--color-deep-black);
    color: var(--color-pure-white);
    transform: translateY(-3px);
}

/* Ajuste para móviles */
@media (max-width: 480px) {
    .btn-primary, .btn-secondary-hero {
        display: block;
        width: 100%;
        margin-left: 0;
        margin-bottom: 15px;
        text-align: center;
    }
}

/* HEADER Y NAVEGACIÓN - SUSTITUIR ESTE BLOQUE COMPLETO */
.main-header {
    padding: 1.5rem 5%;
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo { font-weight: 900; letter-spacing: 2px; font-size: 1.8rem; }
.logo span { font-weight: 300; color: #666; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

/* EFECTO HOVER ENLACES */
.nav-links a:hover {
    color: #8E7618;
}

.btn-cta {
    background: #000;
    color: #fff !important;
    padding: 0.8rem 1.8rem;
    border-radius: 2px;
    transition: all 0.3s ease !important;
}

/* EFECTO HOVER BOTÓN (COLOR DE FONDO) */
.nav-links a.btn-cta:hover {
    background: #8E7618 !important;
    color: #fff !important;
}

/* HERO SECTION */

.hero {
    height: 60vh; 
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/imgfondo11.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.hero-inner { max-width: 1000px; } 
.hero h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -2px; }

.hero h1 span { color: #ccc; }
.hero p { font-size: 1.2rem; color: #eee; margin-bottom: 2rem; max-width: 600px; font-style: italic; }

.hero-btns { display: flex; gap: 1rem; }

/* --- ESTILO BASE UNIFICADO PARA BOTONES --- */
.btn-learn-more {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid #ffffff; /* Borde negro base para todos */
    background: transparent;
    color: #0F0F0F;
    text-align: center;
}

/* SECCIÓN HISTORIA */

.full-story-section { padding: 8rem 10%; background: #fff; }
.story-header { text-align: center; margin-bottom: 5rem; }
.sub-title { font-size: 1.1rem; font-weight: 600; letter-spacing: 5px; color: #555; display: block; margin-bottom: 1rem; }
.story-header h2 { font-size: 3rem; letter-spacing: -1px; }

.story-row { display: flex; align-items: center; gap: 80px; margin-bottom: 100px; }
.story-row.reverse { flex-direction: row-reverse; }
.story-text-box { flex: 1; }
.story-text-box h3 { font-size: 1.8rem; margin-bottom: 1.5rem; line-height: 1.3; }
.story-text-box p { font-size: 1.15rem; color: #444; margin-bottom: 1.2rem; }
.story-image-box { flex: 1; height: 500px; background: #f4f4f4; overflow: hidden; }
.story-image-box img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.story-image-box:hover img { transform: scale(1.05); }

.final-quote { font-weight: 700; font-style: italic; color: #000; border-left: 3px solid #000; padding-left: 1.5rem; margin-top: 2rem !important; font-size: 1.25rem !important; text-transform: none !important; }


/* SECCIÓN WHATSAPP */

.whatsapp-cta-section { background: #f9f9f9; padding: 6rem 10%; text-align: center; border-top: 1px solid #eee; }
.whatsapp-container { max-width: 700px; margin: 0 auto; }
.whatsapp-container h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.whatsapp-container p { font-size: 1.1rem; color: #666; margin-bottom: 2.5rem; font-style: italic; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 12px; background: #25D366; color: #fff; padding: 1.2rem 2.5rem; text-decoration: none; font-family: 'Montserrat', sans-serif; font-weight: 700; text-transform: uppercase; border-radius: 50px; transition: 0.3s; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2); }
.btn-whatsapp:hover { background: #20ba5a; transform: scale(1.05); box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3); }

/* GRID DE FORTALEZAS (SOLUCIÓN 3x2) */

.section-padding { padding: 8rem 10%; }
.bg-light { background: #fff; border-top: 1px solid #eee; }
.strengths-header { text-align: center; margin-bottom: 4rem; }

.grid-fortalezas {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.strength-card {
    padding: 3rem 2rem;
    background: #fff;
    border: 1px solid #f0f0f0;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.strength-card:hover {
    border-color: #000;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.strength-card .number {
    font-size: 0.9rem;
    color: #000;
    margin-bottom: 1.5rem;
    opacity: 0.3;
}

.strength-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    color: #000;
    min-height: 3em; 
}


.strength-card p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* INFO DARK */

.info-dark { background: #111; color: #fff; padding: 5rem 10%; }
.info-content { display: flex; justify-content: space-between; max-width: 1400px; margin: 0 auto; }
.info-item h4 { color: #555; font-size: 0.75rem; margin-bottom: 1.5rem; letter-spacing: 2px; }
.info-item p { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* CTA GRID */

.cta-grid { display: grid; grid-template-columns: 1fr 1fr; height: 400px; }
.cta-box { display: flex; align-items: center; justify-content: center; text-decoration: none; color: #fff; font-weight: bold; letter-spacing: 2px; transition: 0.4s; }
.image-bg { background: #222; border-right: 1px solid #333; }
.dark-bg { background: #000; }
.cta-box:hover { background: #333; }

/* FOOTER */

.main-footer {
    padding: 3rem;
    text-align: center;
    font-size: 0.85rem;
    color: #000;
    font-weight: 400;
    letter-spacing: 2px;
    border-top: 1px solid #eee;
}

/* AJUSTES RESPONSIVOS PARA EL HEADER */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column; /* Logo arriba, menú abajo */
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap; /* Si no caben, bajan a la siguiente línea */
        justify-content: center;
        padding: 0;
    }

    .nav-links a {
        font-size: 0.7rem; /* Un poco más pequeño en móvil */
    }
    
    .logo {
        font-size: 1.4rem;
    }
}

/* BOTTOM NAVIGATION GRID */

.bottom-navigation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border-top: 1px solid #eee;
}

.nav-bottom-item {
    padding: 6rem 3rem;
    text-align: center;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-bottom-item:last-child {
    border-right: none;
}

.nav-bottom-item:hover {
    background: #fafafa;
}

.nav-bottom-item:hover .nav-icon {
    transform: translateY(-5px);
}

.nav-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 2rem;
    color: #999;
    transition: transform 0.4s ease;
}

.nav-bottom-item h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.nav-bottom-item p {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2rem;
    max-width: 250px;
}

.nav-link-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #000;
    padding-bottom: 4px;
    color: #000;
}

/* Ajustes Responsive para la nueva sección */

@media (max-width: 900px) {
    .bottom-navigation-grid {
        grid-template-columns: 1fr;
    }
    .nav-bottom-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 4rem 2rem;
    }
}




/* --- ESTILOS ESPECÍFICOS PARA LA PÁGINA DE SERVICIOS --- */

.services-hero-wrapper {
    background-color: #ffffff;
}

/* Reducción del tamaño del fondo al 50% (aprox 40vh) */
.compact-hero {
    height: 45vh !important;
    min-height: 350px;
}

/* Configuración del fondo montaña.jpg */
.services-hero-bg {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/montaña1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Texto más grande y sin saltos de línea */
.giant-title {
    font-size: 5.5rem !important;
    white-space: nowrap;
    margin-bottom: 0.5rem !important;
}

/* Estilo para destacar el párrafo y forzar una sola línea */
.hero-highlight-text {
    white-space: nowrap;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0px 2px 10px rgba(0,0,0,0.8); /* Resalte contra el fondo */
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Ajuste de Grid de Servicios */
.services-grid-bg {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/* TARJETAS DE SERVICIOS SIMÉTRICAS */
.service-card-highlight {
    padding: 0 !important;
    overflow: hidden;
    border: none !important;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex; /* Activamos flexbox en la tarjeta */
    flex-direction: column;
    height: 100%; /* Obligamos a que todas midan lo mismo en el grid */
}

.service-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-highlight:hover .service-image-container img {
    transform: scale(1.1);
}

.service-card-highlight .card-header {
    padding: 1.5rem 2rem 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

/* Contenedor central para empujar el botón al fondo */
.card-body-content {
    padding: 0 2rem 1.5rem;
    flex-grow: 1; /* Este contenedor crece para ocupar el espacio sobrante */
}

.service-card-highlight h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.2;
    min-height: auto !important;
}

.service-card-highlight p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.btn-learn-more {
    display: block;
    width: 100%;
    padding: 1.2rem;
    text-align: center;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: background 0.3s ease;
    flex-shrink: 0;
}


/* Sección Criterios - Espaciado corregido */
.dark-experience {
    background: #000;
    color: #fff;
    padding: 8rem 5%;
}

.experience-header {
    text-align: center;
    margin-bottom: 5rem;
}

.whatsapp-container.wide-layout {
    max-width: 1400px;
    margin: 0 auto;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
    width: 100%;
}

.tip-item h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #fff;
}

.tip-item p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Navegación Inferior Dual */
.bottom-navigation-grid-dual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.bottom-navigation-grid-dual .nav-bottom-item {
    padding: 5rem 2rem;
    text-align: center;
    border: 0.5px solid #eee;
    text-decoration: none;
    color: #000;
    transition: background 0.3s ease;
}

.bottom-navigation-grid-dual .nav-bottom-item:hover {
    background: #ffffff;
}

.bottom-navigation-grid-dual h3 {
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 900;
}

.bottom-navigation-grid-dual .nav-icon {
    color: #000;
    margin-bottom: 1rem;
}

.bottom-navigation-grid-dual .nav-link-text {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
}

/* Responsive Servicios */
@media (max-width: 1024px) {
    .tips-grid { grid-template-columns: repeat(2, 1fr); }
    .giant-title { font-size: 4rem !important; white-space: normal; }
    .hero-highlight-text { white-space: normal; font-size: 1rem; }
}

@media (max-width: 768px) {
    .bottom-navigation-grid-dual { grid-template-columns: 1fr; }
    .tips-grid { grid-template-columns: 1fr; }
    .giant-title { font-size: 3rem !important; }
    .compact-hero { height: 35vh !important; }
}


/* --- ESTILOS ESPECÍFICOS PARA LA PÁGINA DE SERVICIOS --- */

.services-hero-wrapper {
    background-color: #ffffff;
}

/* Reducción del tamaño del fondo al 50% (aprox 40vh) */
.compact-hero {
    height: 45vh !important;
    min-height: 350px;
}

/* Fondos específicos para Héroes de Servicio */
.essential-hero-bg { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/essential.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.deepclean-hero-bg { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/deepclean1.png'); background-size: cover; background-position: center; background-attachment: fixed; }
.exterior-hero-bg { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/detailexterior.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.decontamination-hero-bg { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/claybar.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }

/* Nuevos fondos de héroe para servicios detallados */
.polishing-hero-bg { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/pulido.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.ceramic-hero-bg { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/ceramico.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.llantas-hero-bg { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/llantas-f.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.grafeno-hero-bg { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/grafeno-quick.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.seats-hero-bg { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/asientos2.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.textile-hero-bg { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/textil.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.asientocuero-hero-bg { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/cuero.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }
.waxing-hero-bg { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../assets/wax.jpg'); background-size: cover; background-position: center; background-attachment: fixed; }

.exterior-hero-bg .giant-title,
.deepclean-hero-bg .giant-title,
.llantas-hero-bg .giant-title,
.essential-hero-bg .giant-title,
.asientocuero-hero-bg .giant-title, 
.decontamination-hero-bg .giant-title, 
.polishing-hero-bg .giant-title, 
.grafeno-hero-bg .giant-title, 
.seats-hero-bg .giant-title, 
.ceramic-hero-bg .giant-title, 
.textile-hero-bg .giant-title,
.waxing-hero-bg .giant-title {
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Texto más grande y sin saltos de línea */
.giant-title {
    font-size: 5.5rem !important;
    white-space: nowrap;
    margin-bottom: 0.5rem !important;
}

.hero-highlight-text {
    white-space: nowrap;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0px 2px 10px rgba(0,0,0,0.8);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Paleta de colores de acento para las tarjetas de servicio */
.accent-interior .service-tag { color: #8E7618; }
.accent-exterior .service-tag { color: #8E7618; }


/* COLORES ACENTO */
.accent-interior { border-top: 5px solid #8E7618 !important; }
.accent-interior .service-tag { color: #1A1A1B; font-weight: 900; }
.accent-interior .btn-learn-more:hover { background: #8E7618; }

.accent-exterior { border-top: 5px solid #8E7618 !important; }
.accent-exterior .service-tag { color: #1A1A1B; font-weight: 900; }
.accent-exterior .btn-learn-more:hover { background: #8E7618; }


/* Estilos de imagen en Grid de servicios */
.service-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.strength-card:hover .service-image-container img {
    transform: scale(1.1);
}

.service-card-highlight {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Responsive para grid de servicios */
@media (max-width: 768px) {
    .giant-title {
        font-size: 3rem !important;
        white-space: normal;
    }
}


/* ESTILOS PARA DETALLE DE SERVICIO (Essential, DeepClean, Pulido, etc.) */

.service-detail-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.intro-experience {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.detail-content-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.accent-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.lead-text {
    font-size: 1.4rem;
    color: #333;
    line-height: 1.6;
    font-family: 'Lora', serif;
}

/* Rejilla de Checklist */
.technical-check h3, .why-us-section h3 {
    text-transform: uppercase;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: #000;
    border-left: 4px solid #d4af37;
    padding-left: 15px;
}

.sub-h3 {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.check-item .item-header {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: #000;
    letter-spacing: 1px;
}

.check-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.gift-box {
    background: #fdfaf0;
    padding: 3rem;
    border: 1px solid #e9d7a5;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.gift-tag {
    display: inline-block;
    background: #d4af37;
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.gift-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* Sección Why Us */
.why-item {
    margin-bottom: 2.5rem;
}

.why-item strong {
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.6rem;
    color: #000;
}

.why-item p {
    color: #666;
    line-height: 1.6;
}

/* Card Lateral Estilizada */
.detail-side-card {
    height: fit-content;
    position: sticky;
    top: 100px;
}

.transparency-card {
    background: #000;
    color: #fff;
    padding: 2.5rem; /* Ajustado para que no sea tan gigante */
    margin-bottom: 0; /* Pegado al siguiente elemento si quieres, o deja 1rem */
}

.transparency-card h4 {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    color: #d4af37;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid #222;
}

.data-row span { font-size: 0.85rem; color: #777; text-transform: uppercase; }
.data-row strong { font-size: 1.8rem; font-weight: 900; color: #fff; }

/* Estilos para la Alerta dentro del fondo negro */
.exclusion-alert {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
}

.exclusion-alert h5 {
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exclusion-alert ul {
    list-style: none;
    padding: 0;
}

.exclusion-alert li {
    font-size: 0.8rem;
    color: #bbb;
    line-height: 1.5;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 15px;
}

.exclusion-alert li::before {
    content: "•";
    color: #d4af37;
    position: absolute;
    left: 0;
}

.exclusion-alert li strong {
    color: #fff;
    font-weight: 600;
}

/* El resto de estilos (.extra-item-centered, .extra-disclaimer, etc.) 
   se mantienen como los definimos anteriormente ya que ahora están 
   fuera del contenedor negro y heredarán el fondo blanco del body */

/* Exclusiones / Avisos Destacados */
.exclusion-alert {
    margin-top: 2.5rem;
    background: #111;
    padding: 1.5rem;
    border-left: 3px solid #ff4444;
}

.exclusion-alert h5 {
    color: #ff4444;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.exclusion-alert ul {
    list-style: none;
    padding: 0;
}

.exclusion-alert li {
    font-size: 0.8rem;
    color: #bbb;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

/* Extras */
.extras-section {
    background: #fff;
    border: 1px solid #eee;
    padding: 2.5rem;
}

.extras-section h4 {
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f5f5f5;
}

.extra-item:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }

.extra-info {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.extra-icon { font-size: 1.8rem; }
.extra-info strong { display: block; font-size: 0.95rem; margin-bottom: 0.3rem; }
.extra-info p { font-size: 0.8rem; color: #888; line-height: 1.3; }
.extra-price { font-weight: 900; font-size: 1rem; color: #d4af37; }

/* Botones */
.service-action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 5rem 0;
    border-top: 1px solid #eee;
}

.btn-hire-main {
    background: #000;
    color: #fff;
    padding: 1.8rem 5rem;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.btn-hire-main:hover { background: #d4af37; transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.btn-back-services {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .detail-content-grid { grid-template-columns: 1fr; }
    .check-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .giant-title { font-size: 3rem !important; white-space: normal; }
    .detail-side-card { position: relative; top: 0; }
}


/*Página imágenes*/


/* --- ESTILOS ESPECÍFICOS PARA LA PÁGINA DE IMÁGENES (GALLERY COMING SOON) --- */

.gallery-hero-bg {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../assets/hero-bg.jpg'); /* Reutiliza el fondo del index o uno oscuro */
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 100px 5%;
}

.gallery-coming-soon-container {
    max-width: 800px;
}

.gallery-coming-soon-container .giant-title {
    font-size: 5rem !important;
    line-height: 1;
    color: #fff;
    margin: 1.5rem 0;
    white-space: normal; /* Permite el salto de línea para este diseño */
}

.coming-soon-content .lead-text {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.next-feature-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed #d4af37;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 4px;
}

.next-feature-box h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.next-feature-box p {
    color: #eee;
    font-size: 0.95rem;
    font-family: 'Lora', serif;
    font-style: italic;
}

.gallery-placeholder-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    opacity: 0.3;
    filter: grayscale(1);
    transform: translateY(50px);
}

.placeholder-item {
    background: #ddd;
    height: 300px;
    position: relative;
}

.placeholder-item::after {
    content: "DRS";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Montserrat';
    font-weight: 900;
    color: #bbb;
    letter-spacing: 5px;
}

@media (max-width: 768px) {
    .gallery-coming-soon-container .giant-title {
        font-size: 3rem !important;
    }
    
    .gallery-placeholder-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* --- ESTILOS ESPECÍFICOS PARA LA PÁGINA DE RESEÑAS (REVIEWS COMING SOON) --- */

.reviews-hero-bg {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('../assets/hero-bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    padding: 100px 5%;
}

.reviews-coming-soon-container {
    max-width: 850px;
}

.reviews-coming-soon-container .giant-title {
    font-size: 5rem !important;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2rem;
    white-space: normal;
}

.reviews-actions .btn-hire-main {
    display: inline-block;
}

.stars-placeholder {
    text-align: center;
    opacity: 0.4;
}

.star-item {
    display: inline-block;
    font-size: 2.5rem;
    color: #d4af37;
    margin: 0 5px;
    animation: pulse-star 2s infinite ease-in-out;
}

.star-item:nth-child(2) { animation-delay: 0.2s; }
.star-item:nth-child(3) { animation-delay: 0.4s; }
.star-item:nth-child(4) { animation-delay: 0.6s; }
.star-item:nth-child(5) { animation-delay: 0.8s; }

.stars-placeholder p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 1.5rem;
    color: #666;
}

@keyframes pulse-star {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

@media (max-width: 768px) {
    .reviews-coming-soon-container .giant-title {
        font-size: 3rem !important;
    }
}


/* --- ESTILOS ESPECÍFICOS PARA LA PÁGINA DE CITA (BOOKING FORM) --- */

.form-container-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

/* NUEVO ENCABEZADO Y HERO MINIMALISTA */
.drs-custom-header {
    background: #fff;
    width: 100%;
}

.header-top-bar {
    background: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-align: center;
    padding: 10px 0;
}

.nav-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.brand-logo a {
    text-decoration: none;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.brand-logo span {
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 5px;
    margin-left: 5px;
    font-size: 1.2rem;
}

.nav-links-minimal {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links-minimal a {
    text-decoration: none;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links-minimal a:hover, .active-link {
    color: #d4af37 !important;
}

.booking-hero-minimal {
    padding: 100px 5%;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.hero-tag {
    font-family: 'Montserrat';
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.hero-title-main {
    font-family: 'Montserrat';
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
}

.hero-title-main span {
    font-family: 'Lora';
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    color: #1a1a1a;
}

.hero-divider {
    width: 50px;
    height: 2px;
    background: #d4af37;
    margin: 2rem auto;
}

.hero-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-family: 'Lora';
    color: #666;
    font-size: 1.1rem;
}


/* FORMULARIO Y SECCIONES (ESTILO ORIGINAL) */
.drs-form {
    background: #fff;
    padding: 2rem 0;
}

.form-section {
    position: relative;
    padding-left: 60px;
    margin-bottom: 5rem;
}

.section-indicator {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 0.9rem;
    font-weight: 900;
    color: #d4af37;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 5px;
}

.form-section h3 {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.input-group.full-width {
    grid-column: span 2;
}

.input-group label {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 1px;
}

.input-group input, 
.input-group select {
    padding: 1.2rem;
    border: 1px solid #eee;
    background: #fafafa;
    font-family: 'Lora', serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group select:focus {
    outline: none;
    border-color: #d4af37;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.form-footer {
    margin-top: 4rem;
    padding: 3rem;
    background: #f9f9f9;
    text-align: center;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* SECCIÓN INFO-DARK (SIN CAMBIOS) */
.info-dark {
    background: #000;
    color: #fff;
    padding: 5rem 5%;
}

.info-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.info-item h4 {
    color: #d4af37;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.info-item p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #bbb;
}

@media (max-width: 768px) {
    .input-grid { grid-template-columns: 1fr; }
    .input-group.full-width { grid-column: span 1; }
    .form-section { padding-left: 0; padding-top: 40px; }
    .section-indicator { top: 0; left: 0; }
    .hero-title-main { font-size: 2.5rem; }
    .nav-links-minimal { display: none; }
    .info-content { grid-template-columns: 1fr; text-align: center; }
}




/* --- TARJETA DE EXTRA CENTRADA --- */
.extra-item-centered {
    display: flex;
    flex-direction: column; /* Alineación vertical */
    align-items: center;    /* Centra todo horizontalmente */
    text-align: center;     /* Centra los textos */
    padding: 3rem 2rem;
    background: #ffffff;
    border: 1px solid #eaeaea;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.extra-item-centered:hover {
    border-color: #d4af37; /* El borde se vuelve dorado al pasar el ratón */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.extra-icon-large {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.extra-content strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    color: #000;
}

.extra-content p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 300px; /* Para que el texto no se estire demasiado */
}

/* BOTÓN PREMIUM MEJORADO */
.btn-consultar-extra {
    display: inline-block;
    padding: 12px 35px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-consultar-extra:hover {
    background: transparent;
    color: #d4af37;
    border-color: #d4af37;
    transform: translateY(-3px);
}

.extra-disclaimer {
    max-width: 600px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    text-align: center;
}

.extra-disclaimer p {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #888;
    font-style: italic;
}

.extra-disclaimer strong {
    color: #d4af37; /* Dorado para resaltar la importancia */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- ESTILOS ESPECÍFICOS PÁGINA CONTACTO --- */

.contact-hero {
    min-height: 80vh;
    padding: 6rem 5%;
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 1200px;
    width: 100%;
}

.contact-header-title {
    margin-bottom: 5rem;
    text-align: center;
}

.contact-header-title h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    margin-top: 1rem;
    letter-spacing: -2px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Bloque de Datos Izquierda */
.contact-info-block .info-group {
    margin-bottom: 3.5rem;
}

.contact-info-block h4 {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: #d4af37; /* Dorado DRS */
    margin-bottom: 1rem;
}

.contact-info-block p, 
.contact-info-block .contact-link {
    font-size: 1.4rem;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.contact-info-block .large-link {
    font-weight: 900;
    font-size: 2.2rem;
}

.contact-info-block .contact-link:hover {
    color: #d4af37;
}

/* Bloques de Aviso Derecha */
.contact-notices-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.alert-box-dark {
    background: #000;
    color: #fff;
    padding: 3rem;
    position: relative;
    border-radius: 2px;
}

.alert-box-dark h3 {
    color: #d4af37;
    margin: 1.5rem 0 1rem 0;
}

.alert-box-dark p {
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    opacity: 0.9;
}

.pickup-service-card {
    background: #f9f9f9;
    padding: 3rem;
    border: 1px solid #eee;
    border-radius: 2px;
}

.pickup-service-card h3 {
    margin: 1.5rem 0 1rem 0;
    font-weight: 900;
}

.pickup-service-card p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #444;
}

.pickup-service-card .icon, 
.alert-box-dark .icon {
    font-size: 2.5rem;
}

/* Botón Final */
.contact-footer-action {
    margin-top: 6rem;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 4rem;
}

/* Responsivo */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-header-title { text-align: left; }
    
    .contact-info-block .large-link {
        font-size: 1.8rem;
    }
}

/* --- ESTILOS PÁGINAS LEGALES --- */
.legal-page {
    background-color: #fcfcfc;
}

.legal-content {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 5%;
    min-height: 70vh;
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #000;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 1rem;
    margin: 2rem 0 1rem 0;
    letter-spacing: 1px;
}

.legal-content p, .legal-content li {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    list-style: none;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
}

.back-link {
    display: inline-block;
    margin-top: 3rem;
    text-decoration: none;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* --- ACTUALIZACIÓN FOOTER --- */
.main-footer {
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid #eee;
}

.main-footer p {
    font-size: 0.75rem; /* Tamaño pequeño sugerido (10pt aprox) */
    color: #888;
    letter-spacing: 1px;
}

.main-footer a {
    color: #888;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: #d4af37;
}

/* --- ESTILOS ESPECÍFICOS PARA PÁGINAS LEGALES --- */

.legal-page {
    background: #ffffff;
}

.legal-content-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 5%;
}

.legal-header {
    text-align: center;
    margin-bottom: 4rem;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin: 1rem 0;
}

.last-update {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    border-left: 3px solid #d4af37; /* Detalle dorado lateral */
    padding-left: 15px;
}

.legal-section p {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.data-list {
    list-style: none;
    background: #f9f9f9;
    padding: 2rem;
    border: 1px solid #eee;
}

.data-list li {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.legal-link {
    color: #d4af37;
    text-decoration: underline;
    font-weight: 600;
}

.back-link {
    display: inline-block;
    margin-top: 4rem;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #d4af37;
}

/* Footer Legal Links */
.footer-legal-links {
    margin-top: 15px;
}

.footer-legal-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.75rem;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: #d4af37;
}

@media (max-width: 768px) {
    .legal-header h1 { font-size: 2.2rem; }
}

/* --- ESTILO TABLA DE COOKIES --- */
.cookie-table-wrapper {
    overflow-x: auto; /* Permite scroll lateral en móvil si la tabla es grande */
    margin: 2rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #eee;
    font-family: 'Montserrat', sans-serif;
}

.cookie-table th, .cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.85rem;
}

.cookie-table th {
    background: #f9f9f9;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
}

.cookie-table td strong {
    color: #d4af37;
}

.cookie-links {
    list-style: none;
    padding: 1rem 0;
}

.cookie-links li {
    margin-bottom: 0.5rem;
}

.cookie-links a {
    color: #444;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.cookie-links a:hover {
    color: #d4af37;
}


/* --- ESTILOS FORMULARIO CITA --- */

.radio-selector-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 10px;
}

.radio-card {
    cursor: pointer;
    position: relative;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-content {
    display: block;
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.radio-card input:checked + .radio-content {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Extras Grid */
.extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: #f9f9f9;
    padding: 20px;
    margin-top: 15px;
    border: 1px solid #eee;
}

.extra-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.extra-checkbox-item label {
    font-family: 'Lora', serif;
    font-size: 0.85rem;
    color: #444;
    cursor: pointer;
}

.extra-checkbox-item input[type="checkbox"] {
    accent-color: #d4af37;
    width: 16px;
    height: 16px;
}

/* Contenedor de Presupuesto y Aviso */
.budget-container-wrapper {
    margin-top: 30px;
}

/* Contador de Presupuesto */
.budget-counter {
    padding: 30px;
    background: #000;
    color: #fff;
    text-align: center;
    border-radius: 2px;
}

.budget-label {
    font-family: 'Montserrat';
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 10px;
}

.budget-amount {
    font-family: 'Montserrat';
    font-size: 2.5rem;
    font-weight: 900;
}

.budget-disclaimer {
    font-family: 'Lora';
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
    margin-top: 15px;
    line-height: 1.4;
}

/* AVISO PAGO ADELANTADO (JUNTO AL PRESUPUESTO) */
.payment-notice {
    display: flex;
    align-items: center;
    background: #fffbeb;
    border: 1px solid #fef3c7;
    border-left: 5px solid #d4af37;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 2px;
}

.notice-icon {
    background: #d4af37;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.notice-text {
    font-size: 0.85rem;
    color: #92400e;
    font-family: 'Montserrat';
}

.notice-text strong {
    color: #000;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .radio-selector-group, .extras-grid {
        grid-template-columns: 1fr;
    }
}

/* --- BANNER DE COOKIES --- */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: #000;
    color: #fff;
    padding: 25px;
    z-index: 9999;
    border: 1px solid #8E7618;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.cookie-content p {
    font-family: 'Lora', serif;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #8E7618;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-cookie {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 10px 25px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background: #8E7618;
    color: #fff;
}

.btn-cookie.accept:hover {
    background: #715e14;
}

.btn-cookie.reject {
    background: #333;
    color: #ccc;
}

.btn-cookie.reject:hover {
    background: #444;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        width: 100%;
        transform: translateX(-50%);
        border-left: none;
        border-right: none;
    }
}

/* AJUSTES GENERALES PARA MÓVIL */
@media (max-width: 768px) {
    .hero-title-main {
        font-size: 2.2rem !important; /* Reducimos el tamaño del título */
        padding: 0 10px;
    }

    .hero-minimal {
        padding: 60px 5%; /* Menos espacio arriba y abajo */
    }

    /* Los botones que creamos antes ahora se verán uno encima de otro */
    .btn-primary, .btn-secondary-hero {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
        box-sizing: border-box;
        text-align: center;
    }
}

/* RESET RESPONSIVO CRÍTICO */
html, body {
    overflow-x: hidden; /* Evita que la web baile hacia los lados */
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box; /* Asegura que el padding no rompa el ancho */
}

/* MEDIA QUERY PARA MÓVILES */
@media (max-width: 768px) {
    
    /* 1. Títulos: El gran problema de tus capturas */
    h1, .hero-title-main, .section-title {
        font-size: 1.8rem !important; /* Baja el tamaño para que no se corte */
        line-height: 1.2;
        word-wrap: break-word;
        text-align: center;
        padding: 0 15px;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    /* 2. El Contenedor de Servicios (Capturas 1 y 2) */
    /* Seguramente usas display: flex. Hay que obligarlo a ser columna */
    .services-grid, .grid-container, .servicios-lista { 
        display: flex !important;
        flex-direction: column !important; /* De lado a arriba-abajo */
        align-items: center;
        gap: 30px;
        padding: 20px !important;
    }

    /* Cada tarjeta de servicio ahora ocupará el 100% */
    .service-card, .card, .servicio-item {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 20px 0 !important;
    }

    /* 3. El Header y Navegación (Captura 3 y 5) */
    header {
        padding: 10px 0;
    }

    nav {
        flex-direction: column !important;
        text-align: center;
    }

    .nav-links {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 15px 0;
        flex-wrap: wrap; /* Para que si no caben, bajen */
    }

    /* 4. Sección Hero (Captura 4) */
    .hero {
        padding: 40px 20px !important;
        height: auto !important; /* Que crezca según el texto */
        min-height: 60vh;
    }

    .hero-content {
        width: 100% !important;
        padding: 0 !important;
    }

    /* 5. Los Botones (Captura 4) */
    .cta-container, .hero-buttons {
        display: flex;
        flex-direction: column !important;
        width: 100%;
        gap: 15px;
    }

    .btn-primary, .btn-secondary-hero, .btn-black {
        width: 100% !important;
        margin: 0 !important;
        text-align: center;
        padding: 15px !important;
    }
}

@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto !important;
        display: block;
        margin: 0 auto;
    }
    
    .service-image { /* Ajusta a tu clase */
        width: 100% !important;
        height: 200px !important; /* Altura fija para que no sea infinita */
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .banner-negro, .cita-banner { /* Cambia el nombre a tu clase real */
        width: 90% !important;
        height: auto !important;
        padding: 30px 20px !important;
        margin: 20px auto !important;
        display: block !important;
    }
}