/* =========================================================
   RIDEL-SIP - MODELOS.CSS
   Vista modelos / catálogo
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.catalog-page {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 8%, rgba(255, 122, 0, 0.17), transparent 35%),
        linear-gradient(90deg, #020202 0%, #070707 45%, #101010 100%);
    color: #ffffff;
    font-family: 'Montserrat', Arial, sans-serif;
    overflow-x: hidden;
    position: relative;
}

.catalog-page a {
    text-decoration: none;
}

/* =========================================================
   DECORACIÓN DE PUNTOS
========================================================= */

.catalog-dots {
    position: absolute;
    width: 140px;
    height: 280px;
    background-image: radial-gradient(#ff7a00 1.4px, transparent 1.4px);
    background-size: 18px 18px;
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.catalog-dots-left {
    top: 40px;
    left: 0;
}

.catalog-dots-right {
    bottom: 40px;
    right: 0;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
    padding: 20px 40px 10px;
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: space-between;
}

.logo-block img {
    width: 110px;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ff7a00;
}

/* Botón WhatsApp del header */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid #ff7a00;
    color: #ff7a00;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.btn-whatsapp:hover {
    background: #ff7a00;
    color: #000000;
}

.btn-whatsapp img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.btn-whatsapp i {
    font-size: 0.95rem;
}

.cotiza {
    white-space: nowrap;
}

/* =========================================================
   PORTADA
========================================================= */

.catalog-cover {
    max-width: 1450px;
    margin: 0 auto;
    min-height: 620px;
    padding: 50px 40px 65px;
    display: grid;
    grid-template-columns: 34% 66%;
    gap: 34px;
    align-items: center;
    position: relative;
    isolation: isolate;
    overflow: visible;
}

/* IMPORTANTE:
   Este bloque deja el título por encima de las imágenes */
.catalog-cover-left {
    position: relative;
    z-index: 20;
    overflow: visible;
}

.catalog-label {
    color: #ff7a00;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 25;
}

.catalog-cover h1 {
    font-family: 'Anton', sans-serif;
    font-size: clamp(56px, 6vw, 105px);
    line-height: 0.92;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    position: relative;
    z-index: 25;
    width: max-content;
    max-width: none;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.9);
}

.catalog-cover h1 span {
    display: block;
    color: #ff7a00;
    white-space: nowrap;
}

.catalog-year {
    margin-top: 12px;
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 28px;
    position: relative;
    z-index: 25;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
}

.catalog-cover-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    background: linear-gradient(90deg, #ff7a00, #ff9b29);
    color: #050505;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 16px 16px 28px;
    border-radius: 999px;
    position: relative;
    z-index: 25;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.catalog-cover-btn span {
    width: 44px;
    height: 44px;
    background: #050505;
    color: #ffffff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
}

/* Galería portada */
.catalog-cover-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    position: relative;
    z-index: 5;
}

.cover-gallery-card {
    overflow: hidden;
    border-radius: 20px;
    background: #111111;
    border: 1px solid rgba(255, 122, 0, 0.18);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.cover-gallery-card:first-child {
    grid-column: 1 / -1;
}

.cover-gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.cover-gallery-card:first-child img {
    height: 340px;
}

/* =========================================================
   CAJAS GENERALES
========================================================= */

.catalog-content-index,
.catalog-model {
    max-width: 1450px;
    margin-left: auto;
    margin-right: auto;
}

.catalog-content-index {
    background: rgba(15, 15, 15, 0.96);
    border-radius: 28px;
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
    margin-bottom: 70px;
    position: relative;
    z-index: 5;
}

.catalog-section-title {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.catalog-section-title span {
    flex: 1;
    height: 3px;
    background: #ff7a00;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.6);
}

.catalog-section-title h2 {
    margin: 0;
    font-family: 'Anton', sans-serif;
    font-size: 42px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.catalog-index-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.catalog-index-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 122, 0, 0.14);
    border-radius: 15px;
    padding: 15px 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.25s ease;
}

.catalog-index-item:hover {
    border-color: #ff7a00;
    transform: translateY(-3px);
}

.catalog-index-item div {
    display: flex;
    align-items: center;
    gap: 9px;
    text-transform: uppercase;
    font-weight: 800;
}

.catalog-index-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff7a00;
}

