body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #15151f;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

* {
    box-sizing: border-box;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NEW SECTIONS CSS */
/* Header */
header {
    background-color: #15151f;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
}
.logo span {
    color: #c5d000;
}
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #a9a9b3;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #c5d000;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.search-icon {
    color: #a9a9b3;
    cursor: pointer;
}
.btn-contact {
    background-color: #c5d000;
    color: #18181f;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-contact:hover {
    background-color: #d6df00;
    transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
    padding: 60px 0 20px 0;
    text-align: center;
}
.hero-subtitle {
    font-size: 12px;
    color: #a9a9b3;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    font-weight: 600;
}
.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 40px 0;
    letter-spacing: -0.03em;
}
.hero-title .accent {
    color: #c5d000;
}
.hero-image {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* Promo Banner */
.promo-section {
    padding: 40px 0;
}
.promo-card {
    background-color: #242431;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    background-image: linear-gradient(to top, rgba(21, 21, 31, 0.9), rgba(21, 21, 31, 0.2)), url('https://placehold.co/1100x400/242431/a9a9b3?text=Mechanic+Working');
    background-size: cover;
    background-position: center;
}
.promo-content {
    position: relative;
    z-index: 2;
}
.promo-price {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1;
}
.promo-desc {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
    text-align: center;
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0;
}
.quote-icon {
    color: #c5d000;
    font-size: 32px;
    font-weight: 900;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.review-card {
    background-color: #242431;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
}
.review-text {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #3c3c48;
}
.author-info h4 {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}
.author-info p {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: #a9a9b3;
}

/* Location Section */
.location-section {
    padding: 40px 0;
}
.location-card {
    background-color: #ffffff;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    color: #15151f;
}
.location-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
}
.location-details {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location-details h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 25px 0;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}
.contact-icon {
    color: #c5d000;
    font-size: 20px;
    margin-top: 2px;
}
.contact-text {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}
.contact-text strong {
    display: block;
    color: #15151f;
}

/* Specialties Section */
.specialties-section {
    padding: 60px 0 80px 0;
    text-align: center;
}
.specialties-title {
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 40px 0;
}
.specialties-title span {
    color: #c5d000;
    font-weight: 800;
}
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.specialty-card {
    background-color: #242431;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
}
.specialty-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.specialty-content {
    padding: 25px;
}
.specialty-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}
.specialty-content p {
    font-size: 13px;
    color: #a9a9b3;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}
.footer-col h5 {
    color: #ffffff;
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    letter-spacing: 0.05em;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col ul a {
    color: #a9a9b3;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-col ul a:hover {
    color: #c5d000;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: #a9a9b3;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* Responsive Utilities */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hero-title { font-size: 42px; }
    .reviews-grid, .specialties-grid { grid-template-columns: 1fr; }
    .location-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

.hidden {
    display: none;
}

[data-booking~='step-1'] [data-booking-zone]:not(:first-child) [data-booking-full] {
    background: rgba(255, 255, 255, 0.75);
}

[data-booking~='step-1'] [data-booking-zone]:not(:first-child) [data-booking-full] > * {
    display: block;
}


[data-booking~='step-2'] .shuttle_selector_container [data-form-field] [data-form-label] {
    display: block;
}

[data-form-field] [data-form-colors] > *:nth-child(6) {
    background: #53bf52;
}

.shuttle_fieldset_wrapper {
    position: relative;
    z-index: 1;
    max-width: calc(100% - 2px);
    background: rgba(242, 101, 34, 0.25);
    border-radius: 10px;
    box-shadow: inset 0 0 0 6px #ffda61;
    animation: blink-inner 1s ease-in-out infinite;
    padding: 10px;
    margin: 10px 0;

}

@keyframes blink-inner {
    0%, 100% {
        box-shadow: inset 0 0 0 6px rgba(242, 101, 34, 0.8);
    }
    50% {
        box-shadow: inset 0 0 0 6px rgba(242, 101, 34, 0.2);
    }
}


.shuttle_fieldset_wrapper fieldset {
    width: 100%;

}

.shuttle_fieldset_wrapper fieldset, .shuttle_fieldset_wrapper legend {
    background: none;
    padding: 0;
    margin: 0;
    border: none;
}

.services-placeholder {
    flex-wrap: wrap;
}

[data-shuttle-main-control] {
    font-weight: bold;
    font-size: 1.2rem;
}

.without_shuttle_text {
    font-size: 1.2rem;
}

[data-shuttle-in], [data-shuttle-out] {
    flex-direction: column;
}


@media (min-width: 1501px) {
    [data-shuttle-in], [data-shuttle-out] {
        flex-direction: row;
    }
}

.shuttle_texts, .shuttle_warnings {
    display: flex;
    flex-direction: column;
    gap: 10px;

}

.no_close_trips_warning, .no_shuttle_warning, .with_shuttle_warning {
    font-size: 1.2rem;
}

.shuttle_in_warnings, .shuttle_out_warnings {
    margin: 1rem;
}

.shuttle_page p, .shuttle_page li {
    font-size: 1.2rem;
}

.shuttle_page strong, .shuttle_page b {
    font-weight: bolder;
}

.shuttles_popups {
    font-size: 1.2rem;
    font-weight: bold;
}

.shuttles_popups strong, .shuttles_popups b {

    font-weight: bolder;
}

.shuttle_warning_wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 600px) {
    .shuttle_warning_wrapper {
        display: flex;
        flex-direction: row;
    }
}

.price_with_shuttles {
    display: flex;
    flex-direction: column;
}

.price_with_shuttles > div {
    padding: 0 1rem;
}

.shuttle_info_home a {
    text-decoration: underline;
    color: #f00;
}

.shuttle_info_home {
    border: 2px solid black;

    background: white;
    padding: 15px;

}

.shuttle_info_home p {
    color: #000000;
    text-align: justify;
}

.shuttle_info_home a:hover {
    color: rgb(175, 2, 2);
}

strong, b {
    font-weight: 800 !important;
}

[data-booking~='page'] [data-booking-list="date-out"] [data-booking-list-description], [data-booking~='page'] [data-booking-list="date-in"] [data-booking-list-description] {
    margin-bottom: 0.5rem;
}

[data-booking~='step-2'] [data-form-field]:not([data-form-field~='show-label']) [data-form-label], [data-form-label] {
    display: block;
    font-weight: bold;
}


.porto-cta {
    text-align: center;
    margin: 0 auto 22px;
}

.porto-cta a {
    display: inline-block;
    width: 100%;
    max-width: 430px;
    padding: 22px 20px;
    background: #9FEB1E;
    border: 3px solid #9FEB1E;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 1px;
    box-sizing: border-box;
    transition: all .2s ease;
}

.porto-cta a:hover {
    background: #8fd61b;
    border-color: #8fd61b;
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .porto-cta a {
        max-width: 100%;
        font-size: 26px;
        padding: 18px 15px;
    }
}


.main-logo > div {
    display: flex;
    align-items: center;
}

.legal-bases-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    margin-left: 25px;
    text-decoration: none;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
}

.legal-bases-link span:first-child {
    font-size: 15px;
    font-weight: bold;
    color: #9FEB1E;
    text-transform: uppercase;
}

.legal-bases-link span:last-child {
    font-size: 13px;
    color: #fff;
    text-decoration: underline;
}

/* Portátiles pequeños */
@media (max-width: 1400px) {
    .legal-bases-link {
        margin-left: 18px;
    }

    .legal-bases-link span:first-child {
        font-size: 13px;
    }

    .legal-bases-link span:last-child {
        font-size: 12px;
    }
}

/* Tablets grandes */
@media (max-width: 1200px) {
    .legal-bases-link {
        margin-left: 12px;
    }

    .legal-bases-link span:first-child {
        font-size: 12px;
    }

    .legal-bases-link span:last-child {
        font-size: 11px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .legal-bases-link {
        margin-left: 8px;
    }

    .legal-bases-link span:first-child {
        font-size: 11px;
    }

    .legal-bases-link span:last-child {
        font-size: 10px;
    }
}


.mobile-menu-legal {
    margin-top: 20px;
    padding: 0 20px 20px;
    text-align: center;
}

.legal-bases-link-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.15;
}

.legal-bases-link-mobile span:first-child {
    font-size: 16px;
    font-weight: bold;
    color: #9FEB1E;
    text-transform: uppercase;
}

.legal-bases-link-mobile span:last-child {
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
}


.footer-legal-promo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
}

.footer-legal-promo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    line-height: 1.15;
    white-space: nowrap;
}

.footer-legal-promo span:first-child {
    color: #9FEB1E;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-legal-promo span:last-child {
    color: #fff;
    font-size: 13px;
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .footer-legal-promo {
        margin: 0 15px;
    }

    .footer-legal-promo span:first-child {
        font-size: 13px;
    }

    .footer-legal-promo span:last-child {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .footer-legal-promo {
        margin: 20px 0;
    }

    .footer-legal-promo a {
        white-space: normal;
    }
}

@media screen and (min-width: 901px) {
    footer .footer-grid.bottom {
        grid-template-columns: auto auto 1fr;
        align-items: center;
    }

    .footer-links {
        justify-self: start;
    }

    .footer-legal-promo {
        justify-self: start;
        margin-left: 30px;
    }

    .footer-social {
        justify-self: end;
    }
}

body, [data-y-section~='top-bar'][data-scroll-state~='float'], [data-page-id~="home"] header [data-y-section~='top-bar'][data-scroll-state~='float'], [data-page-id~="home"] header [data-y-section~='top-bar'].solid {
    background: #000;
}

/* ==========================================
   TALLER SERVICIOS
========================================== */

section[data-y-section][data-component="taller-servicios"] {
    width: 100%;

    background: #15151f;
    color: #ffffff;
    padding: 5rem 0 50px 0;
}


[data-component="taller-servicios"] > .container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


/* ==========================================
   TARJETA CITA
========================================== */

[data-component="taller-servicios"] .taller-cita {
    width: 100%;

    display: grid;

    grid-template-columns:
                minmax(0, 1fr)
                minmax(0, 1fr)
                auto;

    align-items: end;

    gap: 35px;

    padding: 24px 30px;

    background: #242431;

    border-radius: 20px;

    margin-bottom: 25px;
}


/* ==========================================
   CAMPOS
========================================== */

[data-component="taller-servicios"] .taller-campo {
    min-width: 0;
}


[data-component="taller-servicios"] .taller-campo > label {
    display: block;

    margin-bottom: 9px;

    color: #a9a9b3;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .02em;
}


/* ==========================================
   FECHA
========================================== */

[data-component="taller-servicios"] .taller-fecha {
    width: 100%;

    display: grid;

    grid-template-columns:
                75px
                minmax(0, 1fr)
                90px;

    gap: 8px;
}


[data-component="taller-servicios"] .taller-fecha select {
    width: 100%;
    height: 45px;

    padding: 0 10px;

    border: 1px solid #3c3c48;
    border-radius: 8px;

    background: #191923;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    cursor: pointer;
}


[data-component="taller-servicios"] .taller-fecha select:focus {
    border-color: #c5d000;
}


[data-component="taller-servicios"] .taller-fecha select option {
    background: #191923;
    color: #ffffff;
}


/* ==========================================
   HORA
========================================== */

[data-component="taller-servicios"] .taller-hora {
    width: 100%;

    display: grid;

    grid-template-columns:
                minmax(0, 1fr)
                18px
                minmax(0, 1fr);

    align-items: center;

    gap: 5px;
}


[data-component="taller-servicios"] .taller-hora select {
    width: 100%;
    height: 45px;

    padding: 0 10px;

    border: 1px solid #3c3c48;
    border-radius: 8px;

    background: #191923;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    cursor: pointer;
}


[data-component="taller-servicios"] .taller-hora select:focus {
    border-color: #c5d000;
}


[data-component="taller-servicios"] .taller-hora select option {
    background: #191923;
    color: #ffffff;
}


[data-component="taller-servicios"] .taller-hora-separador {
    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}


/* ==========================================
   BOTÓN
========================================== */

[data-component="taller-servicios"] .taller-boton {
    height: 45px;

    padding: 0 28px;

    border: 0;
    border-radius: 8px;

    background: #c5d000;
    color: #18181f;

    font-family: inherit;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    cursor: pointer;

    transition: background .2s ease,
    transform .2s ease;
}


[data-component="taller-servicios"] .taller-boton:hover {
    background: #d6df00;

    transform: translateY(-1px);
}


/* ==========================================
   TARJETA SERVICIOS
========================================== */

[data-component="taller-servicios"] .taller-servicios-card {
    width: 100%;

    padding: 38px 40px;

    background: #242431;

    border-radius: 25px;
}


/* ==========================================
   LAYOUT SERVICIOS
========================================== */

[data-component="taller-servicios"] .taller-servicios-layout {
    width: 100%;

    display: grid;

    grid-template-columns:
                240px
                minmax(0, 1fr);

    gap: 45px;

    align-items: center;
}


/* ==========================================
   TÍTULO
========================================== */

[data-component="taller-servicios"] .taller-servicios-titulo {
    color: #ffffff;

    font-size: 34px;
    font-weight: 700;

    line-height: .98;

    letter-spacing: -0.03em;
}


/* ==========================================
   GRID SERVICIOS
========================================== */

[data-component="taller-servicios"] .taller-servicios-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
                repeat(3, minmax(0, 1fr));

    column-gap: 25px;
    row-gap: 16px;
}


