/* ==================== SISTEMA DE BORDES REDONDEADOS UNIFICADOS ==================== */
/* Añadir este archivo después de _home.css y _banners-new.css */

/* Variables de radios */
:root {
    --radius-xl: 16px;    /* Contenedores principales */
    --radius-lg: 12px;    /* Cards, banners, secciones */
    --radius-md: 8px;     /* Botones, elementos medianos */
    --radius-sm: 6px;     /* Inputs, acordeones */
    --radius-xs: 4px;     /* Thumbnails, detalles */
    --radius-pill: 50px;  /* Badges, pills */
}

/* ==================== NEW HEADER - OPCIÓN 1 ==================== */
.new-header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1000;
}

.new-header .top-bar {
    background: #1a1a1a;
    padding: 8px 40px;
    text-align: center;
}

.new-header .top-bar span {
    color: #fff;
    font-size: 14px;
}

.new-header .main-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 40px;
    max-width: 1250px;
    margin: 14px auto;
}

.new-header .logo-original {
    height: 75px;
    display: flex;
    align-items: center;
}

.new-header .logo-original img {
    height: 75px;
    width: auto;
}

.new-header nav {
    display: flex;
    gap: 35px;
}

.new-header nav a {
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.new-header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff5a00;
    transition: width 0.3s ease;
}

.new-header nav a:hover,
.new-header nav a.active {
    color: #ff5a00;
}

.new-header nav a:hover::after,
.new-header nav a.active::after {
    width: 100%;
}

.new-header .cta-btn {
    background: #ff5a00;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.new-header .cta-btn:hover {
    background: #1a1a1a;
}

/* ==================== RESPONSIVE HEADER ==================== */
@media screen and (max-width: 1119px) {
    .new-header .top-bar {
        padding: 8px 20px;
        text-align: center;
    }
    
    .new-header .main-header {
        padding: 25px 25px;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .new-header nav {
        gap: 20px;
    }
    
    .new-header nav a {
        font-size: 12px;
    }
}

@media screen and (max-width: 991px) {
    .new-header .main-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .new-header nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px 25px;
    }
    
    .new-header .cta-btn {
        order: 2;
    }
}

@media screen and (max-width: 767px) {
    .new-header .top-bar span {
        font-size: 10px;
    }
    
    .new-header .logo-original {
        height: 45px;
    }
    
    .new-header nav a {
        font-size: 11px;
    }
    
    .new-header .cta-btn {
        display: none;
    }
}