.catalog-index-item strong {
    color: #ff7a00;
}

/* =========================================================
   MODELOS
========================================================= */

.catalog-model {
    margin-bottom: 80px;
    scroll-margin-top: 110px;
    position: relative;
    z-index: 5;
}

.model-visual-card {
    position: relative;
    height: 620px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background: #111111;
    border: 1px solid rgba(255, 122, 0, 0.18);
}

.model-visual-image,
.model-visual-image img {
    width: 100%;
    height: 100%;
}

.model-visual-image img {
    object-fit: cover;
    display: block;
}

.model-visual-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.42) 45%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.model-visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    padding: 38px;
}

.model-brand-corner {
    position: absolute;
    top: 34px;
    left: 34px;
    width: 140px;
}

.model-brand-corner img {
    width: 100%;
    display: block;
}

.model-main-title {
    position: absolute;
    left: 38px;
    bottom: 48px;
    max-width: 760px;
}

.model-main-title p {
    margin: 0 0 6px;
    color: #ff7a00;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.model-main-title h2 {
    margin: 0;
    font-family: 'Anton', sans-serif;
    font-size: clamp(60px, 7vw, 118px);
    line-height: 0.9;
    font-weight: 400;
    text-transform: uppercase;
}

.model-main-title h2 span {
    color: #ff7a00;
    display: block;
}

.model-main-title h3 {
    margin: 14px 0 0;
    font-size: 24px;
    font-weight: 500;
    max-width: 660px;
}

.model-seal {
    position: absolute;
    right: 42px;
    bottom: 42px;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    border: 2px solid #ff7a00;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
}

.model-seal span {
    font-size: 30px;
    color: #ff7a00;
}

.model-seal p {
    margin: 5px 0 0;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

/* =========================================================
   ICONOS MODELO
========================================================= */

.model-icons-row {
    background: #ffffff;
    color: #111111;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 18px 12px;
}

.model-icon-item {
    text-align: center;
    padding: 8px;
    border-right: 1px solid #e5e5e5;
}

.model-icon-item:last-child {
    border-right: none;
}

.model-icon-symbol {
    font-size: 26px;
    color: #ff7a00;
}

.model-icon-item p {
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

/* =========================================================
   BARRA DE ÁREA
========================================================= */

.model-area-bar {
    background: #050505;
    color: #ffffff;
    border-top: 3px solid #ff7a00;
    border-bottom: 3px solid #ff7a00;
    display: flex;
    justify-content: center;
    gap: 26px;
    padding: 16px 10px;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
}

/* =========================================================
   FICHA TÉCNICA
========================================================= */

.model-technical-card {
    background: #ffffff;
    color: #111111;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.technical-header {
    background: #050505;
    color: #ffffff;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.technical-header p {
    margin: 0 0 6px;
    color: #ff7a00;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.technical-header h2 {
    margin: 0;
    font-family: 'Anton', sans-serif;
    font-size: 46px;
    font-weight: 400;
    text-transform: uppercase;
}

.technical-header img {
    width: 120px;
}

.technical-layout {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 30px;
    padding: 32px;
}

.plan-box h3,
.technical-info-block h3 {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 3px solid #ff7a00;
    padding-bottom: 5px;
}

.plan-box img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    background: #f4f4f4;
    border: 1px solid #dddddd;
}

.technical-info-block {
    margin-bottom: 28px;
}

.technical-info-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.technical-info-block li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 11px;
    font-size: 15px;
    line-height: 1.4;
}

.technical-info-block li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ff7a00;
    font-weight: 900;
}

.model-note {
    padding: 18px 30px;
    background: #f5f5f5;
    border-top: 1px solid #dddddd;
    font-size: 15px;
}

.model-note strong {
    color: #ff7a00;
    text-transform: uppercase;
}