/* ==========================================
   SERVICIO
========================================== */

[data-component="taller-servicios"] .taller-servicio {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 11px;

    cursor: pointer;
}


/* ==========================================
   CHECKBOX
========================================== */

[data-component="taller-servicios"] .taller-servicio input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;

    pointer-events: none;
}


/* ==========================================
   ICONO
========================================== */

[data-component="taller-servicios"] .taller-servicio-icon {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #c5d000;

    color: #17171e;

    font-size: 24px;

    transition: transform .2s ease,
    background .2s ease;
}


/* ==========================================
   NOMBRE
========================================== */

[data-component="taller-servicios"] .taller-servicio-nombre {
    color: #ffffff;

    font-size: 14px;

    line-height: 1.2;
}


/* ==========================================
   HOVER
========================================== */

[data-component="taller-servicios"] .taller-servicio:hover
.taller-servicio-icon {
    transform: translateY(-2px);
}


/* ==========================================
   SELECCIONADO
========================================== */

[data-component="taller-servicios"] .taller-servicio input:checked
+ .taller-servicio-icon {
    background: #ffffff;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 850px) {

    [data-component="taller-servicios"] .taller-cita {
        grid-template-columns:
                    1fr
                    1fr;
    }


    [data-component="taller-servicios"] .taller-boton {
        grid-column: 1 / -1;

        width: 100%;
    }


    [data-component="taller-servicios"] .taller-servicios-layout {
        grid-template-columns:
                    190px
                    minmax(0, 1fr);

        gap: 30px;
    }


    [data-component="taller-servicios"] .taller-servicios-grid {
        grid-template-columns:
                    repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================
   MÓVIL
========================================== */

@media (max-width: 600px) {

    [data-component="taller-servicios"] {
        padding: 30px 12px;
    }


    [data-component="taller-servicios"] .taller-cita {
        grid-template-columns: 1fr;

        gap: 18px;

        padding: 22px 20px;
    }


    [data-component="taller-servicios"] .taller-boton {
        grid-column: auto;

        width: 100%;
    }


    [data-component="taller-servicios"] .taller-fecha {
        grid-template-columns:
                    70px
                    minmax(0, 1fr)
                    80px;
    }


    [data-component="taller-servicios"] .taller-servicios-card {
        padding: 28px 20px;
    }


    [data-component="taller-servicios"] .taller-servicios-layout {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    [data-component="taller-servicios"] .taller-servicios-titulo {
        font-size: 30px;
    }


    [data-component="taller-servicios"] .taller-servicios-grid {
        grid-template-columns: 1fr;
    }

}

#booking-date-error {
    margin-top: 10px;
    padding: 10px 12px;
    color: #b42318;
    background: #fef3f2;
    border: 1px solid #fecdca;
    border-radius: 4px;
}


/* ==========================================
   TALLER DATOS
========================================== */

section[data-y-section][data-component="taller-datos"] {
    width: 100%;

    background: #15151f;
    color: #ffffff;


    padding: 5rem 0 50px 0;
}


[data-component="taller-datos"] > .container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


/* ==========================================
   RESUMEN FECHA
========================================== */

[data-component="taller-datos"] .taller-fecha-resumen {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 25px;

    margin-bottom: 20px;

    background: #242431;

    border-radius: 16px;
}


[data-component="taller-datos"] .taller-fecha-resumen-info {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


[data-component="taller-datos"] .taller-fecha-resumen-label {
    color: #a9a9b3;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .02em;
}


[data-component="taller-datos"] .taller-fecha-resumen-valor {
    color: #ffffff;

    font-size: 18px;
    font-weight: 700;
}


[data-component="taller-datos"] .taller-fecha-resumen-cambiar {
    color: #c5d000;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;
}


[data-component="taller-datos"] .taller-fecha-resumen-cambiar:hover {
    text-decoration: underline;
}


/* ==========================================
   TARJETA
========================================== */

[data-component="taller-datos"] .taller-datos-card {
    width: 100%;

    padding: 35px 40px;

    background: #242431;

    border-radius: 25px;
}


/* ==========================================
   GRID
========================================== */

[data-component="taller-datos"] .taller-datos-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
                repeat(2, minmax(0, 1fr));

    gap: 22px 25px;
}


/* ==========================================
   CAMPO
========================================== */

[data-component="taller-datos"] .taller-datos-campo {
    min-width: 0;
}


[data-component="taller-datos"] .taller-datos-campo-full {
    grid-column: 1 / -1;
}


[data-component="taller-datos"] .taller-datos-campo label {
    display: block;

    margin-bottom: 9px;

    color: #a9a9b3;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .02em;
}


/* ==========================================
   INPUTS
========================================== */

[data-component="taller-datos"] .taller-datos-campo input,
[data-component="taller-datos"] .taller-datos-campo select,
[data-component="taller-datos"] .taller-datos-campo textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #3c3c48;
    border-radius: 8px;

    background: #191923;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;

    outline: none;
}


[data-component="taller-datos"] .taller-datos-campo input,
[data-component="taller-datos"] .taller-datos-campo select {
    height: 45px;

    padding: 0 12px;
}


[data-component="taller-datos"] .taller-datos-campo textarea {
    min-height: 100px;

    padding: 12px;

    resize: vertical;
}


[data-component="taller-datos"] .taller-datos-campo input:focus,
[data-component="taller-datos"] .taller-datos-campo select:focus,
[data-component="taller-datos"] .taller-datos-campo textarea:focus {
    border-color: #c5d000;
}


[data-component="taller-datos"] .taller-datos-campo select option {
    background: #191923;
    color: #ffffff;
}


/* ==========================================
   BOTÓN
========================================== */

[data-component="taller-datos"] .taller-datos-submit {
    display: flex;

    justify-content: flex-end;

    margin-top: 30px;
}


[data-component="taller-datos"] .taller-boton {
    height: 45px;

    padding: 0 28px;

    border: 0;
    border-radius: 8px;

    background: #c5d000;
    color: #18181f;

    font-family: inherit;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    cursor: pointer;

    transition: background .2s ease,
    transform .2s ease;
}


[data-component="taller-datos"] .taller-boton:hover {
    background: #d6df00;

    transform: translateY(-1px);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 850px) {

    [data-component="taller-datos"] {
        padding-left: 20px;
        padding-right: 20px;
    }

}


/* ==========================================
   MÓVIL
========================================== */

@media (max-width: 600px) {

    [data-component="taller-datos"] {
        padding: 30px 12px;
    }


    [data-component="taller-datos"] .taller-fecha-resumen {
        padding: 18px 20px;
    }


    [data-component="taller-datos"] .taller-datos-card {
        padding: 28px 20px;
    }


    [data-component="taller-datos"] .taller-datos-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    [data-component="taller-datos"] .taller-datos-campo-full {
        grid-column: auto;
    }


    [data-component="taller-datos"] .taller-datos-submit {
        margin-top: 25px;
    }


    [data-component="taller-datos"] .taller-boton {
        width: 100%;
    }

}

[data-page-id] [data-y-section~='title'], header [data-y-section~='top-bar'] {
    background: #15151f;
}

section[data-y-section][data-component="taller-reserva-resultado"] {
    width: 100%;
    padding: 5rem 20px 50px 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #15151f;
    color: #ffffff;
}

[data-component="taller-reserva-resultado"] > .container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

[data-component="taller-reserva-resultado"] .taller-resultado-card {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    box-sizing: border-box;
    background: #242431;
    border-radius: 25px;
    text-align: center;
}
[data-component="taller-reserva-resultado"] .taller-resumen {
    width: 100%;
    max-width: 620px;
    margin: 35px auto 0 auto;
    text-align: left;
}

[data-component="taller-reserva-resultado"] .taller-resumen h2 {
    margin: 0 0 20px 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

[data-component="taller-reserva-resultado"] .taller-resumen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 30px;
}

[data-component="taller-reserva-resultado"] .taller-resumen-campo {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

[data-component="taller-reserva-resultado"] .taller-resumen-campo strong {
    color: #ffffff;
    font-weight: 600;
}

[data-component="taller-reserva-resultado"] .taller-resumen-campo-full {
    grid-column: 1 / -1;
}
[data-component="taller-reserva-resultado"] .taller-resultado-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #c5d000;
    color: #18181f;
    font-size: 40px;
    font-weight: 700;
}

[data-component="taller-reserva-resultado"] h1 {
    margin: 0;
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

[data-component="taller-reserva-resultado"] p {
    margin: 20px 0 0 0;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 600px) {
    section[data-y-section][data-component="taller-reserva-resultado"] {
        min-height: 600px;
        padding: 30px 12px;
    }

    [data-component="taller-reserva-resultado"] .taller-resultado-card {
        padding: 45px 20px;
    }

    [data-component="taller-reserva-resultado"] h1 {
        font-size: 28px;
    }
}
main[data-page-content] ,body[data-page-id='booking'] main[data-page-content]{
    background: #15151f;
    min-height: 690px;
}
[data-page-id] [data-y-section~='title'] {
    padding:0;
}

footer{
    background: linear-gradient(206deg, #222 0%, #111 58.5%, #000 100%);
}
@media (max-width: 600px) {

    [data-component="taller-reserva-resultado"] .taller-resumen {
        max-width: 100%;
    }

    [data-component="taller-reserva-resultado"] .taller-resumen-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    [data-component="taller-reserva-resultado"] .taller-resumen-campo-full {
        grid-column: auto;
    }

}
[data-page-content] h3,[data-page-content] h2,[data-page-content] h1,[data-page-content] p,[data-page-content] div{
    color:#fff;
}

/* =========================================
   FORMULARIO CONTACTO - ESTILO PARKING
   ========================================= */

.dual-bg {
    width: 100%;
    min-height: 100vh;
    padding: 58px 20px 80px;
    background: #13131d;
    box-sizing: border-box;
}

.dual-bg > div {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

/* CONTENEDOR PRINCIPAL */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 25px;
    align-items: stretch;
}

/* =========================================
   FORMULARIO
   ========================================= */

.contact-grid form {
    background: #242431;
    border-radius: 24px;
    padding: 38px 40px 34px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.02);
}

/* ERROR GENERAL */

[data-info="error generic-error"] {
    display: none;
    margin-bottom: 20px;
    padding: 13px 16px;
    border-radius: 8px;
    background: #302027;
    color: #ff8f8f;
    font-size: 13px;
}

/* GRID DEL FORMULARIO */

.contact-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 25px;
    row-gap: 25px;
}

/* Cada campo */

.contact-row > div {
    min-width: 0;
}

/* Parking ocupa toda la fila */
.contact-row > div:nth-child(3) {
    grid-column: 2;
}

/* Asunto */
.contact-row > div:nth-child(4) {
    grid-column: 1;
}

/* Consulta */
.contact-row > div:nth-child(5) {
    grid-column: 1 / -1;
}

/* Pregunta de seguridad */
.contact-row > div:nth-child(6) {
    grid-column: 1 / -1;
}

/* =========================================
   ETIQUETAS
   ========================================= */

.contact-grid label {
    display: block;
    width: 100%;
}

.contact-grid [data-form-label] {
    display: block;
    margin-bottom: 10px;
    color: #aeb0c4;
    font-size: 12px;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em;
}

/* =========================================
   CAMPOS
   ========================================= */

.contact-grid input,
.contact-grid select,
.contact-grid textarea {
    width: 100%;
    box-sizing: border-box;

    background: #181821;
    border: 1px solid #3a3a48;
    border-radius: 7px;

    color: #ffffff;
    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
            border-color .2s ease,
            box-shadow .2s ease,
            background .2s ease;
}

.contact-grid input,
.contact-grid select {
    height: 44px;
    padding: 0 13px;
}

.contact-grid textarea {
    min-height: 100px;
    padding: 13px;
    resize: vertical;
}

/* Placeholder */

.contact-grid input::placeholder,
.contact-grid textarea::placeholder {
    color: #686979;
}

/* Select */

.contact-grid select {
    appearance: auto;
    cursor: pointer;
}

/* Focus */

.contact-grid input:focus,
.contact-grid select:focus,
.contact-grid textarea:focus {
    border-color: #696a7a;
    background: #1b1b25;
    box-shadow: 0 0 0 2px rgba(255,255,255,.025);
}

/* =========================================
   MENSAJES DE ERROR
   ========================================= */

[data-form-messages] {
    margin-top: 6px;
}

[data-form-messages] .error {
    display: none;
    color: #ff7777;
    font-size: 12px;
}

/* =========================================
   BOTÓN
   ========================================= */

[data-form-buttons] {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

[data-form-buttons] button {
    min-width: 117px;
    height: 45px;
    padding: 0 25px;

    border: 0;
    border-radius: 7px;

    background: #d4df00;
    color: #111111;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
            background .2s ease,
            transform .2s ease,
            box-shadow .2s ease;
}

[data-form-buttons] button:hover {
    background: #e0ea00;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(212,223,0,.15);
}

[data-form-buttons] button:active {
    transform: translateY(0);
}

/* =========================================
   INFORMACIÓN DE CONTACTO
   ========================================= */

.contact-info {
    background: #242431;
    border-radius: 24px;
    padding: 38px 32px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,.02);
}

.contact-info h1 {
    margin: 0 0 30px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
}

.contact-info p {
    margin: 0 0 25px;
    color: #aeb0c4;
    font-size: 14px;
    line-height: 1.7;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}

.contact-info a:hover {
    color: #d4df00;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1000px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 2;
    }
}