/* ==================== STEPS PROGRESS ==================== */
.steps-progress {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 12px 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.steps-progress .steps-progress-content .step .icon {
    border-radius: var(--radius-sm);
}

/* ==================== MOTOR DE RESERVAS ==================== */
.container-barajas .content-banner .content-form {
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.container-barajas .content-banner .content-form .title-form {
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.container-barajas .content-banner .content-form #parkingForm {
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.container-barajas .content-banner .content-form .mb-3 .row .col-6 input,
.container-barajas .content-banner .content-form .mb-3 .row .col-6 select,
.container-barajas .content-banner .content-form .mb-3 .row .col-12 input,
.container-barajas .content-banner .content-form .mb-3 .row .col-12 select {
    border-radius: var(--radius-sm);
}

.container-barajas .content-banner .content-form .mb-3 .row .field.field-type-car .row .field-control .control input[type="radio"]+label {
    border-radius: var(--radius-md);
}

.container-barajas .content-banner .content-form .actions-toolbar .btn-primary {
    border-radius: var(--radius-md);
}

/* ==================== BANNERS ==================== */
.banner-principal {
    border-radius: var(--radius-lg);
}

.banner-descuento {
    border-radius: var(--radius-lg);
}

.tiempo-badge {
    border-radius: var(--radius-md);
}

.terminal-card {
    border-radius: var(--radius-sm);
}

.badge-aeropuerto {
    border-radius: var(--radius-pill);
}

.btn-descuento {
    border-radius: var(--radius-pill);
}

.servicio-item .icon {
    border-radius: var(--radius-sm);
}

/* ==================== BENEFITS (Tipos de Parking) - OPCIÓN 3 UNIFICADA ==================== */
body .container-barajas .content-benefits {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 0 !important;
    margin-top: 15px !important;
    display: block !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
    border-top: 4px solid #ff5a00 !important;
    overflow: hidden !important;
}

body .container-barajas .content-benefits .row-benefits {
    display: flex !important;
    flex-direction: row !important;
    gap: 0 !important;
}

body .container-barajas .content-benefits .row-benefits .column {
    flex: 1 !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 28px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: visible !important;
    border: none !important;
    width: auto !important;
    min-width: 0 !important;
}

body .container-barajas .content-benefits .row-benefits .column::before {
    display: none !important;
}

body .container-barajas .content-benefits .row-benefits .column:not(:last-child)::after {
    content: '•••' !important;
    position: absolute !important;
    right: -4px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #ff5a00 !important;
    font-size: 8px !important;
    letter-spacing: 3px !important;
    writing-mode: vertical-lr !important;
    background: transparent !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
}

body .container-barajas .content-benefits .row-benefits .column:hover {
    box-shadow: none !important;
    transform: none !important;
    background: #fffaf8 !important;
}

/* Header: icono + título en fila */
body .container-barajas .content-benefits .row-benefits .column .card-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 15px !important;
    margin-bottom: 18px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

body .container-barajas .content-benefits .row-benefits .column .card-header img {
    width: 55px !important;
    height: 55px !important;
    min-width: 55px !important;
    max-width: 55px !important;
    border-radius: 14px !important;
    object-fit: contain !important;
    display: block !important;
    flex-shrink: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.3) !important;
}

/* TÍTULO EN NEGRO - CORREGIDO */
body .container-barajas .content-benefits .row-benefits .column .card-header h4 {
    font-size: 13px !important;
    font-weight: 800 !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    line-height: 1.3 !important;
    margin: 15px 0 0 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Body content */
body .container-barajas .content-benefits .row-benefits .column .content-info {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

body .container-barajas .content-benefits .row-benefits .column .content-info h4 {
    display: none !important;
}

body .container-barajas .content-benefits .row-benefits .column .content-info p {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #666666 !important;
    line-height: 1.6 !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    background: transparent !important;
    flex: 1 !important;
    width: 100% !important;
}

body .container-barajas .content-benefits .row-benefits .column .content-info p span {
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

body .container-barajas .content-benefits .row-benefits .column .content-info a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0px !important;
    width: 100% !important;
    max-width: 55% !important;
    background: #1a1a1a !important;
    color: #ffffff !important;
    padding: 2px 0px !important;
    border-radius: 8px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    position: static !important;
    margin-top: auto !important;
    border: none !important;
}

body .container-barajas .content-benefits .row-benefits .column .content-info a:hover {
    background: #ff5a00 !important;
}

body .container-barajas .content-benefits .row-benefits .column .content-info a:after {
    content: '→' !important;
    font-size: 14px !important;
    color: #ffffff !important;
    margin-left: 4px !important;
}

/* Hide old img if exists outside card-header */
body .container-barajas .content-benefits .row-benefits .column > img {
    display: none !important;
}

/* ==================== RESPONSIVE BENEFITS ==================== */
@media screen and (max-width: 1119px) {
    body .container-barajas .content-benefits {
        margin: 15px 12px !important;
        border-radius: 12px !important;
    }
    
    body .container-barajas .content-benefits .row-benefits {
        flex-wrap: wrap !important;
    }
    
    body .container-barajas .content-benefits .row-benefits .column {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding: 24px 20px !important;
    }
    
    body .container-barajas .content-benefits .row-benefits .column:nth-child(2)::after {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    body .container-barajas .content-benefits .row-benefits {
        flex-direction: column !important;
    }
    
    body .container-barajas .content-benefits .row-benefits .column {
        flex: 1 1 100% !important;
        max-width: 100% !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    body .container-barajas .content-benefits .row-benefits .column:last-child {
        border-bottom: none !important;
    }
    
    body .container-barajas .content-benefits .row-benefits .column:not(:last-child)::after {
        display: none !important;
    }
    
    /* ============================================
       MÓVIL: ICONOS CENTRADOS ENCIMA DEL TÍTULO
       ============================================ */
    body .container-barajas .content-benefits .row-benefits .column .card-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    body .container-barajas .content-benefits .row-benefits .column .card-header img {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        margin: 0 auto 10px auto !important;
    }
    
    body .container-barajas .content-benefits .row-benefits .column .card-header h4 {
        font-size: 14px !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    body .container-barajas .content-benefits .row-benefits .column .content-info {
        text-align: center !important;
    }
    
    body .container-barajas .content-benefits .row-benefits .column .content-info p {
        text-align: center !important;
    }
}

/* ==================== CONTENT SERVICE (Imágenes informativas) ==================== */
.content-service {
    margin-top: 15px;
}

.content-service .row-service img {
    border-radius: var(--radius-lg);
}

/* ==================== FACILITIES (Galería) ==================== */
html body .container-barajas .content-facilities-title {
    background: #1a1a1a !important;
    border-radius: 12px 12px 0 0 !important;
    padding: 25px 35px !important;
    text-align: center !important;
    border-top: 3px solid #ff5a00 !important;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    display: block !important;
}

html body .container-barajas .content-facilities-title .subtitle {
    color: #ff5a00 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 4px !important;
    margin-bottom: 8px !important;
    display: block !important;
    background: transparent !important;
}

html body .container-barajas .content-facilities-title h4 {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    text-align: center !important;
}

.content-facilities {
    background: #ffffff;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 15px;
    margin-top: 0 !important;
}

.content-facilities .swiper.mySwiper2 {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.content-facilities .swiper.mySwiper2 .swiper-slide img {
    border-radius: var(--radius-md);
}

.content-facilities .swiper.mySwiper .swiper-slide {
    border-radius: var(--radius-xs);
    overflow: hidden;
}

.content-facilities .swiper.mySwiper .swiper-slide img {
    border-radius: var(--radius-xs);
}

.content-facilities .swiper.mySwiper .swiper-slide-thumb-active {
    border: 2px solid #ff5a00;
    border-radius: var(--radius-xs);
}

/* ==================== FAQ (Preguntas Frecuentes) ==================== */
.content-questions {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-top: 15px;
}

.content-questions .title h5 {
    margin-bottom: 15px;
}

.content-questions #accordion h3 {
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.content-questions #accordion h3:hover {
    background: #ebebeb;
}

.content-questions #accordion h3.ui-state-active {
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    margin-bottom: 0;
}

.content-questions #accordion .ui-accordion-content {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    margin-bottom: 8px;
}

/* ==================== CARDS ADICIONALES ==================== */
.card {
    border-radius: var(--radius-lg);
}

.card:before {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

/* ==================== BOTONES GENERALES ==================== */
button.btn-primary,
a.btn-primary {
    border-radius: var(--radius-md);
}

button.btn-secondary,
a.btn-secondary {
    border-radius: var(--radius-md);
}

/* ==================== INPUTS Y SELECTS GENERALES ==================== */
input.form-control,
select.form-select {
    border-radius: var(--radius-sm);
}

/* ==================== LOADER ==================== */
.loader > div {
    border-radius: var(--radius-lg);
}

/* ==================== BANNER SERVICIO 24H - OPCIÓN 3 ==================== */
.banner-servicio-24h {
    display: flex;
    background: linear-gradient(90deg, #1a1a1a 0%, #1a1a1a 50%, #ff5a00 50%, #ff5a00 100%);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 15px;
}

.banner-servicio-24h .banner-servicio-left {
    flex: 1;
    padding: 28px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
}

.banner-servicio-24h .banner-servicio-left .badge-24 {
    background: #ff5a00;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    padding: 12px 16px;
    border-radius: 10px;
    line-height: 1;
    flex-shrink: 0;
}

.banner-servicio-24h .banner-servicio-left .servicio-content h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0 0 5px 0;
}

.banner-servicio-24h .banner-servicio-left .servicio-content p {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.banner-servicio-24h .banner-servicio-right {
    flex: 1;
    background: #ff5a00;
    padding: 28px 35px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-servicio-24h .banner-servicio-right .operadora-img {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    flex-shrink: 0;
}

.banner-servicio-24h .banner-servicio-right .operadora-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Icono SVG alternativo */
.banner-servicio-24h .banner-servicio-right .operadora-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.banner-servicio-24h .banner-servicio-right .operadora-icon svg {
    width: 65px;
    height: 55px;
    fill: #ff5a00;
}

.banner-servicio-24h .banner-servicio-right .contacto-info {
    flex: 1;
}

.banner-servicio-24h .banner-servicio-right .contacto-block h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.banner-servicio-24h .banner-servicio-right .contacto-block .phone {
    color: #000;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 4px 0;
}

.banner-servicio-24h .banner-servicio-right .contacto-block .email {
    color: #000;
    font-size: 16px;
    margin: 0;
}

/* ==================== RESPONSIVE BANNER SERVICIO 24H ==================== */
@media screen and (max-width: 991px) {
    .banner-servicio-24h {
        flex-direction: column;
        background: #1a1a1a;
    }
    
    .banner-servicio-24h .banner-servicio-left {
        padding: 25px 30px;
        justify-content: center;
    }
    
    .banner-servicio-24h .banner-servicio-right {
        padding: 25px 30px;
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .banner-servicio-24h {
        margin: 20px 12px;
        border-radius: 10px;
    }
    
    .banner-servicio-24h .banner-servicio-left {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .banner-servicio-24h .banner-servicio-left .badge-24 {
        font-size: 24px;
        padding: 10px 14px;
    }
    
    .banner-servicio-24h .banner-servicio-left .servicio-content h3 {
        font-size: 14px;
    }
    
    .banner-servicio-24h .banner-servicio-right {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .banner-servicio-24h .banner-servicio-right .operadora-img {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .banner-servicio-24h .banner-servicio-right .operadora-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }
    
    .banner-servicio-24h .banner-servicio-right .operadora-icon svg {
        width: 65px;
        height: 55px;
    }
    
    .banner-servicio-24h .banner-servicio-right .contacto-block .phone {
        font-size: 20px;
    }
}

/* ==================== BANNER ETIQUETA MEDIOAMBIENTAL ==================== */
.banner-medioambiental {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #ff5a00 0%, #ff7a33 100%);
    border-radius: 12px;
    padding: 20px 30px;
    margin-top: 15px;
}

.banner-medioambiental .icon-warning {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-medioambiental .icon-warning svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.banner-medioambiental .mensaje {
    flex: 1;
}

.banner-medioambiental .mensaje h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.banner-medioambiental .mensaje p {
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.banner-medioambiental .mensaje p strong {
    font-weight: 700;
}

/* ==================== RESPONSIVE BANNER MEDIOAMBIENTAL ==================== */
@media screen and (max-width: 767px) {
    .banner-medioambiental {
        margin: 15px 12px;
        padding: 18px 20px;
        gap: 15px;
    }
    
    .banner-medioambiental .icon-warning {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .banner-medioambiental .icon-warning svg {
        width: 26px;
        height: 26px;
    }
    
    .banner-medioambiental .mensaje h4 {
        font-size: 12px;
    }
    
    .banner-medioambiental .mensaje p {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .banner-medioambiental {
        flex-direction: column;
        text-align: center;
    }
}

/* ==================== RESPONSIVE ==================== */
@media screen and (max-width: 1119px) {
    .steps-progress {
        border-radius: var(--radius-md);
        margin: 0 12px 15px 12px;
    }
    
    .content-benefits {
        border-radius: var(--radius-md);
        margin: 15px 12px;
    }
    
    .content-benefits .row-benefits .column {
        border-radius: var(--radius-md);
        margin-bottom: 10px;
    }
    
    .content-benefits .row-benefits .column:nth-child(2),
    .content-benefits .row-benefits .column:nth-child(3) {
        margin-bottom: 10px;
    }
    
    .content-service {
        padding: 0 12px;
    }
    
    .content-service .row-service img {
        border-radius: var(--radius-md);
    }
    
    .content-facilities-title {
        margin: 15px 12px 0 12px !important;
        border-radius: var(--radius-md) var(--radius-md) 0 0 !important;
    }
    
    .content-facilities {
        margin: 0 12px !important;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }
    
    .content-questions {
        border-radius: var(--radius-md);
        margin: 15px 12px;
    }
}

/* ==================== NEW FOOTER - OPCIÓN 12 ==================== */
.new-footer {
    background: #0d0d0d;
    margin-top: 30px;
}

.new-footer .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.new-footer .brand-section {
    max-width: 320px;
}

.new-footer .brand-section .brand-name {
    font-size: 28px;
    font-weight: 800;
    color: #ff5a00;
    margin-bottom: 15px;
    line-height: 1.2;
}

.new-footer .brand-section .brand-name span {
    color: #ffffff;
}

.new-footer .brand-section p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.new-footer .brand-section .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,90,0,0.15);
    border: 1px solid rgba(255,90,0,0.3);
    padding: 10px 18px;
    border-radius: 25px;
    color: #ff5a00;
    font-size: 12px;
    font-weight: 600;
}

.new-footer .brand-section .badge svg {
    width: 16px;
    height: 16px;
    fill: #ff5a00;
}

.new-footer .links-grid {
    display: flex;
    gap: 70px;
}

.new-footer .link-col h4 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 22px;
}

.new-footer .link-col a {
    display: block;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.new-footer .link-col a:hover {
    color: #ff5a00;
}

.new-footer .contact-section {
    background: #1a1a1a;
    padding: 28px 32px;
    border-radius: 16px;
    min-width: 300px;
}

.new-footer .contact-section .title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}

.new-footer .contact-section .phone {
    color: #ff5a00;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.new-footer .contact-section .email {
    color: #999;
    font-size: 14px;
    margin-bottom: 18px;
}

.new-footer .contact-section .schedule {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 13px;
}

.new-footer .contact-section .schedule .dot {
    width: 10px;
    height: 10px;
    background: #00c853;
    border-radius: 50%;
}

.new-footer .bottom-bar {
    border-top: 1px solid #222;
    padding: 22px 40px;
    text-align: center;
}

.new-footer .bottom-bar span {
    color: #555;
    font-size: 12px;
}

/* ==================== RESPONSIVE FOOTER ==================== */
@media screen and (max-width: 1119px) {
    .new-footer .footer-main {
        padding: 40px 30px;
        gap: 40px;
    }
    
    .new-footer .links-grid {
        gap: 50px;
    }
    
    .new-footer .contact-section {
        min-width: 260px;
    }
}

@media screen and (max-width: 991px) {
    .new-footer .footer-main {
        flex-wrap: wrap;
    }
    
    .new-footer .brand-section {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .new-footer .brand-section .brand-name {
        font-size: 26px;
    }
    
    .new-footer .links-grid {
        width: 100%;
        justify-content: center;
        gap: 60px;
    }
    
    .new-footer .contact-section {
        width: 100%;
        text-align: center;
    }
    
    .new-footer .contact-section .schedule {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .new-footer .footer-main {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .new-footer .brand-section .brand-name {
        font-size: 24px;
    }
    
    .new-footer .brand-section p {
        font-size: 13px;
    }
    
    .new-footer .links-grid {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .new-footer .link-col h4 {
        margin-bottom: 15px;
        font-size: 12px;
    }
    
    .new-footer .link-col a {
        margin-bottom: 10px;
        font-size: 13px;
    }
    
    .new-footer .contact-section {
        padding: 22px;
    }
    
    .new-footer .contact-section .title {
        font-size: 14px;
    }
    
    .new-footer .contact-section .phone {
        font-size: 24px;
    }
    
    .new-footer .contact-section .email {
        font-size: 13px;
    }
    
    .new-footer .bottom-bar {
        padding: 18px 20px;
    }
    
    .new-footer .bottom-bar span {
        font-size: 11px;
    }
}

/* ==================== NEW FOOTER - OPCIÓN 12 ==================== */
.new-footer {
    background: #0d0d0d;
    margin-top: 30px;
}

.new-footer .footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 40px;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
}

.new-footer .brand-section {
    max-width: 300px;
}

.new-footer .brand-section img {
    height: 70px;
    margin-bottom: 0px;
}

.new-footer .brand-section p {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.new-footer .brand-section .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,90,0,0.15);
    border: 1px solid rgba(255,90,0,0.3);
    padding: 8px 15px;
    border-radius: 20px;
    color: #ff5a00;
    font-size: 11px;
    font-weight: 600;
}

.new-footer .brand-section .badge svg {
    width: 14px;
    height: 14px;
    fill: #ff5a00;
}

.new-footer .links-grid {
    display: flex;
    gap: 60px;
}

.new-footer .link-col h4 {
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.new-footer .link-col a {
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.new-footer .link-col a:hover {
    color: #ff5a00;
}

.new-footer .contact-section {
    background: #1a1a1a;
    padding: 25px 30px;
    border-radius: 16px;
    min-width: 280px;
}

.new-footer .contact-section .title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.new-footer .contact-section .phone {
    color: #ff5a00;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.new-footer .contact-section .email {
    color: #888;
    font-size: 13px;
    margin-bottom: 15px;
}

.new-footer .contact-section .schedule {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 11px;
}

.new-footer .contact-section .schedule .dot {
    width: 8px;
    height: 8px;
    background: #00c853;
    border-radius: 50%;
}

.new-footer .bottom-bar {
    border-top: 1px solid #222;
    padding: 20px 40px;
    text-align: center;
}

.new-footer .bottom-bar span {
    color: #444;
    font-size: 11px;
}

/* ==================== RESPONSIVE FOOTER ==================== */
@media screen and (max-width: 1119px) {
    .new-footer .footer-main {
        padding: 40px 30px;
        gap: 40px;
    }
    
    .new-footer .links-grid {
        gap: 40px;
    }
    
    .new-footer .contact-section {
        min-width: 240px;
    }
}

@media screen and (max-width: 991px) {
    .new-footer .footer-main {
        flex-wrap: wrap;
    }
    
    .new-footer .brand-section {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .new-footer .brand-section img {
        height: 45px;
    }
    
    .new-footer .links-grid {
        width: 100%;
        justify-content: center;
        gap: 60px;
    }
    
    .new-footer .contact-section {
        width: 100%;
        text-align: center;
    }
    
    .new-footer .contact-section .schedule {
        justify-content: center;
    }
}

@media screen and (max-width: 767px) {
    .new-footer .footer-main {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .new-footer .links-grid {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .new-footer .link-col h4 {
        margin-bottom: 12px;
    }
    
    .new-footer .link-col a {
        margin-bottom: 8px;
    }
    
    .new-footer .contact-section {
        padding: 20px;
    }
    
    .new-footer .contact-section .phone {
        font-size: 22px;
    }
    
    .new-footer .bottom-bar {
        padding: 15px 20px;
    }
    
    .new-footer .bottom-bar span {
        font-size: 10px;
    }
}



/* ==================== NEW FOOTER - OPCIÓN 12 (OVERRIDE) ==================== */
footer.new-footer {
    background: #0d0d0d !important;
    background-image: none !important;
    margin-top: 30px !important;
    padding: 0 !important;
    border: none !important;
}

footer.new-footer * {
    box-sizing: border-box;
}

footer.new-footer .footer-main {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    padding: 50px 40px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    gap: 60px !important;
    background: transparent !important;
    border: none !important;
}

footer.new-footer .brand-section {
    max-width: 255px !important;
    background: transparent !important;
}

footer.new-footer .brand-section .brand-name {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #ff5a00 !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
    background: transparent !important;
}

footer.new-footer .brand-section .brand-name span {
    color: #ffffff !important;
}

footer.new-footer .brand-section p {
    color: #888 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
    margin-bottom: -5px !important;
    background: transparent !important;
}

footer.new-footer .brand-section .badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: rgba(255,90,0,0.15) !important;
    border: 1px solid rgba(255,90,0,0.3) !important;
    padding: 10px 18px !important;
    border-radius: 25px !important;
    color: #ff5a00 !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}

footer.new-footer .brand-section .badge svg {
    width: 16px !important;
    height: 16px !important;
    fill: #ff5a00 !important;
}

footer.new-footer .links-grid {
    display: flex !important;
    gap: 70px !important;
    background: transparent !important;
}

footer.new-footer .link-col {
    background: transparent !important;
}

footer.new-footer .link-col h4 {
    color: #ff5a00 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 22px !important;
    background: transparent !important;
}

footer.new-footer .link-col a {
    display: block !important;
    color: #888 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    margin-bottom: 14px !important;
    transition: color 0.3s ease !important;
    background: transparent !important;
}

footer.new-footer .link-col a:hover {
    color: #ff5a00 !important;
}

footer.new-footer .contact-section {
    background: #1a1a1a !important;
    padding: 50px 65px !important;
    border-radius: 16px !important;
    min-width: 295px !important;
    border: none !important;
}

footer.new-footer .contact-section .title {
    color: #ff5a00 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 18px !important;
    background: transparent !important;
}

footer.new-footer .contact-section .phone {
    color: #ff5a00 !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    margin-bottom: 10px !important;
    background: transparent !important;
}

footer.new-footer .contact-section .email {
    color: #999 !important;
    font-size: 14px !important;
    margin-bottom: 18px !important;
    background: transparent !important;
}

footer.new-footer .contact-section .schedule {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #666 !important;
    font-size: 13px !important;
    background: transparent !important;
}

footer.new-footer .contact-section .schedule .dot {
    width: 10px !important;
    height: 10px !important;
    background: #00c853 !important;
    border-radius: 50% !important;
}

footer.new-footer .bottom-bar {
    border-top: 1px solid #222 !important;
    padding: 22px 40px !important;
    text-align: center !important;
    background: transparent !important;
}

footer.new-footer .bottom-bar span {
    color: #fff !important;
    font-size: 15px !important;
    background: transparent !important;
}

/* ==================== RESPONSIVE FOOTER ==================== */
@media screen and (max-width: 1119px) {
    footer.new-footer .footer-main {
        padding: 40px 30px !important;
        gap: 40px !important;
    }
    
    footer.new-footer .links-grid {
        gap: 50px !important;
    }
    
    footer.new-footer .contact-section {
        min-width: 260px !important;
    }
}

@media screen and (max-width: 991px) {
    footer.new-footer .footer-main {
        flex-wrap: wrap !important;
    }
    
    footer.new-footer .brand-section {
        max-width: 100% !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    footer.new-footer .brand-section .brand-name {
        font-size: 26px !important;
    }
    
    footer.new-footer .links-grid {
        width: 100% !important;
        justify-content: center !important;
        gap: 60px !important;
    }
    
    footer.new-footer .contact-section {
        width: 100% !important;
        text-align: center !important;
    }
    
    footer.new-footer .contact-section .schedule {
        justify-content: center !important;
    }
}

@media screen and (max-width: 767px) {
    footer.new-footer .footer-main {
        padding: 30px 20px !important;
        gap: 30px !important;
    }
    
    footer.new-footer .brand-section .brand-name {
        font-size: 24px !important;
    }
    
    footer.new-footer .brand-section p {
        font-size: 13px !important;
    }
    
    footer.new-footer .links-grid {
        flex-direction: column !important;
        gap: 25px !important;
        text-align: center !important;
    }
    
    footer.new-footer .link-col h4 {
        margin-bottom: 15px !important;
        font-size: 12px !important;
    }
    
    footer.new-footer .link-col a {
        margin-bottom: 10px !important;
        font-size: 13px !important;
    }
    
    footer.new-footer .contact-section {
        padding: 22px !important;
    }
    
    footer.new-footer .contact-section .title {
        font-size: 14px !important;
    }
    
    footer.new-footer .contact-section .phone {
        font-size: 24px !important;
    }
    
    footer.new-footer .contact-section .email {
        font-size: 15px !important;
    }
    
    footer.new-footer .bottom-bar {
        padding: 18px 20px !important;
    }
    
    footer.new-footer .bottom-bar span {
        font-size: 13px !important;
    }
}