/* ── Sección Kit Básico / Kit Full (estilo catálogo 2026) ── */
.model-kits-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px 28px 8px;
    background: #ffffff;
}

.model-kit-column {
    padding: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    border: 3px solid #333;
    border-radius: 4px;
    overflow: hidden;
}

.kit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: #1a1a1a;
    color: #fff;
    border-left: 5px solid #ff7a00;
}

.kit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ff7a00;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

.kit-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Anton', 'Montserrat', sans-serif;
}

.model-kit-column ul {
    list-style: disc;
    padding: 16px 20px 16px 36px;
    margin: 0;
    flex: 1;
    background: #ffffff;
    color: #111111;
}

.model-kit-column li {
    padding: 2px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #111111;
}

.kit-price-box {
    text-align: center;
    padding: 12px 16px 16px;
    background: #ffffff;
}

.kit-price-label {
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #d71920;
}

.kit-price-box strong {
    display: block;
    font-size: 36px;
    font-weight: 900;
    font-style: italic;
    padding: 10px 20px;
    letter-spacing: -0.5px;
    background: #d71920;
    color: #ffffff;
}

.price-footer-text {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
}

@media (max-width: 650px) {
    .model-kits-section {
        grid-template-columns: 1fr;
        padding: 16px;
        gap: 16px;
    }

    .kit-price-box strong {
        font-size: 26px;
    }

    .kit-header h3 {
        font-size: 16px;
    }
}