@media (max-width: 700px) {

    .dual-bg {
        padding: 30px 12px 50px;
    }

    .contact-grid form,
    .contact-info {
        padding: 28px 22px;
        border-radius: 18px;
    }

    .contact-row {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .contact-row > div:nth-child(3),
    .contact-row > div:nth-child(4),
    .contact-row > div:nth-child(5),
    .contact-row > div:nth-child(6) {
        grid-column: 1;
    }

    [data-form-buttons] {
        justify-content: stretch;
    }

    [data-form-buttons] button {
        width: 100%;
    }

    .contact-info h1 {
        font-size: 24px;
    }
}
/* ==========================================
   CONTACTO - ESTILO PARKING
   TODO AISLADO DENTRO DE .dual-bg
========================================== */

.dual-bg {
    width: 100%;
    background: #13131d;
    color: #ffffff;
    padding: 60px 20px 70px;
    box-sizing: border-box;
}

.dual-bg > div {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
}


/* ==========================================
   GRID PRINCIPAL
========================================== */

.dual-bg .contact-grid {
    width: 100%;
    display: grid;

    grid-template-columns:
                minmax(0, 1fr)
                320px;

    gap: 25px;
    align-items: stretch;
}


/* ==========================================
   TARJETA FORMULARIO
========================================== */

.dual-bg .contact-grid form {
    width: 100%;
    max-width: 100%;

    padding: 38px 40px;

    box-sizing: border-box;

    background: #242431;
    border-radius: 25px;
}


/* ==========================================
   GRID CAMPOS
========================================== */

.dual-bg .contact-row {
    width: 100%;
    display: grid;

    grid-template-columns:
                minmax(0, 1fr)
                minmax(0, 1fr);

    column-gap: 25px;
    row-gap: 22px;
}

.dual-bg .contact-row > div {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
}


/* Nombre */

.dual-bg .contact-row > div:nth-child(1) {
    grid-column: 1;
}


/* Email */

.dual-bg .contact-row > div:nth-child(2) {
    grid-column: 2;
}


/* Parking */

.dual-bg .contact-row > div:nth-child(3) {
    grid-column: 1;
}


/* Asunto */

.dual-bg .contact-row > div:nth-child(4) {
    grid-column: 2;
}


/* Consulta */

.dual-bg .contact-row > div:nth-child(5) {
    grid-column: 1 / -1;
}


/* Seguridad */

.dual-bg .contact-row > div:nth-child(6) {
    grid-column: 1 / -1;
}


/* ==========================================
   LABELS
========================================== */

.dual-bg .contact-grid label {
    display: block;
    width: 100%;
    min-width: 0;
}

.dual-bg .contact-grid [data-form-label] {
    display: block;

    margin-bottom: 9px;

    color: #a9a9b3;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.2;

    text-transform: uppercase;
    letter-spacing: .02em;
}


/* ==========================================
   INPUTS
========================================== */

.dual-bg .contact-grid input,
.dual-bg .contact-grid select,
.dual-bg .contact-grid textarea {
    display: block;

    width: 100%;
    max-width: 100%;

    box-sizing: border-box;

    border: 1px solid #3c3c48;
    border-radius: 8px;

    background: #191923;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
            border-color .2s ease,
            background .2s ease;
}


.dual-bg .contact-grid input,
.dual-bg .contact-grid select {
    height: 45px;
    padding: 0 12px;
}


.dual-bg .contact-grid textarea {
    min-height: 105px;
    padding: 12px;
    resize: vertical;
}


.dual-bg .contact-grid input::placeholder,
.dual-bg .contact-grid textarea::placeholder {
    color: #686979;
}


.dual-bg .contact-grid input:focus,
.dual-bg .contact-grid select:focus,
.dual-bg .contact-grid textarea:focus {
    border-color: #c5d000;
    background: #191923;
}


.dual-bg .contact-grid select option {
    background: #191923;
    color: #ffffff;
}


/* ==========================================
   ERRORES
========================================== */

.dual-bg [data-form-messages] {
    margin-top: 6px;
}


.dual-bg [data-form-messages] .error {
    display: none;

    color: #ff7777;

    font-size: 12px;
}


.dual-bg [data-info="error generic-error"] {
    display: none;

    margin-bottom: 20px;

    padding: 12px 14px;

    border-radius: 8px;

    background: #302027;
    color: #ff8f8f;

    font-size: 13px;
}


/* ==========================================
   BOTÓN
========================================== */

.dual-bg [data-form-buttons] {
    display: flex;

    justify-content: flex-end;

    margin-top: 28px;
}


.dual-bg [data-form-buttons] button {
    height: 45px;

    min-width: 117px;

    padding: 0 28px;

    border: 0;
    border-radius: 8px;

    background: #c5d000;
    color: #18181f;

    font-family: inherit;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
            background .2s ease,
            transform .2s ease;
}


.dual-bg [data-form-buttons] button:hover {
    background: #d6df00;

    transform: translateY(-1px);
}


/* ==========================================
   INFORMACIÓN CONTACTO
========================================== */

.dual-bg .contact-info {
    width: 100%;
    max-width: 100%;

    padding: 38px 30px;

    box-sizing: border-box;

    background: #242431;
    border-radius: 25px;
}


.dual-bg .contact-info h1 {
    margin: 0 0 30px;

    color: #ffffff;

    font-size: 28px;
    font-weight: 700;

    line-height: 1.15;
}


.dual-bg .contact-info p {
    margin: 0 0 25px;

    color: #a9a9b3;

    font-size: 14px;

    line-height: 1.7;
}


.dual-bg .contact-info a {
    color: #ffffff;

    font-weight: 600;

    text-decoration: none;

    transition: color .2s ease;
}


.dual-bg .contact-info a:hover {
    color: #c5d000;
}


/* ==========================================
   TABLET ANCHA
   901px - 1100px
========================================== */

@media (max-width: 1100px) {

    .dual-bg {
        padding: 45px 20px 60px;
    }

    .dual-bg .contact-grid {
        grid-template-columns:
                    minmax(0, 1fr)
                    280px;

        gap: 20px;
    }

    .dual-bg .contact-grid form {
        padding: 32px 28px;
    }

    .dual-bg .contact-info {
        padding: 32px 25px;
    }

    .dual-bg .contact-info h1 {
        font-size: 25px;
    }
}


/* ==========================================
   TABLET
   701px - 900px

   Aquí dejamos de intentar meter
   formulario + información lado a lado.
========================================== */

@media (max-width: 900px) {

    .dual-bg {
        padding: 40px 20px 55px;
    }

    .dual-bg .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dual-bg .contact-grid form {
        width: 100%;
        padding: 32px 28px;
    }

    .dual-bg .contact-info {
        width: 100%;
        padding: 32px 28px;
    }

    .dual-bg .contact-info h1 {
        font-size: 25px;
    }
}


/* ==========================================
   MÓVIL
   700px ↓
========================================== */

@media (max-width: 700px) {

    .dual-bg {
        width: 100%;
        min-height: 0;

        padding: 28px 12px 42px;

        box-sizing: border-box;
    }

    .dual-bg > div {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }


    /* --------------------------------------
       GRID PRINCIPAL
    -------------------------------------- */

    .dual-bg .contact-grid {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 16px;
    }


    /* --------------------------------------
       FORMULARIO
    -------------------------------------- */

    .dual-bg .contact-grid form {
        width: 100%;
        max-width: 100%;

        padding: 24px 18px;

        border-radius: 18px;
    }


    /* --------------------------------------
       CAMPOS
    -------------------------------------- */

    .dual-bg .contact-row {
        width: 100%;

        display: grid;

        grid-template-columns: minmax(0, 1fr);

        column-gap: 0;
        row-gap: 17px;
    }


    .dual-bg .contact-row > div {
        width: 100%;
        min-width: 0;

        grid-column: 1 / -1 !important;
    }


    /* --------------------------------------
       LABELS
    -------------------------------------- */

    .dual-bg .contact-grid [data-form-label] {
        margin-bottom: 8px;
        font-size: 11px;
    }


    /* --------------------------------------
       INPUTS
    -------------------------------------- */

    .dual-bg .contact-grid input,
    .dual-bg .contact-grid select {
        width: 100%;
        max-width: 100%;

        height: 46px;

        padding-left: 11px;
        padding-right: 11px;

        font-size: 14px;
    }


    .dual-bg .contact-grid textarea {
        width: 100%;
        max-width: 100%;

        min-height: 115px;

        font-size: 14px;
    }


    /* --------------------------------------
       BOTÓN
    -------------------------------------- */

    .dual-bg [data-form-buttons] {
        width: 100%;

        margin-top: 22px;

        display: block;
    }


    .dual-bg [data-form-buttons] button {
        display: block;

        width: 100%;
        min-width: 0;

        height: 47px;

        padding: 0 20px;
    }


    /* --------------------------------------
       INFORMACIÓN
    -------------------------------------- */

    .dual-bg .contact-info {
        width: 100%;
        max-width: 100%;

        padding: 24px 18px;

        border-radius: 18px;
    }


    .dual-bg .contact-info h1 {
        margin-bottom: 20px;

        font-size: 23px;
        line-height: 1.2;
    }


    .dual-bg .contact-info p {
        margin-bottom: 18px;

        font-size: 14px;
        line-height: 1.6;
    }
}


/* ==========================================
   MÓVIL PEQUEÑO
   400px ↓
========================================== */

@media (max-width: 400px) {

    .dual-bg {
        padding: 22px 10px 35px;
    }


    .dual-bg .contact-grid {
        gap: 14px;
    }


    .dual-bg .contact-grid form {
        padding: 22px 15px;
        border-radius: 16px;
    }


    .dual-bg .contact-row {
        row-gap: 16px;
    }


    .dual-bg .contact-info {
        padding: 22px 16px;
        border-radius: 16px;
    }


    .dual-bg .contact-info h1 {
        font-size: 22px;
    }


    .dual-bg .contact-grid input,
    .dual-bg .contact-grid select {
        height: 45px;

        padding-left: 10px;
        padding-right: 10px;
    }
}


/* ==========================================
   SEGURIDAD EXTRA CONTRA DESBORDAMIENTOS

   También queda completamente aislado
   dentro de .dual-bg
========================================== */

.dual-bg *,
.dual-bg *::before,
.dual-bg *::after {
    box-sizing: border-box;
}

.dual-bg img,
.dual-bg svg {
    max-width: 100%;
}
/* ==========================================
   FORMULARIO TALLER
   AISLADO DEL RESTO DE LA WEB
========================================== */

.taller-datos-form {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}


/* ==========================================
   RESUMEN FECHA
========================================== */

.taller-datos-form .taller-fecha-resumen {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 20px;
    padding: 20px 24px;

    box-sizing: border-box;

    background: #242431;
    border-radius: 18px;
}

.taller-datos-form .taller-fecha-resumen-info {
    min-width: 0;
}

.taller-datos-form .taller-fecha-resumen-label {
    display: block;

    margin-bottom: 6px;

    color: #a9a9b3;

    font-size: 12px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: .02em;
}

.taller-datos-form .taller-fecha-resumen-valor {
    display: block;

    color: #ffffff;

    font-size: 15px;
    line-height: 1.4;
}

.taller-datos-form .taller-fecha-resumen-cambiar {
    flex: 0 0 auto;

    color: #c5d000;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;
    white-space: nowrap;
}

.taller-datos-form .taller-fecha-resumen-cambiar:hover {
    color: #d6df00;
}


/* ==========================================
   TARJETA DATOS
========================================== */

.taller-datos-form .taller-datos-card {
    width: 100%;
    max-width: 100%;

    padding: 35px 40px;

    box-sizing: border-box;

    background: #242431;
    border-radius: 25px;
}


/* ==========================================
   GRID CAMPOS
========================================== */

.taller-datos-form .taller-datos-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
                minmax(0, 1fr)
                minmax(0, 1fr);

    gap: 22px 25px;
}


/* ==========================================
   CAMPO
========================================== */

.taller-datos-form .taller-datos-campo {
    width: 100%;
    min-width: 0;

    box-sizing: border-box;
}

.taller-datos-form .taller-datos-campo-full {
    grid-column: 1 / -1;
}


/* ==========================================
   LABELS
========================================== */

.taller-datos-form .taller-datos-campo label {
    display: block;

    width: 100%;
    margin-bottom: 8px;

    box-sizing: border-box;

    color: #a9a9b3;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.2;

    text-transform: uppercase;
    letter-spacing: .02em;
}


/* ==========================================
   INPUTS / SELECT / TEXTAREA
========================================== */

.taller-datos-form .taller-datos-campo input,
.taller-datos-form .taller-datos-campo select,
.taller-datos-form .taller-datos-campo textarea {
    display: block;

    width: 100%;
    max-width: 100%;

    margin: 0;

    box-sizing: border-box;

    border: 1px solid #3c3c48;
    border-radius: 8px;

    background: #191923;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
            border-color .2s ease,
            background .2s ease;
}


/* Inputs y select */

.taller-datos-form .taller-datos-campo input,
.taller-datos-form .taller-datos-campo select {
    height: 45px;

    padding: 0 12px;
}


/* Textarea */

.taller-datos-form .taller-datos-campo textarea {
    min-height: 105px;

    padding: 12px;

    resize: vertical;
}


/* Focus */

.taller-datos-form .taller-datos-campo input:focus,
.taller-datos-form .taller-datos-campo select:focus,
.taller-datos-form .taller-datos-campo textarea:focus {
    border-color: #c5d000;
    background: #191923;
}


/* Select */

.taller-datos-form .taller-datos-campo select option {
    background: #191923;
    color: #ffffff;
}


/* ==========================================
   BOTÓN
========================================== */

.taller-datos-form .taller-datos-submit {
    width: 100%;

    display: flex;
    justify-content: flex-end;

    margin-top: 28px;
}

.taller-datos-form .taller-boton {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 120px;
    height: 45px;

    padding: 0 28px;

    box-sizing: border-box;

    border: 0;
    border-radius: 8px;

    background: #c5d000;
    color: #18181f;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition:
            background .2s ease,
            transform .2s ease;
}

.taller-datos-form .taller-boton:hover {
    background: #d6df00;
    transform: translateY(-1px);
}


/* ==========================================
   TABLET
   900px ↓
========================================== */

@media (max-width: 900px) {

    .taller-datos-form .taller-datos-card {
        padding: 30px;
    }

    .taller-datos-form .taller-datos-grid {
        gap: 20px;
    }
}


/* ==========================================
   TABLET PEQUEÑA
   700px ↓
========================================== */

@media (max-width: 700px) {

    .taller-datos-form .taller-fecha-resumen {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;

        padding: 18px 20px;
    }

    .taller-datos-form .taller-fecha-resumen-cambiar {
        align-self: flex-start;
    }


    .taller-datos-form .taller-datos-card {
        padding: 25px 20px;
        border-radius: 18px;
    }


    .taller-datos-form .taller-datos-grid {
        grid-template-columns: minmax(0, 1fr);

        gap: 18px;
    }


    .taller-datos-form .taller-datos-campo {
        grid-column: 1 / -1;
    }


    .taller-datos-form .taller-datos-campo input,
    .taller-datos-form .taller-datos-campo select {
        height: 46px;
    }


    .taller-datos-form .taller-datos-campo textarea {
        min-height: 115px;
    }


    .taller-datos-form .taller-datos-submit {
        display: block;

        margin-top: 22px;
    }


    .taller-datos-form .taller-boton {
        width: 100%;
        height: 47px;
    }
}


/* ==========================================
   MÓVIL PEQUEÑO
   400px ↓
========================================== */

@media (max-width: 400px) {

    .taller-datos-form .taller-fecha-resumen {
        padding: 17px;
        border-radius: 16px;
    }

    .taller-datos-form .taller-fecha-resumen-valor {
        font-size: 14px;
    }

    .taller-datos-form .taller-datos-card {
        padding: 22px 16px;
        border-radius: 16px;
    }

    .taller-datos-form .taller-datos-grid {
        gap: 16px;
    }

    .taller-datos-form .taller-datos-campo input,
    .taller-datos-form .taller-datos-campo select {
        height: 45px;
        padding-left: 11px;
        padding-right: 11px;
    }
}
/* ==========================================
   CITA + SERVICIOS
   AISLADO DEL RESTO DE LA WEB
========================================== */

.taller-cita,
.taller-servicios-card,
.taller-campo,
.taller-fecha,
.taller-hora,
.taller-servicios-layout,
.taller-servicios-grid,
.taller-servicio {
    box-sizing: border-box;
}


/* ==========================================
   CONTENEDOR CITA
========================================== */

.taller-cita {
    width: 100%;
    max-width: 100%;

    display: flex;
    align-items: flex-end;
    gap: 25px;

    box-sizing: border-box;
}


/* ==========================================
   CAMPOS
========================================== */

.taller-campo {
    min-width: 0;
    flex: 1 1 0;
}

.taller-campo label {
    display: block;

    margin-bottom: 9px;

    color: #a9a9b3;

    font-size: 12px;
    font-weight: 600;

    line-height: 1.2;

    text-transform: uppercase;
    letter-spacing: .02em;
}


/* ==========================================
   FECHA
========================================== */

.taller-fecha {
    width: 100%;

    display: grid;

    grid-template-columns:
                minmax(0, .7fr)
                minmax(0, 1.5fr)
                minmax(0, .9fr);

    gap: 10px;
}


/* ==========================================
   HORA
========================================== */

.taller-hora {
    width: 100%;

    display: grid;

    grid-template-columns:
                minmax(0, 1fr)
                auto
                minmax(0, 1fr);

    align-items: center;

    gap: 8px;
}

.taller-hora-separador {
    color: #a9a9b3;

    font-size: 15px;
    font-weight: 600;

    line-height: 1;
}


/* ==========================================
   SELECTS
========================================== */

.taller-cita select {
    display: block;

    width: 100%;
    min-width: 0;
    max-width: 100%;

    height: 45px;

    padding: 0 11px;

    box-sizing: border-box;

    border: 1px solid #3c3c48;
    border-radius: 8px;

    background: #191923;
    color: #ffffff;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    cursor: pointer;

    transition:
            border-color .2s ease,
            background .2s ease;
}

.taller-cita select:focus {
    border-color: #c5d000;
    background: #191923;
}

.taller-cita select option {
    background: #191923;
    color: #ffffff;
}


/* ==========================================
   BOTÓN CITA
========================================== */

.taller-cita > .taller-boton {
    flex: 0 0 auto;

    height: 45px;
    min-width: 135px;

    padding: 0 25px;

    box-sizing: border-box;

    border: 0;
    border-radius: 8px;

    background: #c5d000;
    color: #18181f;

    font-family: inherit;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;

    transition:
            background .2s ease,
            transform .2s ease;
}

.taller-cita > .taller-boton:hover {
    background: #d6df00;
    transform: translateY(-1px);
}


/* ==========================================
   ERROR
========================================== */

#booking-date-error {
    width: 100%;
    margin-top: 10px;

    box-sizing: border-box;

    color: #ff7777;

    font-size: 12px;
}


/* ==========================================
   TARJETA SERVICIOS
========================================== */

.taller-servicios-card {
    width: 100%;
    max-width: 100%;

    margin-top: 25px;

    padding: 30px 35px;

    background: #242431;
    border-radius: 25px;
}


/* ==========================================
   LAYOUT SERVICIOS
========================================== */

.taller-servicios-layout {
    width: 100%;

    display: grid;

    grid-template-columns: 170px minmax(0, 1fr);

    gap: 30px;

    align-items: center;
}


/* ==========================================
   TÍTULO SERVICIOS
========================================== */

.taller-servicios-titulo {
    color: #ffffff;

    font-size: 21px;
    font-weight: 700;

    line-height: 1.2;
}


/* ==========================================
   GRID SERVICIOS
========================================== */

.taller-servicios-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
                repeat(5, minmax(0, 1fr));

    gap: 12px;
}


/* ==========================================
   SERVICIO
========================================== */

.taller-servicio {
    min-width: 0;

    min-height: 82px;

    padding: 12px 8px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;

    box-sizing: border-box;

    border: 1px solid #3c3c48;
    border-radius: 10px;

    background: #191923;

    text-align: center;

    transition:
            border-color .2s ease,
            background .2s ease,
            transform .2s ease;
}

.taller-servicio:hover {
    border-color: #c5d000;
    background: #20202b;

    transform: translateY(-2px);
}


/* ==========================================
   ICONOS
========================================== */

.taller-servicio-icon {
    display: block;

    color: #c5d000;

    font-size: 22px;
    line-height: 1;
}


/* ==========================================
   NOMBRE
========================================== */

.taller-servicio-nombre {
    display: block;

    max-width: 100%;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.2;

    overflow-wrap: break-word;
}


/* ==========================================
   TABLET
   900px ↓
========================================== */

@media (max-width: 900px) {

    .taller-cita {
        gap: 18px;
    }

    .taller-fecha {
        gap: 7px;
    }

    .taller-hora {
        gap: 5px;
    }

    .taller-cita select {
        padding-left: 9px;
        padding-right: 9px;
    }

    .taller-cita > .taller-boton {
        min-width: 125px;
        padding-left: 18px;
        padding-right: 18px;
    }


    /* Servicios */

    .taller-servicios-card {
        padding: 28px;
    }

    .taller-servicios-layout {
        grid-template-columns: 145px minmax(0, 1fr);
        gap: 22px;
    }

    .taller-servicios-grid {
        grid-template-columns:
                    repeat(4, minmax(0, 1fr));
    }
}


/* ==========================================
   TABLET PEQUEÑA
   700px ↓
========================================== */