.model-price-row {
    background: linear-gradient(90deg, #111111 0%, #222222 45%, #d71920 45%, #ff3030 100%);
    color: #ffffff;
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.price-info p {
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.price-info strong {
    font-size: 34px;
    font-weight: 900;
}

/* Frase que acompana al precio ("+ IVA", "desde"...). Se escribe desde el
   panel y va mas chica para no competir con el monto. */
.price-info .price-note {
    display: inline-block;
    margin-left: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    opacity: 0.75;
    white-space: nowrap;
}

.price-info-kits {
    flex-direction: row;
    gap: 28px;
}

.price-info-kits > div {
    text-align: center;
}

.price-info-kits > div p {
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.85;
}

.price-info-kits > div strong {
    font-size: 26px;
}

@media (max-width: 768px) {
    .price-info .price-note {
        display: block;
        margin-left: 0;
        font-size: 13px;
    }

    .price-info-kits {
        flex-direction: column;
        gap: 8px;
    }

    .price-info-kits > div strong {
        font-size: 22px;
    }
}

/* Botón Consulte WhatsApp al lado izquierdo del precio */
.price-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0b0b0b;
    border: 2px solid #25D366;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.25s ease;
}

.price-consult-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.price-consult-btn:hover {
    background: #25D366;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.45);
}

.model-price-row p {
    margin: 0;
    font-weight: 900;
    text-transform: uppercase;
}

.model-price-row strong {
    font-size: 34px;
    font-weight: 900;
}

/* =========================================================
   WHATSAPP FINAL
========================================================= */

.whatsapp-box {
    max-width: 360px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: linear-gradient(90deg, #0b0b0b, #141414);
    border: 1px solid rgba(255, 122, 0, 0.35);
    border-radius: 18px;
    padding: 18px 22px;
    text-decoration: none;
    color: #ffffff;
    transition: 0.25s ease;
}

.whatsapp-box:hover {
    border-color: #ff7a00;
    transform: translateY(-2px);
}

.whatsapp-logo {
    width: 32px;
    height: auto;
    object-fit: contain;
}

.whatsapp-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    line-height: 1.2;
}

.whatsapp-text span {
    font-size: 0.9rem;
    color: #cccccc;
}

.whatsapp-text strong {
    font-size: 1.15rem;
    color: #ff7a00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-box i {
    font-size: 1.7rem;
    color: #25D366;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {
    .catalog-cover {
        grid-template-columns: 1fr;
    }

    .catalog-cover h1 {
        width: auto;
        max-width: 100%;
    }

    .catalog-cover h1 span {
        white-space: normal;
    }

    .catalog-index-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .technical-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 14px 16px;
    }

    .header-inner {
        flex-wrap: nowrap;
        align-items: center;
    }

    .logo-block {
        position: relative;
        z-index: 10005;
    }

    .logo-block img {
        width: 90px;
    }

    .header-inner .btn-whatsapp {
        display: none;
    }

    .header-inner .menu-toggle {
        display: flex;
        position: relative;
        z-index: 10005;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        background: transparent;
        color: #ff7a00;
        border: none;
        font-size: 34px;
        line-height: 1;
        cursor: pointer;
    }

    #mainNav.main-nav {
        position: fixed !important;
        z-index: 10000 !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100dvh !important;
        margin: 0 !important;
        padding: 120px 28px 38px !important;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98), rgba(8, 8, 8, 0.98)) !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0 !important;

        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateX(100%) !important;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease !important;

        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    #mainNav.main-nav.show {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
    }

    #mainNav.main-nav a {
        width: 100% !important;
        display: block !important;
        padding: 19px 0 !important;
        font-size: 18px !important;
        border-bottom: 1px solid rgba(255, 122, 0, 0.26);
    }

    #mainNav.main-nav a.nav-cart-link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 8px !important;
    }

    #mainNav.main-nav a.nav-cart-link .nav-cart-badge {
        position: static !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 auto !important;
        width: 22px !important;
        min-width: 22px !important;
    }

    .catalog-cover {
        padding: 30px 16px 50px;
        grid-template-columns: 1fr;
    }

    .catalog-cover h1 {
        font-size: clamp(46px, 13vw, 76px);
        width: auto;
        max-width: 100%;
    }

    .catalog-cover h1 span {
        white-space: normal;
    }

    .catalog-content-index,
    .catalog-model {
        margin-left: 16px;
        margin-right: 16px;
    }

    .catalog-content-index {
        padding: 22px;
    }

    .catalog-index-list {
        grid-template-columns: 1fr;
    }

    .catalog-cover-gallery {
        grid-template-columns: 1fr;
    }

    .cover-gallery-card:first-child img,
    .cover-gallery-card img {
        height: 240px;
    }

    .model-visual-card {
        height: 470px;
    }

    .model-brand-corner {
        width: 100px;
        top: 20px;
        left: 20px;
    }

    .model-visual-overlay {
        padding: 20px;
    }

    .model-main-title {
        left: 22px;
        right: 22px;
        bottom: 26px;
        max-width: none;
    }

    .model-main-title h2 {
        font-size: clamp(48px, 14vw, 74px);
    }

    .model-main-title h3 {
        font-size: 17px;
    }

    .model-seal {
        display: none;
    }

    .model-icons-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .model-icon-item {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }

    .model-area-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .technical-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .technical-header h2 {
        font-size: 34px;
    }

    .technical-layout {
        padding: 22px;
    }

    .model-price-row {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #d71920;
    gap: 14px;
    }

    .price-info {
        flex-direction: column;
        gap: 4px;
    }

    .price-consult-btn {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }
}

/* =========================================================
   CTA FINAL + FOOTER CONTACTO RIDEL-SIP
========================================================= */

.final-cta-section {
    margin-bottom: 40px;
}

.final-cta-text {
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 22px;
}

/* Footer general */
.ridel-footer {
    max-width: 1450px;
    margin: 0 auto 40px;
    padding: 0 0 22px;
    background: rgba(15, 15, 15, 0.96);
    border: 1px solid rgba(255, 122, 0, 0.18);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
}

.ridel-footer-inner {
    display: grid;
    grid-template-columns: 34% 66%;
    gap: 30px;
    padding: 34px;
}

.footer-brand {
    border-right: 1px solid rgba(255, 122, 0, 0.22);
    padding-right: 30px;
}

.footer-brand img {
    width: 160px;
    max-width: 100%;
    display: block;
    margin-bottom: 18px;
}

.footer-brand p {
    color: #d8d8d8;
    font-size: 15px;
    line-height: 1.6;
    max-width: 360px;
}

.footer-contact-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 38px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ffffff;
    margin: 0 0 22px;
    display: inline-block;
    border-bottom: 3px solid #ff7a00;
    padding-bottom: 8px;
}

.footer-contact-list {
    display: grid;
    gap: 16px;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 122, 0, 0.12);
    border-radius: 16px;
    padding: 16px 18px;
}

.footer-contact-item span {
    display: block;
    color: #ff7a00;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-contact-item p {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact-item a {
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-contact-item a:hover {
    color: #ff7a00;
}

.footer-contact-item strong {
    color: #ff7a00;
    margin: 0 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 18px 34px 0;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #bdbdbd;
    font-size: 14px;
}

/* Responsive footer */
@media (max-width: 900px) {
    .ridel-footer {
        margin-left: 16px;
        margin-right: 16px;
    }

    .ridel-footer-inner {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .footer-brand {
        border-right: none;
        border-bottom: 1px solid rgba(255, 122, 0, 0.22);
        padding-right: 0;
        padding-bottom: 24px;
    }

    .footer-contact-card h3 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .footer-contact-item p {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .footer-contact-item strong {
        display: none;
    }
}

/* =========================================================
   MAPA FOOTER
========================================================= */

.footer-map {
    margin-top: 22px;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 122, 0, 0.25);
    background: #0b0b0b;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.footer-map iframe {
    width: 100%;
    height: 260px;
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

@media (max-width: 768px) {
    .footer-map iframe {
        height: 230px;
    }
}

/* =========================================================
   NUESTRA PROPUESTA (pagina 2 del catalogo)
========================================================= */

.catalog-proposal {
    max-width: 1450px;
    margin: 0 auto 80px;
    background: #ffffff;
    color: #111111;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.proposal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 40px 46px 30px;
}

.proposal-heading h2 {
    margin: 0;
    font-family: 'Anton', 'Montserrat', sans-serif;
    font-size: 54px;
    line-height: 1;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #111111;
}

.proposal-heading h2 span {
    display: block;
    color: #ff7a00;
}

.proposal-underline {
    width: 78px;
    height: 4px;
    background: #ff7a00;
    margin: 18px 0 14px;
}

.proposal-heading > p {
    margin: 0;
    max-width: 420px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #444444;
}

.proposal-logo {
    width: 210px;
    max-width: 34%;
    height: auto;
    flex-shrink: 0;
}

.proposal-hero img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.proposal-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    padding: 40px 46px 10px;
    position: relative;
}

.proposal-text::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 10px;
    left: 50%;
    width: 1px;
    background: #e2e2e2;
}

.proposal-col p {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.75;
    color: #333333;
    text-align: justify;
}

.proposal-col strong {
    color: #111111;
    font-weight: 800;
}

.proposal-badge {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 26px;
}

.proposal-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 2px solid #ff7a00;
    border-radius: 50%;
    color: #ff7a00;
    font-size: 20px;
    font-weight: 900;
}

.proposal-badge h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ff7a00;
}

.proposal-badge p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #333333;
}

.proposal-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 34px 0 44px;
    border-top: 2px solid #ff7a00;
    margin: 34px 46px 0;
}

.proposal-pillar {
    padding: 0 26px;
    text-align: center;
    border-left: 1px solid #e2e2e2;
}

.proposal-pillar:first-child {
    border-left: none;
}

.pillar-icon {
    display: block;
    font-size: 40px;
    line-height: 1;
    margin-bottom: 16px;
    color: #ff7a00;
}

.proposal-pillar h4 {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ff7a00;
}

.proposal-pillar p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #333333;
}

.proposal-slogan {
    background: #0b0b0b;
    padding: 40px 30px;
    text-align: center;
}

.proposal-slogan p {
    margin: 0;
    font-family: 'Anton', 'Montserrat', sans-serif;
    font-size: 34px;
    line-height: 1.35;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.proposal-slogan p span {
    display: inline-block;
    padding: 0 26px;
    position: relative;
}

.proposal-slogan p span::before,
.proposal-slogan p span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 2px;
    background: #ff7a00;
}