@media (max-width: 700px) {

    /* --------------------------------------
       CITA
    -------------------------------------- */

    .taller-cita {
        width: 100%;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 18px;
    }


    .taller-campo {
        width: 100%;
        flex: none;
    }


    /* --------------------------------------
       FECHA
    -------------------------------------- */

    .taller-fecha {
        width: 100%;

        grid-template-columns:
                    minmax(0, .7fr)
                    minmax(0, 1.5fr)
                    minmax(0, .9fr);

        gap: 8px;
    }


    /* --------------------------------------
       HORA
    -------------------------------------- */

    .taller-hora {
        width: 100%;

        grid-template-columns:
                    minmax(0, 1fr)
                    auto
                    minmax(0, 1fr);

        gap: 7px;
    }


    /* --------------------------------------
       SELECTS
    -------------------------------------- */

    .taller-cita select {
        width: 100%;

        height: 46px;

        padding-left: 10px;
        padding-right: 10px;

        font-size: 14px;
    }


    /* --------------------------------------
       BOTÓN
    -------------------------------------- */

    .taller-cita > .taller-boton {
        width: 100%;

        min-width: 0;

        height: 47px;

        margin-top: 2px;
    }


    /* --------------------------------------
       SERVICIOS
    -------------------------------------- */

    .taller-servicios-card {
        margin-top: 18px;

        padding: 24px 18px;

        border-radius: 18px;
    }


    .taller-servicios-layout {
        display: block;
    }


    .taller-servicios-titulo {
        margin-bottom: 20px;

        font-size: 21px;
    }


    .taller-servicios-grid {
        width: 100%;

        grid-template-columns:
                    repeat(2, minmax(0, 1fr));

        gap: 10px;
    }


    .taller-servicio {
        min-height: 78px;
    }
}


/* ==========================================
   MÓVIL PEQUEÑO
   400px ↓
========================================== */

@media (max-width: 400px) {

    .taller-cita {
        gap: 16px;
    }


    .taller-campo label {
        margin-bottom: 7px;

        font-size: 11px;
    }


    .taller-fecha {
        gap: 6px;
    }


    .taller-hora {
        gap: 6px;
    }


    .taller-cita select {
        height: 45px;

        padding-left: 8px;
        padding-right: 8px;

        font-size: 13px;
    }


    .taller-servicios-card {
        padding: 21px 15px;

        border-radius: 16px;
    }


    .taller-servicios-titulo {
        margin-bottom: 17px;

        font-size: 20px;
    }


    .taller-servicios-grid {
        gap: 8px;
    }


    .taller-servicio {
        min-height: 74px;

        padding: 10px 6px;
    }


    .taller-servicio-icon {
        font-size: 20px;
    }


    .taller-servicio-nombre {
        font-size: 10px;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #15151f;
    color: #ffffff;
    overflow-x: hidden;
}
* { box-sizing: border-box; }
a { text-decoration: none; color: inherit; }
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilos aplicados a tu estructura de Header */
header {
    background-color: #15151f;
    border-bottom: 1px solid #242431;
    position: sticky;
    top: 0;
    z-index: 1000;
}
#top-bar {
    padding: 15px 0;
    transition: background-color 0.3s ease;
}
#top-bar.solid,
#top-bar[data-scroll-state~='float'] {
    background-color: #000000;
    border-bottom-color: #111;
}

.top-menu-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-menu-grid > div:last-child {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-logo img {
    height: 40px;
    width: auto;
    display: block;
}

/* Enlaces del menú generado dinámicamente */
.main-menu-placeholder {
    display: flex;
    align-items: center;
    gap: 25px;
}
.main-menu-placeholder a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}
.main-menu-placeholder a:hover {
    color: #c5d000;
}

/* Selector de idiomas */
.lang-menu-placeholder {
    color: #a9a9b3;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
}
.lang-menu-placeholder:hover {
    color: #c5d000;
}
.space-right-1 { margin-right: 5px; }

/* Botón hamburguesa móvil */
#btn-main-menu {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
}

/* Flyouts y menús laterales */
nav[data-w-flyout],
nav[data-w-menu] {
    background-color: #15151f;
    color: #ffffff;
    padding: 20px;
    border-left: 1px solid #242431;
}
nav[data-w-flyout] a, nav[data-w-menu] a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
nav[data-w-flyout] a:hover, nav[data-w-menu] a:hover {
    color: #c5d000;
}
.mobile-menu-user, .mobile-menu-legal {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #242431;
}
.legal-bases-link-mobile span {
    display: block;
    color: #c5d000;
    font-size: 13px;
    margin-bottom: 5px;
}

/* Helpers Responsive de la plantilla */
[data-responsive-target='to-size-2'] { display: none; }
[data-responsive-target='from-size-2'] { display: block; }

@media (max-width: 900px) {
    [data-responsive-target='to-size-2'] { display: block; }
    [data-responsive-target='from-size-2'] { display: none !important; }
    .text-center { text-align: center; width: 100%; }
}

.taller-boton {
    height: 45px;
    padding: 0 28px;
    border: 0;
    border-radius: 8px;
    background: #c5d000;
    color: #18181f;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.taller-boton:hover {
    background: #d6df00;
    transform: translateY(-1px);
}

/* ==========================================
   TALLER SERVICIOS
========================================== */
section[data-y-section][data-component="taller-servicios"] {
    width: 100%;
    background: #15151f;
    color: #ffffff;
    padding: 2rem 0 50px 0;
}
.hero-section {
    text-align: center;
    padding: 30px 0 50px 0;
}
.hero-subtitle {
    color: #a9a9b3;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.hero-title {
    color: #ffffff;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 40px 0;
}
.hero-title span { color: #c5d000; }
.hero-image { max-width: 100%; height: auto; }

.taller-cita {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: end;
    gap: 35px;
    padding: 24px 30px;
    background: #242431;
    border-radius: 20px;
    margin-bottom: 25px;
}
.taller-campo { min-width: 0; }
.taller-campo label {
    display: block;
    margin-bottom: 9px;
    color: #a9a9b3;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.taller-fecha {
    display: grid;
    grid-template-columns: 75px minmax(0, 1fr) 90px;
    gap: 8px;
}
.taller-hora {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr);
    align-items: center;
    gap: 5px;
}
.taller-fecha select, .taller-hora select {
    width: 100%;
    height: 45px;
    padding: 0 10px;
    border: 1px solid #3c3c48;
    border-radius: 8px;
    background: #191923;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    cursor: pointer;
}
.taller-fecha select:focus, .taller-hora select:focus { border-color: #c5d000; }
.taller-hora-separador {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}
.taller-servicios-card {
    width: 100%;
    padding: 38px 40px;
    background: #242431;
    border-radius: 25px;
    margin-bottom: 60px;
}
.taller-servicios-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 45px;
    align-items: center;
}
.taller-servicios-titulo {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: .98;
    letter-spacing: -0.03em;
}
.taller-servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 25px;
    row-gap: 16px;
}
.taller-servicio {
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
}
.taller-servicio-icon {
    width: 56px; height: 56px;
    flex: 0 0 56px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 7px;
    background: #c5d000;
    color: #17171e;
    font-size: 24px;
    transition: transform .2s ease;
}
.taller-servicio:hover .taller-servicio-icon { transform: translateY(-2px); }
.taller-servicio-nombre { color: #ffffff; font-size: 14px; line-height: 1.2; }

/* Banner Promocional */
.promo-banner {
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    margin-bottom: 60px;
    height: 300px;
    background-color: #242431;
    background-image: url('https://placehold.co/1100x400/242431/a9a9b3?text=Mechanic+Working');
    background-size: cover;
    background-position: center;
}
.promo-content {
    position: absolute;
    bottom: 0; left: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(21, 21, 31, 1), rgba(21, 21, 31, 0));
    width: 100%;
}
.promo-content h2 { color: #ffffff; font-size: 42px; margin: 0 0 10px 0; font-weight: 800;}
.promo-content p { color: #ffffff; font-size: 18px; margin: 0; font-weight: 500;}

/* Reseñas */
.reviews-section { text-align: center; margin-bottom: 60px; }
.reviews-title { color: #ffffff; font-size: 32px; font-weight: 800; margin-bottom: 30px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.reviews-title span { color: #c5d000; font-size: 38px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; text-align: left; }
.review-card { background: #242431; padding: 30px; border-radius: 20px; }
.review-text { color: #a9a9b3; font-size: 14px; line-height: 1.6; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 15px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: #3c3c48; display: flex; align-items: center; justify-content: center; color: white; font-weight: bold; }

/* Localización */
.location-section { background: #ffffff; border-radius: 25px; overflow: hidden; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); margin-bottom: 60px; }
.location-map { width: 100%; height: 100%; min-height: 250px; object-fit: cover; background: #eee; }
.location-details { padding: 40px; color: #15151f; display: flex; flex-direction: column; justify-content: center; }
.location-details h3 { font-size: 24px; font-weight: 800; margin: 0 0 25px 0; }
.location-details p { margin: 0 0 15px 0; font-size: 14px; line-height: 1.5; color: #333; }
.location-details p strong { color: #15151f; display: block; margin-bottom: 2px;}

/* Especialidades */
.specialties-section { text-align: center; margin-bottom: 40px; }
.specialties-title { color: #ffffff; font-size: 32px; font-weight: 600; margin-bottom: 40px; }
.specialties-title span { color: #c5d000; font-weight: 800; }
.specialties-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.specialty-card { background: #242431; border-radius: 20px; overflow: hidden; text-align: left; }
.specialty-card img { width: 100%; height: 200px; object-fit: cover; }
.specialty-content { padding: 25px; }
.specialty-content h4 { color: #ffffff; font-size: 18px; margin: 0 0 15px 0; font-weight: 700; }
.specialty-content p { color: #a9a9b3; font-size: 13px; line-height: 1.6; margin: 0; }

.footer { background: linear-gradient(206deg, #222 0%, #111 58.5%, #000 100%); padding: 60px 0 30px 0; border-top: 1px solid #242431; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #ffffff; font-size: 12px; text-transform: uppercase; margin: 0 0 20px 0; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; color: #a9a9b3; font-size: 13px; line-height: 2.2; }
.footer-col ul a { color: inherit; text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: #c5d000; }
.footer-bottom { border-top: 1px solid #3c3c48; padding-top: 25px; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; color: #686979; font-size: 12px; gap: 15px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: #ffffff; }

/* Media Queries Taller & General */
@media (max-width: 850px) {
    .taller-cita { grid-template-columns: 1fr 1fr; }
    .taller-cita > .taller-boton { grid-column: 1 / -1; width: 100%; }
    .taller-servicios-layout { grid-template-columns: 190px minmax(0, 1fr); gap: 30px; }
    .taller-servicios-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .location-section { grid-template-columns: 1fr; }
    .hero-title { font-size: 42px; }
}
@media (max-width: 600px) {
    .taller-cita { grid-template-columns: 1fr; gap: 18px; padding: 22px 20px; }
    .taller-fecha { grid-template-columns: 70px minmax(0, 1fr) 80px; }
    .taller-servicios-card { padding: 28px 20px; }
    .taller-servicios-layout { grid-template-columns: 1fr; }
    .taller-servicios-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 34px; }
}



/* ==========================================
   SECCIÓN LOCALIZACIÓN Y CONTACTO
========================================== */
.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.95); /* Fondo blanco ligeramente translúcido */
    border-radius: 20px;
    overflow: hidden;
    margin: 40px auto;
    max-width: 1100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contacto-mapa {
    min-height: 400px;
    width: 100%;
}

.contacto-info-panel {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #15151f; /* Texto oscuro para contrastar con el fondo blanco */
}

.contacto-info-panel h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 30px 0;
    color: #1a1a24;
}

.contacto-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contacto-item:last-child {
    margin-bottom: 0;
}

/* Estilo para los iconos SVG */
.contacto-item svg {
    width: 24px;
    height: 24px;
    color: #4a4a5a;
    flex-shrink: 0;
    margin-top: 2px;
}

.contacto-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #333344;
}

/* Estilo para los enlaces (teléfonos, emails, webs) */
.contacto-item a {
    color: #333344;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.contacto-item a:hover {
    color: #9FEB1E; /* Verde/Amarillo de tu paleta */
}

/* Responsividad para móviles */
@media (max-width: 850px) {
    .contacto-wrapper {
        grid-template-columns: 1fr;
    }

    .contacto-mapa {
        min-height: 300px;
    }

    .contacto-info-panel {
        padding: 30px 20px;
    }
}


/* ==========================================
   ESTILOS CONTENIDO EXTENDIDO (TALLER 24H)
========================================== */
[data-component="taller-info-extendida"] {
    background-color: #15151f; /* Aseguramos el fondo oscuro aquí */
    color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

[data-component="taller-info-extendida"] * {
    box-sizing: border-box;
}

.taller-info-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.text-accent {
    color: #c5d000;
}

/* SVGs integrados */
.svg-inline {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-right: 8px;
    margin-bottom: 2px;
}

/* --- Títulos generales --- */
.taller-h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 15px 0;
    text-align: center;
    color: #ffffff;
}

.taller-subtitle {
    color: #c5d000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.taller-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.taller-desc {
    color: #a9a9b3;
    font-size: 16px;
    margin-bottom: 40px;
}

/* --- Intro Text --- */
.taller-intro-block {
    text-align: center;
    margin-bottom: 70px;
}

.taller-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.7;
}

.taller-intro-text p {
    margin-bottom: 15px;
}

/* --- Qué hacemos (Grid) --- */
.taller-seccion-block {
    margin-bottom: 70px;
}

.taller-hacemos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.hacemos-item {
    background-color: #242431;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.hacemos-item:hover {
    transform: translateY(-3px);
    border-color: #c5d000;
}

.hacemos-icon {
    background-color: #c5d000;
    color: #15151f;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.hacemos-icon svg {
    width: 24px;
    height: 24px;
}

.hacemos-item h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.hacemos-item p {
    margin: 0;
    font-size: 13px;
    color: #a9a9b3;
    line-height: 1.5;
}

/* --- Tarifas (Cards) --- */
.taller-tarifas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tarifa-card {
    background-color: #242431;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #3c3c48;
    display: flex;
    flex-direction: column;
}

.tarifa-card.destaque {
    border-color: #c5d000;
    position: relative;
    box-shadow: 0 5px 25px rgba(197, 208, 0, 0.05);
}

.tarifa-precio {
    color: #a9a9b3;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tarifa-precio span {
    display: block;
    color: #c5d000;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-top: 5px;
}

.tarifa-titulo {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.tarifa-texto {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Banner de Contacto --- */
.taller-contacto-banner {
    background-color: #242431;
    border-radius: 25px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.contacto-datos p {
    margin: 0 0 15px 0;
    font-size: 15px;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.contacto-datos strong {
    color: #c5d000;
    margin-right: 5px;
}

.contacto-cta {
    background-color: #191923;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #3c3c48;
}

.contacto-cta h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #ffffff;
}

.contacto-cta p {
    color: #a9a9b3;
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-botones {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.boton-llamar, .boton-email {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s ease;
}

.boton-llamar {
    background-color: #c5d000;
    color: #15151f;
}

.boton-llamar:hover {
    background-color: #d6df00;
}

.boton-email {
    background-color: transparent;
    border: 1px solid #c5d000;
    color: #c5d000;
}

.boton-email:hover {
    background-color: rgba(197, 208, 0, 0.1);
}

/* --- Responsividad --- */
@media (max-width: 900px) {
    .taller-contacto-banner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .taller-h1 { font-size: 30px; }
    .taller-h2 { font-size: 26px; }

    .taller-tarifas-grid {
        grid-template-columns: 1fr;
    }

    .tarifa-card {
        padding: 30px 20px;
    }

    .taller-contacto-banner {
        padding: 25px 20px;
    }

    .contacto-datos p {
        align-items: flex-start;
    }
}
section[data-y-section][data-component]{
    padding-top:4rem;
}
/* ==========================================
   ESTILOS ESPECÍFICOS - SECCIÓN BATERÍAS
========================================== */
[data-component="baterias-info"] {
    background-color: #15151f;
    color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

[data-component="baterias-info"] * {
    box-sizing: border-box;
}

.baterias-info-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.text-accent {
    color: #c5d000;
}

/* --- Títulos y textos generales --- */
.taller-h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 15px 0;
    text-align: center;
    color: #ffffff;
}

.taller-subtitle {
    color: #c5d000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.taller-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.taller-desc {
    color: #a9a9b3;
    font-size: 16px;
    margin-bottom: 40px;
}

/* --- Intro Text --- */
.baterias-intro-block {
    text-align: center;
    margin-bottom: 70px;
}

.taller-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.7;
}

.taller-intro-text p {
    margin-bottom: 15px;
}

.taller-seccion-block {
    margin-bottom: 70px;
}

/* --- Grid de Tipos de Batería --- */
.taller-baterias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.bateria-item {
    background-color: #242431;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.bateria-item:hover {
    transform: translateY(-3px);
    border-color: #c5d000;
}

.bateria-icon {
    background-color: #191923;
    color: #c5d000;
    border: 1px solid #3c3c48;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.bateria-icon svg {
    width: 24px;
    height: 24px;
}

.bateria-item h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.bateria-item p {
    margin: 0;
    font-size: 14px;
    color: #a9a9b3;
    line-height: 1.5;
}

/* --- Banner de Diagnóstico Gratuito --- */
.taller-diagnostico-banner {
    background: linear-gradient(135deg, #1f1f2a 0%, #15151f 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #c5d000;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 10px 30px rgba(197, 208, 0, 0.05);
}

.diag-icon-wrapper {
    background-color: #c5d000;
    color: #15151f;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.diag-icon-wrapper svg {
    width: 50px;
    height: 50px;
}

.diag-texto p {
    color: #a9a9b3;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.diag-texto p:last-child {
    margin-bottom: 0;
}

.diag-texto strong {
    color: #c5d000;
}

/* --- Grid de Ventajas (Por qué elegirnos) --- */
.taller-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.ventaja-item {
    text-align: center;
    background: #242431;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.ventaja-item:hover {
    border-color: #3c3c48;
}

.ventaja-item svg {
    width: 36px;
    height: 36px;
    color: #c5d000;
    margin-bottom: 15px;
}

.ventaja-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ventaja-item p {
    color: #a9a9b3;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- FAQ Grid --- */
.taller-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-card {
    background-color: #191923;
    border-left: 4px solid #c5d000;
    padding: 25px 30px;
    border-radius: 8px;
}

.faq-pregunta {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-respuesta {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsividad --- */
@media (max-width: 900px) {
    .taller-diagnostico-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .taller-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .taller-h1 { font-size: 30px; }
    .taller-h2 { font-size: 26px; }

    .taller-baterias-grid {
        grid-template-columns: 1fr;
    }

    .bateria-item {
        padding: 20px 15px;
    }

    .taller-diagnostico-banner {
        padding: 30px 20px;
    }
}

/* ==========================================
   ESTILOS ESPECÍFICOS - SECCIÓN NEUMÁTICOS
========================================== */
[data-component="neumaticos-info"] {
    background-color: #15151f;
    color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

[data-component="neumaticos-info"] * {
    box-sizing: border-box;
}

.neumaticos-info-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.text-accent {
    color: #c5d000;
}

/* --- Títulos y textos generales --- */
.taller-h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 15px 0;
    text-align: center;
    color: #ffffff;
}

.taller-subtitle {
    color: #c5d000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.taller-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.taller-desc {
    color: #a9a9b3;
    font-size: 16px;
    margin-bottom: 40px;
}

/* --- Intro Text --- */
.neumaticos-intro-block {
    text-align: center;
    margin-bottom: 70px;
}

.taller-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.7;
}

.taller-intro-text p {
    margin-bottom: 15px;
}

.taller-seccion-block {
    margin-bottom: 70px;
}

/* --- Grid de Síntomas / Neumáticos --- */
.taller-sintomas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.sintoma-item {
    background-color: #242431;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.sintoma-item:hover {
    transform: translateY(-3px);
    border-color: #c5d000;
}

.sintoma-icon {
    background-color: #191923;
    color: #c5d000;
    border: 1px solid #3c3c48;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.sintoma-icon svg {
    width: 24px;
    height: 24px;
}

.sintoma-item h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.sintoma-item p {
    margin: 0;
    font-size: 14px;
    color: #a9a9b3;
    line-height: 1.5;
}

/* --- Grid de Ventajas (Por qué elegirnos) --- */
.taller-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.ventaja-item {
    text-align: center;
    background: #242431;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.ventaja-item:hover {
    border-color: #3c3c48;
}

.ventaja-item svg {
    width: 36px;
    height: 36px;
    color: #c5d000;
    margin-bottom: 15px;
}

.ventaja-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ventaja-item p {
    color: #a9a9b3;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- Tarifas (Cards) --- */
.taller-tarifas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tarifa-card {
    background-color: #242431;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #3c3c48;
    display: flex;
    flex-direction: column;
}

.tarifa-card.destaque {
    border-color: #c5d000;
    position: relative;
    box-shadow: 0 5px 25px rgba(197, 208, 0, 0.05);
}

.tarifa-precio {
    color: #a9a9b3;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tarifa-precio span {
    display: block;
    color: #c5d000;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-top: 5px;
}

.tarifa-titulo {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.tarifa-texto {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- FAQ Grid --- */
.taller-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-card {
    background-color: #191923;
    border-left: 4px solid #c5d000;
    padding: 25px 30px;
    border-radius: 8px;
}

.faq-pregunta {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-respuesta {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsividad --- */
@media (max-width: 900px) {
    .taller-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .taller-h1 { font-size: 30px; }
    .taller-h2 { font-size: 26px; }

    .taller-sintomas-grid,
    .taller-tarifas-grid,
    .taller-ventajas-grid {
        grid-template-columns: 1fr;
    }

    .sintoma-item {
        padding: 20px 15px;
    }

    .tarifa-card {
        padding: 30px 20px;
    }
}
/* ==========================================
   ESTILOS ESPECÍFICOS - SECCIÓN MANTENIMIENTO
========================================== */
[data-component="mantenimiento-info"] {
    background-color: #15151f;
    color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

[data-component="mantenimiento-info"] * {
    box-sizing: border-box;
}

.mantenimiento-info-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.text-accent {
    color: #c5d000;
}

/* --- Títulos y textos generales --- */
.taller-h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 15px 0;
    text-align: center;
    color: #ffffff;
}

.taller-subtitle {
    color: #c5d000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.taller-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.taller-desc {
    color: #a9a9b3;
    font-size: 16px;
    margin-bottom: 40px;
}

/* --- Intro Text --- */
.mantenimiento-intro-block {
    text-align: center;
    margin-bottom: 70px;
}

.taller-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.7;
}

.taller-intro-text p {
    margin-bottom: 15px;
}

.taller-seccion-block {
    margin-bottom: 70px;
}

/* --- Grid de Precios (Tarjetas de Revisión) --- */
.taller-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background-color: #242431;
    border: 1px solid #3c3c48;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #c5d000;
}

.pricing-card.destaque {
    border-color: #c5d000;
    box-shadow: 0 5px 30px rgba(197, 208, 0, 0.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #c5d000;
    color: #15151f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-titulo {
    font-size: 24px;
    margin: 0 0 15px 0;
    color: #ffffff;
    text-align: center;
}

.pricing-desc {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
    margin: 0 0 25px 0;
    min-height: 45px;
}

.pricing-precios {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #3c3c48;
}

.pricing-precios li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #3c3c48;
    font-size: 15px;
}

.pricing-precios li:last-child {
    border-bottom: none;
}

.pricing-precios li span {
    color: #a9a9b3;
}

.pricing-precios li strong {
    color: #c5d000;
    font-size: 20px;
}

.pricing-nota {
    background-color: #191923;
    border: 1px solid #3c3c48;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pricing-nota svg {
    color: #c5d000;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-nota p {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.pricing-nota strong {
    color: #ffffff;
}

/* --- Servicios Extra --- */
.taller-servicios-extra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.extra-item {
    background-color: #242431;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.extra-precio {
    background-color: #c5d000;
    color: #15151f;
    font-size: 22px;
    font-weight: 800;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.extra-info h3 {
    color: #ffffff;
    font-size: 18px;
    margin: 0 0 10px 0;
}

.extra-info p {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* --- Grid de Ventajas (Por qué elegirnos) --- */
.taller-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.ventaja-item {
    text-align: center;
    background: #242431;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.ventaja-item:hover {
    border-color: #3c3c48;
}

.ventaja-item svg {
    width: 36px;
    height: 36px;
    color: #c5d000;
    margin-bottom: 15px;
}

.ventaja-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ventaja-item p {
    color: #a9a9b3;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- FAQ Grid --- */
.taller-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-card {
    background-color: #191923;
    border-left: 4px solid #c5d000;
    padding: 25px 30px;
    border-radius: 8px;
}

.faq-pregunta {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.faq-respuesta {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsividad --- */
@media (max-width: 900px) {
    .taller-faq-grid, .taller-servicios-extra-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .taller-h1 { font-size: 30px; }
    .taller-h2 { font-size: 26px; }

    .taller-pricing-grid,
    .taller-ventajas-grid {
        grid-template-columns: 1fr;
    }

    .extra-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .extra-precio {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}
main[data-page-content], body[data-page-id='booking'] main[data-page-content]{
    padding-top:4rem;
}
/* ==========================================
   ESTILOS ESPECÍFICOS - SECCIÓN FRENOS
========================================== */
[data-component="frenos-info"] {
    background-color: #15151f;
    color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

[data-component="frenos-info"] * {
    box-sizing: border-box;
}

.frenos-info-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.text-accent {
    color: #c5d000;
}

/* --- Títulos y textos generales --- */
.taller-h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 15px 0;
    text-align: center;
    color: #ffffff;
}

.taller-subtitle {
    color: #c5d000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.taller-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.taller-desc {
    color: #a9a9b3;
    font-size: 16px;
    margin-bottom: 40px;
}

/* --- Intro Text --- */
.frenos-intro-block {
    text-align: center;
    margin-bottom: 70px;
}

.taller-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.7;
}

.taller-intro-text p {
    margin-bottom: 15px;
}
.taller-intro-text strong {
    color: #ffffff;
}

.taller-seccion-block {
    margin-bottom: 70px;
}

/* --- Pastillas y discos (Texto a columnas) --- */
.frenos-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.frenos-text-col p {
    color: #a9a9b3;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.frenos-text-col p:last-child {
    margin-bottom: 0;
}

.frenos-text-col strong {
    color: #ffffff;
}

.highlight-box {
    background-color: #191923;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-box svg {
    color: #c5d000;
    width: 36px;
    height: 36px;
}

/* --- Banner Líquido de Frenos --- */
.taller-liquido-banner {
    background: linear-gradient(135deg, #242431 0%, #191923 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #3c3c48;
    display: flex;
    align-items: center;
    gap: 40px;
}

.liquido-precio-badge {
    background-color: #c5d000;
    color: #15151f;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(197, 208, 0, 0.15);
}

.liquido-precio-badge span {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.liquido-precio-badge strong {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.liquido-texto p {
    color: #a9a9b3;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.liquido-texto p:last-child {
    margin-bottom: 0;
}

.liquido-texto strong {
    color: #c5d000;
}

/* --- Grid de Ventajas (Por qué elegirnos) --- */
.taller-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.taller-ventajas-grid.tres-columnas {
    grid-template-columns: repeat(3, 1fr);
}

.ventaja-item {
    text-align: center;
    background: #242431;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.ventaja-item:hover {
    border-color: #3c3c48;
}

.ventaja-item.highlight {
    border-color: #c5d000;
    background-color: #191923;
}

.ventaja-item svg {
    width: 36px;
    height: 36px;
    color: #c5d000;
    margin-bottom: 15px;
}

.ventaja-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ventaja-item p {
    color: #a9a9b3;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- FAQ Grid --- */
.taller-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-card {
    background-color: #191923;
    border-left: 4px solid #c5d000;
    padding: 25px 30px;
    border-radius: 8px;
}

.faq-pregunta {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.faq-respuesta {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsividad --- */
@media (max-width: 900px) {
    .frenos-text-grid {
        grid-template-columns: 1fr;
    }

    .taller-liquido-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .taller-ventajas-grid.tres-columnas {
        grid-template-columns: repeat(2, 1fr);
    }

    .taller-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .taller-h1 { font-size: 30px; }
    .taller-h2 { font-size: 26px; }

    .taller-ventajas-grid.tres-columnas {
        grid-template-columns: 1fr;
    }

    .taller-liquido-banner {
        padding: 30px 20px;
    }

    .liquido-precio-badge {
        width: 120px;
        height: 120px;
    }
    .liquido-precio-badge strong {
        font-size: 38px;
    }
}

/* ==========================================
   ESTILOS ESPECÍFICOS - SECCIÓN DIRECCIÓN Y ALINEACIÓN
========================================== */
[data-component="direccion-info"] {
    background-color: #15151f;
    color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

[data-component="direccion-info"] * {
    box-sizing: border-box;
}

.direccion-info-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.text-accent {
    color: #c5d000;
}

/* --- Títulos y textos generales --- */
.taller-h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 15px 0;
    text-align: center;
    color: #ffffff;
}

.taller-subtitle {
    color: #c5d000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.taller-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.taller-desc {
    color: #a9a9b3;
    font-size: 16px;
    margin-bottom: 40px;
}

/* --- Intro Text --- */
.direccion-intro-block {
    text-align: center;
    margin-bottom: 70px;
}

.taller-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.7;
}

.taller-intro-text p {
    margin-bottom: 15px;
}
.taller-intro-text strong {
    color: #ffffff;
}

.taller-seccion-block {
    margin-bottom: 70px;
}

/* --- Grid de Síntomas --- */
.taller-sintomas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.sintoma-item {
    background-color: #242431;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.sintoma-item:hover {
    transform: translateY(-3px);
    border-color: #c5d000;
}

.sintoma-icon {
    background-color: #191923;
    color: #c5d000;
    border: 1px solid #3c3c48;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.sintoma-icon svg {
    width: 24px;
    height: 24px;
}

.sintoma-item h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.sintoma-item p {
    margin: 0;
    font-size: 14px;
    color: #a9a9b3;
    line-height: 1.5;
}

/* --- Grid de Ventajas (Por qué elegirnos) --- */
.taller-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.ventaja-item {
    text-align: center;
    background: #242431;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.ventaja-item:hover {
    border-color: #3c3c48;
}

.ventaja-item svg {
    width: 36px;
    height: 36px;
    color: #c5d000;
    margin-bottom: 15px;
}

.ventaja-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ventaja-item p {
    color: #a9a9b3;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- Tarifas (Cards) --- */
.taller-tarifas-grid {
    display: grid;
    gap: 30px;
}

.tarifa-card {
    background-color: #242431;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #3c3c48;
    display: flex;
    flex-direction: column;
}

.tarifa-card.destaque {
    border-color: #c5d000;
    position: relative;
    box-shadow: 0 5px 25px rgba(197, 208, 0, 0.05);
}

.tarifa-precio {
    color: #a9a9b3;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tarifa-precio span {
    display: block;
    color: #c5d000;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-top: 5px;
}

.tarifa-titulo {
    font-size: 20px;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.tarifa-texto {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- FAQ Grid --- */
.taller-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-card {
    background-color: #191923;
    border-left: 4px solid #c5d000;
    padding: 25px 30px;
    border-radius: 8px;
    box-sizing: border-box;
}

.faq-pregunta {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-respuesta {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsividad --- */
@media (max-width: 900px) {
    .taller-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .taller-h1 { font-size: 30px; }
    .taller-h2 { font-size: 26px; }

    .taller-sintomas-grid,
    .taller-tarifas-grid,
    .taller-ventajas-grid {
        grid-template-columns: 1fr;
    }

    .sintoma-item {
        padding: 20px 15px;
    }

    .tarifa-card {
        padding: 30px 20px;
    }
}
/* ==========================================
   ESTILOS ESPECÍFICOS - SECCIÓN SUSPENSIÓN
========================================== */
[data-component="suspension-info"] {
    background-color: #15151f;
    color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

[data-component="suspension-info"] * {
    box-sizing: border-box;
}

.suspension-info-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.text-accent {
    color: #c5d000;
}

/* --- Títulos y textos generales --- */
.taller-h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 15px 0;
    text-align: center;
    color: #ffffff;
}

.taller-subtitle {
    color: #c5d000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.taller-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.taller-desc {
    color: #a9a9b3;
    font-size: 16px;
    margin-bottom: 40px;
}

/* --- Intro Text --- */
.suspension-intro-block {
    text-align: center;
    margin-bottom: 70px;
}

.taller-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.7;
}

.taller-intro-text p {
    margin-bottom: 15px;
}

.taller-intro-text strong {
    color: #ffffff;
}

.taller-seccion-block {
    margin-bottom: 70px;
}

/* --- Grid de Síntomas --- */
.taller-sintomas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.sintoma-item {
    background-color: #242431;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.sintoma-item:hover {
    transform: translateY(-3px);
    border-color: #c5d000;
}

.sintoma-icon {
    background-color: #191923;
    color: #c5d000;
    border: 1px solid #3c3c48;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.sintoma-icon svg {
    width: 24px;
    height: 24px;
}

.sintoma-item h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.sintoma-item p {
    margin: 0;
    font-size: 14px;
    color: #a9a9b3;
    line-height: 1.5;
}

.sintoma-item strong {
    color: #ffffff;
}

/* --- Textos de Intervención --- */
.suspension-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.suspension-text-col p {
    color: #a9a9b3;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.suspension-text-col p:last-child {
    margin-bottom: 0;
}

.suspension-text-col strong {
    color: #ffffff;
}

.highlight-box {
    background-color: #191923;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-box svg {
    color: #c5d000;
    width: 36px;
    height: 36px;
}

/* --- Grid de Ventajas (Por qué elegirnos) --- */
.taller-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.taller-ventajas-grid.tres-columnas {
    grid-template-columns: repeat(3, 1fr);
}

.ventaja-item {
    text-align: center;
    background: #242431;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.ventaja-item:hover {
    border-color: #3c3c48;
}

.ventaja-item.highlight {
    border-color: #c5d000;
    background-color: #191923;
}

.ventaja-item svg {
    width: 36px;
    height: 36px;
    color: #c5d000;
    margin-bottom: 15px;
}

.ventaja-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ventaja-item p {
    color: #a9a9b3;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- FAQ Grid --- */
.taller-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-card {
    background-color: #191923;
    border-left: 4px solid #c5d000;
    padding: 25px 30px;
    border-radius: 8px;
    box-sizing: border-box;
}

.faq-pregunta {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-respuesta {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsividad --- */
@media (max-width: 900px) {
    .suspension-text-grid {
        grid-template-columns: 1fr;
    }

    .taller-ventajas-grid.tres-columnas {
        grid-template-columns: repeat(2, 1fr);
    }

    .taller-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .taller-h1 { font-size: 30px; }
    .taller-h2 { font-size: 26px; }

    .taller-sintomas-grid,
    .taller-ventajas-grid.tres-columnas {
        grid-template-columns: 1fr;
    }

    .sintoma-item {
        padding: 20px 15px;
    }
}
/* ==========================================
   ESTILOS ESPECÍFICOS - SECCIÓN VISIBILIDAD
========================================== */
[data-component="visibilidad-info"] {
    background-color: #15151f;
    color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

[data-component="visibilidad-info"] * {
    box-sizing: border-box;
}

.visibilidad-info-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.text-accent {
    color: #c5d000;
}

/* --- Títulos y textos generales --- */
.taller-h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 15px 0;
    text-align: center;
    color: #ffffff;
}

.taller-subtitle {
    color: #c5d000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.taller-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.taller-desc {
    color: #a9a9b3;
    font-size: 16px;
    margin-bottom: 40px;
}

/* --- Intro Text --- */
.visibilidad-intro-block {
    text-align: center;
    margin-bottom: 70px;
}

.taller-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.7;
}

.taller-intro-text p {
    margin-bottom: 15px;
}

.taller-intro-text strong {
    color: #ffffff;
}

.taller-seccion-block {
    margin-bottom: 70px;
}

/* --- Bloque de Servicios (Faros y Escobillas) --- */
.visibilidad-servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.servicio-card-destacado {
    background-color: #242431;
    border: 1px solid #3c3c48;
    border-radius: 20px;
    padding: 40px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.servicio-card-destacado:hover {
    transform: translateY(-5px);
    border-color: #c5d000;
}

.servicio-card-icon {
    background-color: #c5d000;
    color: #15151f;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.servicio-card-icon svg {
    width: 30px;
    height: 30px;
}

.servicio-card-destacado h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.servicio-card-destacado p {
    color: #a9a9b3;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.servicio-card-destacado p:last-child {
    margin-bottom: 0;
}

.servicio-card-destacado strong {
    color: #ffffff;
}

/* --- Grid de Ventajas (Por qué elegirnos) --- */
.taller-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.ventaja-item {
    text-align: center;
    background: #242431;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.ventaja-item:hover {
    border-color: #3c3c48;
}

.ventaja-item.highlight {
    border-color: #c5d000;
    background-color: #191923;
}

.ventaja-item svg {
    width: 36px;
    height: 36px;
    color: #c5d000;
    margin-bottom: 15px;
}

.ventaja-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ventaja-item p {
    color: #a9a9b3;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- FAQ Grid --- */
.taller-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-card {
    background-color: #191923;
    border-left: 4px solid #c5d000;
    padding: 25px 30px;
    border-radius: 8px;
    box-sizing: border-box;
}

.faq-pregunta {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-respuesta {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsividad --- */
@media (max-width: 900px) {
    .visibilidad-servicios-grid {
        grid-template-columns: 1fr;
    }

    .taller-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .taller-h1 { font-size: 30px; }
    .taller-h2 { font-size: 26px; }

    .servicio-card-destacado {
        padding: 30px 20px;
    }
}
/* ==========================================
   ESTILOS ESPECÍFICOS - SECCIÓN ESCAPE
========================================== */
[data-component="escape-info"] {
    background-color: #15151f;
    color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

[data-component="escape-info"] * {
    box-sizing: border-box;
}

.escape-info-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.text-accent {
    color: #c5d000;
}

/* --- Títulos y textos generales --- */
.taller-h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 15px 0;
    text-align: center;
    color: #ffffff;
}

.taller-subtitle {
    color: #c5d000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.taller-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.taller-desc {
    color: #a9a9b3;
    font-size: 16px;
    margin-bottom: 40px;
}

/* --- Intro Text --- */
.escape-intro-block {
    text-align: center;
    margin-bottom: 70px;
}

.taller-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.7;
}

.taller-intro-text p {
    margin-bottom: 15px;
}

.taller-intro-text strong {
    color: #ffffff;
}

.taller-seccion-block {
    margin-bottom: 70px;
}

/* --- Grid de Síntomas --- */
.taller-sintomas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.sintoma-item {
    background-color: #242431;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.sintoma-item:hover {
    transform: translateY(-3px);
    border-color: #c5d000;
}

.sintoma-icon {
    background-color: #191923;
    color: #c5d000;
    border: 1px solid #3c3c48;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.sintoma-icon svg {
    width: 24px;
    height: 24px;
}

.sintoma-item h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.sintoma-item p {
    margin: 0;
    font-size: 14px;
    color: #a9a9b3;
    line-height: 1.5;
}

/* --- Textos de Intervención (Grid de 2 columnas) --- */
.escape-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.escape-text-col p {
    color: #a9a9b3;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.escape-text-col p:last-child {
    margin-bottom: 0;
}

.escape-text-col strong {
    color: #ffffff;
}

.highlight-box {
    background-color: #191923;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 15px;
}

.highlight-box svg {
    color: #c5d000;
    width: 36px;
    height: 36px;
}

/* --- Grid de Ventajas (Por qué elegirnos) --- */
.taller-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.taller-ventajas-grid.tres-columnas {
    grid-template-columns: repeat(3, 1fr);
}

.ventaja-item {
    text-align: center;
    background: #242431;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.ventaja-item:hover {
    border-color: #3c3c48;
}

.ventaja-item.highlight {
    border-color: #c5d000;
    background-color: #191923;
}

.ventaja-item svg {
    width: 36px;
    height: 36px;
    color: #c5d000;
    margin-bottom: 15px;
}

.ventaja-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ventaja-item p {
    color: #a9a9b3;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- FAQ Grid --- */
.taller-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-card {
    background-color: #191923;
    border-left: 4px solid #c5d000;
    padding: 25px 30px;
    border-radius: 8px;
    box-sizing: border-box;
}

.faq-pregunta {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-respuesta {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsividad --- */
@media (max-width: 900px) {
    .escape-text-grid {
        grid-template-columns: 1fr;
    }

    .taller-ventajas-grid.tres-columnas {
        grid-template-columns: repeat(2, 1fr);
    }

    .taller-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .taller-h1 { font-size: 30px; }
    .taller-h2 { font-size: 26px; }

    .taller-sintomas-grid {
        grid-template-columns: 1fr;
    }

    .taller-ventajas-grid.tres-columnas {
        grid-template-columns: 1fr;
    }

    .sintoma-item {
        padding: 20px 15px;
    }

    /* Ajuste para la caja de alerta roja/peligro en móviles */
    .sintoma-item.highlight-box {
        flex-direction: column;
        text-align: center;
    }
    .sintoma-item.highlight-box .sintoma-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}
/* ==========================================
   ESTILOS ESPECÍFICOS - SECCIÓN DIAGNOSIS
========================================== */
[data-component="diagnosis-info"] {
    background-color: #15151f;
    color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

[data-component="diagnosis-info"] * {
    box-sizing: border-box;
}

.diagnosis-info-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.text-accent {
    color: #c5d000;
}

/* --- Títulos y textos generales --- */
.taller-h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 15px 0;
    text-align: center;
    color: #ffffff;
}

.taller-subtitle {
    color: #c5d000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.taller-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.taller-desc {
    color: #a9a9b3;
    font-size: 16px;
    margin-bottom: 40px;
}

/* --- Intro Text --- */
.diagnosis-intro-block {
    text-align: center;
    margin-bottom: 70px;
}

.taller-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.7;
}

.taller-intro-text p {
    margin-bottom: 15px;
}

.taller-intro-text strong {
    color: #ffffff;
}

.taller-seccion-block {
    margin-bottom: 70px;
}

/* --- Grid de Síntomas --- */
.taller-sintomas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.sintoma-item {
    background-color: #242431;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.sintoma-item:hover {
    transform: translateY(-3px);
    border-color: #c5d000;
}

.sintoma-icon {
    background-color: #191923;
    color: #c5d000;
    border: 1px solid #3c3c48;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.sintoma-icon svg {
    width: 24px;
    height: 24px;
}

.sintoma-item h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.sintoma-item p {
    margin: 0;
    font-size: 14px;
    color: #a9a9b3;
    line-height: 1.5;
}

/* --- Textos del Servicio (Grid de 2 columnas) --- */
.diagnosis-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.diagnosis-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.diagnosis-text-col p {
    color: #a9a9b3;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.diagnosis-text-col p:last-child {
    margin-bottom: 0;
}

.diagnosis-text-col strong {
    color: #ffffff;
}

.highlight-box {
    background-color: #191923;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 30px;
    gap: 15px;
    align-items: flex-start;
}

.highlight-box svg {
    color: #c5d000;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

/* --- Grid de Ventajas (Por qué elegirnos) --- */
.taller-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.taller-ventajas-grid.tres-columnas {
    grid-template-columns: repeat(3, 1fr);
}

.ventaja-item {
    text-align: center;
    background: #242431;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.ventaja-item:hover {
    border-color: #3c3c48;
}

.ventaja-item.highlight {
    border-color: #c5d000;
    background-color: #191923;
}

.ventaja-item svg {
    width: 36px;
    height: 36px;
    color: #c5d000;
    margin-bottom: 15px;
}

.ventaja-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ventaja-item p {
    color: #a9a9b3;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- FAQ Grid --- */
.taller-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-card {
    background-color: #191923;
    border-left: 4px solid #c5d000;
    padding: 25px 30px;
    border-radius: 8px;
    box-sizing: border-box;
}

.faq-pregunta {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-respuesta {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsividad --- */
@media (max-width: 900px) {
    .diagnosis-text-grid {
        grid-template-columns: 1fr;
    }

    .taller-ventajas-grid.tres-columnas {
        grid-template-columns: repeat(2, 1fr);
    }

    .taller-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .taller-h1 { font-size: 30px; }
    .taller-h2 { font-size: 26px; }

    .taller-sintomas-grid {
        grid-template-columns: 1fr;
    }

    .taller-ventajas-grid.tres-columnas {
        grid-template-columns: 1fr;
    }

    .sintoma-item {
        padding: 20px 15px;
    }
}
/* ==========================================
   ESTILOS ESPECÍFICOS - SECCIÓN PRE-ITV
========================================== */
[data-component="pre-itv-info"] {
    background-color: #15151f;
    color: #ffffff;
    padding: 60px 20px;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}

[data-component="pre-itv-info"] * {
    box-sizing: border-box;
}

.pre-itv-info-container {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.text-accent {
    color: #c5d000;
}

/* --- Títulos y textos generales --- */
.taller-h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 15px 0;
    text-align: center;
    color: #ffffff;
}

.taller-subtitle {
    color: #c5d000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.taller-h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #ffffff;
}

.taller-desc {
    color: #a9a9b3;
    font-size: 16px;
    margin-bottom: 40px;
}

/* --- Intro Text --- */
.pre-itv-intro-block {
    text-align: center;
    margin-bottom: 70px;
}

.taller-intro-text {
    max-width: 800px;
    margin: 0 auto;
    color: #a9a9b3;
    font-size: 16px;
    line-height: 1.7;
}

.taller-intro-text p {
    margin-bottom: 15px;
}

.taller-intro-text strong {
    color: #ffffff;
}

.taller-seccion-block {
    margin-bottom: 70px;
}

/* --- Grid de Síntomas / Qué revisamos --- */
.taller-sintomas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.sintoma-item {
    background-color: #242431;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.sintoma-item:hover {
    transform: translateY(-3px);
    border-color: #c5d000;
}

.sintoma-icon {
    background-color: #191923;
    color: #c5d000;
    border: 1px solid #3c3c48;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.sintoma-icon svg {
    width: 24px;
    height: 24px;
}

.sintoma-item h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.sintoma-item p {
    margin: 0;
    font-size: 14px;
    color: #a9a9b3;
    line-height: 1.5;
}

/* --- Textos de Intervención (Caja destacada) --- */
.highlight-box {
    background-color: #191923;
    border: 1px solid #3c3c48;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    gap: 15px;
}

.highlight-box svg {
    color: #c5d000;
    width: 50px;
    height: 50px;
}

/* --- Grid de Ventajas (Por qué elegirnos) --- */
.taller-ventajas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.taller-ventajas-grid.tres-columnas {
    grid-template-columns: repeat(3, 1fr);
}

.ventaja-item {
    text-align: center;
    background: #242431;
    padding: 30px 20px;
    border-radius: 15px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.ventaja-item:hover {
    border-color: #3c3c48;
}

.ventaja-item.highlight {
    border-color: #c5d000;
    background-color: #191923;
}

.ventaja-item svg {
    width: 36px;
    height: 36px;
    color: #c5d000;
    margin-bottom: 15px;
}

.ventaja-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
}

.ventaja-item p {
    color: #a9a9b3;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* --- FAQ Grid --- */
.taller-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
}

.faq-card {
    background-color: #191923;
    border-left: 4px solid #c5d000;
    padding: 25px 30px;
    border-radius: 8px;
    box-sizing: border-box;
}

.faq-pregunta {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-respuesta {
    color: #a9a9b3;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsividad --- */
@media (max-width: 900px) {
    .taller-ventajas-grid.tres-columnas {
        grid-template-columns: repeat(2, 1fr);
    }

    .taller-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .taller-h1 { font-size: 30px; }
    .taller-h2 { font-size: 26px; }

    .taller-sintomas-grid,
    .taller-ventajas-grid.tres-columnas {
        grid-template-columns: 1fr;
    }

    .sintoma-item,
    .highlight-box {
        padding: 20px 15px;
    }
}