.proposal-slogan p span::before {
    right: 100%;
}

.proposal-slogan p span::after {
    left: 100%;
}

@media (max-width: 900px) {
    .catalog-proposal {
        margin-left: 16px;
        margin-right: 16px;
    }

    .proposal-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 22px 20px;
    }

    .proposal-heading h2 {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .proposal-logo {
        width: 150px;
        max-width: 50%;
    }

    .proposal-hero img {
        height: 260px;
    }

    .proposal-text {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 26px 22px 4px;
    }

    .proposal-text::before {
        display: none;
    }

    .proposal-pillars {
        grid-template-columns: 1fr 1fr;
        margin: 24px 22px 0;
        padding: 26px 0 32px;
        row-gap: 26px;
    }

    .proposal-pillar {
        padding: 0 14px;
    }

    .proposal-pillar:nth-child(odd) {
        border-left: none;
    }

    .proposal-slogan p {
        font-size: 20px;
    }

    .proposal-slogan p span::before,
    .proposal-slogan p span::after {
        width: 22px;
    }
}

@media (max-width: 560px) {
    .proposal-pillars {
        grid-template-columns: 1fr;
    }

    .proposal-pillar {
        border-left: none;
    }
}

/* =========================================================
   NUESTROS PROYECTOS (ultima pagina del catalogo)
========================================================= */

.catalog-projects {
    max-width: 1450px;
    margin: 0 auto 80px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.projects-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px 46px;
    background: #0b0b0b;
}

.projects-heading > p {
    margin: 0 0 4px;
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ff7a00;
}

.projects-heading > p strong {
    font-weight: 900;
    color: #ffffff;
}

.projects-heading h2 {
    margin: 0;
    font-family: 'Anton', 'Montserrat', sans-serif;
    font-size: 62px;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.projects-heading h2 span {
    color: #ff7a00;
}

.projects-subline {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 10px;
}

.projects-subline span {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
}

.projects-subline i {
    flex: 1;
    height: 1px;
    background: #ff7a00;
}

.projects-logo {
    width: 220px;
    max-width: 32%;
    height: auto;
    flex-shrink: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 14px;
}

.proyecto-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 4px;
    min-height: 240px;
}

.proyecto-card.proyecto-wide {
    grid-column: 1 / -1;
}

.proyecto-card.proyecto-tall {
    grid-row: span 2;
}

.proyecto-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

.proyecto-card.proyecto-wide img {
    height: 430px;
}

.proyecto-card figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 22px 10px 14px;
    background: #ffffff;
    border-radius: 0 8px 0 0;
}

.proyecto-pin {
    font-size: 22px;
    line-height: 1;
}

.proyecto-card figcaption strong {
    display: block;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #111111;
}

.proyecto-card figcaption > div > span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #333333;
}

.projects-footer {
    display: flex;
    align-items: stretch;
    background: #0b0b0b;
}

.projects-footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 46px;
    flex: 1;
}

.projects-leaf {
    font-size: 26px;
    line-height: 1;
}

.projects-footer-left p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #ffffff;
}

.projects-footer-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 60px;
    background: #ff9d00;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
}

.projects-globe {
    font-size: 20px;
    line-height: 1;
}

@media (max-width: 900px) {
    .catalog-projects {
        margin-left: 16px;
        margin-right: 16px;
    }

    .projects-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 22px;
    }

    .projects-heading > p {
        font-size: 17px;
    }

    .projects-heading h2 {
        font-size: 38px;
    }

    .projects-subline span {
        font-size: 14px;
    }

    .projects-logo {
        width: 150px;
        max-width: 46%;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .proyecto-card.proyecto-tall {
        grid-row: auto;
    }

    .proyecto-card.proyecto-wide img,
    .proyecto-card img {
        height: 240px;
    }

    .projects-footer {
        flex-direction: column;
    }

    .projects-footer-left {
        padding: 18px 22px;
    }

    .projects-footer-right {
        padding: 16px 22px;
    }
}