/* SEÑALIZACIONYA — bundle */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ===== Bootstrap restore ===== */
.row { display: flex; flex-wrap: wrap; margin-left: -0.75rem; margin-right: -0.75rem; }
.row > * { box-sizing: border-box; flex-shrink: 0; padding-left: 0.75rem; padding-right: 0.75rem; }
.col-12 { flex: 0 0 auto; width: 100%; }
.col-6  { flex: 0 0 auto; width: 50%; }
@media (min-width: 768px) {
    .col-md-3 { flex: 0 0 auto; width: 25%; }
    .col-md-4 { flex: 0 0 auto; width: 33.333%; }
    .col-md-6 { flex: 0 0 auto; width: 50%; }
    .col-md-8 { flex: 0 0 auto; width: 66.667%; }
}
@media (min-width: 992px) {
    .col-lg-3  { flex: 0 0 auto; width: 25%; }
    .col-lg-4  { flex: 0 0 auto; width: 33.333%; }
    .col-lg-5  { flex: 0 0 auto; width: 41.667%; }
    .col-lg-6  { flex: 0 0 auto; width: 50%; }
    .col-lg-7  { flex: 0 0 auto; width: 58.333%; }
    .col-lg-8  { flex: 0 0 auto; width: 66.667%; }
    .col-lg-10 { flex: 0 0 auto; width: 83.333%; }
    .col-lg-12 { flex: 0 0 auto; width: 100%; }
}
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.me-2 { margin-right: 0.5rem; }
.me-3 { margin-right: 1rem; }


/* ===== core/_variables.css ===== */

:root {
    /* Colores */
    --primary-navy: #1e293b;
    --accent-orange: #ea580c;
    --success-green: #059669;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-600: #475569;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* Tipografía */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Space Grotesk', sans-serif;
    
    /* Tamaños */
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
    --transition: all 0.3s ease;
}

/* ===== core/_base.css ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background-color: var(--neutral-50);
    color: var(--neutral-800);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-navy);
    text-align: center;
    margin-bottom: 2rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--neutral-600);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* ===== core/_animations.css ===== */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== core/_utilities.css ===== */
.text-center {
    text-align: center;
}

.justify-content-center {
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.mb-4 {
    margin-bottom: 4rem !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.relative {
    position: relative;
}

.z-2 {
    z-index: 2;
}

/* ===== components/_header.css ===== */
/* ============================================================
   HEADER / NAVBAR — Reconstruido tras pérdida en incidente
   ============================================================ */

/* Top bar (info de contacto + redes) */
.header-top {
    background: #0f172a;
    color: #cbd5e1;
    font-size: 0.85rem;
    padding: 0.5rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-top > .container { max-width: 1280px; margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.header-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}
.header-info-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: color .2s;
}
.header-info-item:hover { color: #fbbf24; }
.header-info-item i { color: #ea580c; }

.header-social {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}
.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .9rem;
    transition: all .2s;
}
.social-icon:hover { background: #ea580c; transform: translateY(-2px); }

/* Main header */
.main-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all .3s;
}
.main-header.scrolled { box-shadow: 0 4px 16px rgba(0,0,0,.1); }

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
    gap: 2rem;
}

.logo { text-decoration: none; display: inline-block; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; display: block; }

/* Desktop menu — la estructura real es: nav.desktop-menu > ul > li > a */
.desktop-menu { flex: 1; }
.desktop-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
}
.desktop-menu li { position: relative; list-style: none; }
.desktop-menu a {
    color: #1e293b;
    text-decoration: none;
    padding: 0.65rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}
.desktop-menu a:hover,
.desktop-menu a.active {
    color: #ea580c;
    background: rgba(234,88,12,.08);
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 0.4rem;
    border: 4px solid transparent;
    border-top-color: currentColor;
    transform: translateY(2px);
}
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    border-radius: 10px;
    padding: 0.5rem;
    min-width: 260px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s;
    z-index: 1100;
}
.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-content a {
    display: block !important;
    padding: 0.7rem 1rem;
    color: #475569 !important;
    text-decoration: none;
    border-radius: 6px;
    font-size: .9rem;
    font-weight: 500;
    transition: all .15s;
    white-space: normal;
}
.dropdown-content a:hover { background: #f1f5f9; color: #ea580c !important; }

/* CTA */
.header-cta { flex-shrink: 0; }
.cta-button {
    background: #ea580c;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(234,88,12,.3);
    transition: all .2s;
}
.cta-button:hover {
    background: #c2410c !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234,88,12,.4);
}

/* Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #1e293b;
    border-radius: 2px;
    transition: all .3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85%, 360px);
    height: 100vh;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0,0,0,.15);
    transition: right .3s;
    z-index: 1200;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-content { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 3rem; }
.mobile-menu-content a {
    color: #1e293b;
    text-decoration: none;
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all .2s;
    display: block;
}
.mobile-menu-content a:hover,
.mobile-menu-content a.active { background: #f1f5f9; color: #ea580c; }
.mobile-dropdown-content { padding-left: 1rem; display: none; }
.mobile-dropdown.open .mobile-dropdown-content { display: flex; flex-direction: column; gap: .25rem; }
.mobile-cta-button {
    background: #ea580c;
    color: #fff !important;
    text-align: center;
    margin-top: 1rem;
    border-radius: 8px;
    font-weight: 700;
}

/* Floating buttons */
.whatsapp-float,
.phone-float {
    position: fixed;
    bottom: 24px;
    z-index: 9998;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(0,0,0,.25);
    text-decoration: none;
    transition: transform .2s;
}
.whatsapp-float { right: 24px; background: #25d366; }
.phone-float   { right: 90px; background: #ea580c; }
.whatsapp-float:hover,
.phone-float:hover { transform: scale(1.1); }

/* Reset Bootstrap UL bullets en caso de heredar */
.desktop-menu ul,
.mobile-menu-content ul,
.dropdown-content ul {
    list-style: none !important;
    padding-left: 0 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .desktop-menu,
    .header-cta,
    .header-info { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-top { font-size: .8rem; }
    .header-social { margin-left: auto; }
}
@media (max-width: 576px) {
    .header-top { display: none; }
    .header-container { padding: 0.75rem 1rem; }
    .logo-img { height: 42px; }
}


/* ===== components/_sections.css ===== */
/* ============================================================
   SECCIONES Y CARDS — Estilos faltantes reconstruidos
   ============================================================ */

/* Section title estándar */
.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}
.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Sección "Tipos de Señalización" */
.types-section {
    padding: 5rem 0;
    background: #f8fafc;
}
.types-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Grid 2 columnas para cards grandes */
.services-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}
@media (max-width: 900px) {
    .services-grid-2col { grid-template-columns: 1fr; gap: 2rem; }
}

/* Card grande */
.service-card-large {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.service-card-large:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.service-image-large {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.service-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.service-card-large:hover .service-image-large img { transform: scale(1.05); }

.service-overlay-large {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(30,41,59,0) 50%, rgba(30,41,59,.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
}
.service-percentage-large {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.service-stats-large {
    font-weight: 800;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    color: #fbbf24;
}

.service-content-large {
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.service-title-large {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.service-description-large {
    color: #475569;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features-large {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.feature-tag-large {
    background: #f1f5f9;
    color: #475569;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 1px solid #e2e8f0;
}
.feature-tag-large i { color: #ea580c; }

.service-action-large { margin-top: auto; }
.btn-service-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: #fff !important;
    padding: 0.85rem 1.4rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(234,88,12,.25);
}
.btn-service-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234,88,12,.4);
}

/* Variante: tag pequeña (en hero / otras secciones) */
.feature-tag {
    background: rgba(234,88,12,0.12);
    color: #fbbf24;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin: 0.2rem;
}

/* ============================================================
   SECCIONES GENÉRICAS — services-section, differentiators, contact
   ============================================================ */
section { padding-left: 0; padding-right: 0; }
section .container,
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* Services grid (3-4 cols) */
.services-section,
.differentiators-section {
    padding: 5rem 0;
    background: #fff;
}
.differentiators-section { background: #f8fafc; }

.services-grid,
.differentiators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 2rem;
}

.service-card,
.differentiator-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.05);
    border: 1px solid #f1f5f9;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.differentiator-card { text-align: center; align-items: center; }
.service-card:hover,
.differentiator-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
    border-color: #ea580c;
}

.service-icon,
.differentiator-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 6px 16px rgba(234,88,12,.25);
}

.service-title,
.differentiator-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.6rem;
}
.service-description,
.differentiator-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
}
.contact-section .section-title { color: #fff; }
.contact-section .section-subtitle { color: #cbd5e1; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.contact-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all .3s;
}
.contact-card:hover {
    background: rgba(234,88,12,.12);
    border-color: #ea580c;
    transform: translateY(-4px);
}
.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ea580c;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}
.contact-card-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.contact-card-info {
    color: #cbd5e1;
    font-size: 0.95rem;
}
.contact-card-info a { color: #fbbf24; text-decoration: none; }
.contact-card-info a:hover { color: #fff; }

/* Botones genéricos */
.btn { display: inline-block; padding: 0.75rem 1.5rem; border-radius: 8px; font-weight: 600; text-decoration: none; transition: all .2s; cursor: pointer; border: none; }
.btn-primary,
.btn-primary-custom {
    background: #ea580c;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(234,88,12,.3);
}
.btn-primary:hover,
.btn-primary-custom:hover { background: #c2410c; transform: translateY(-2px); }
.btn-outline-primary {
    background: transparent;
    color: #ea580c;
    border: 2px solid #ea580c;
}
.btn-outline-primary:hover { background: #ea580c; color: #fff; }
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-outline-light:hover { background: #fff; color: #1e293b; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }

/* Animaciones scroll */
.animate-on-scroll {
    opacity: 1;
    transform: none;
}

/* Hero genérico (refinado) */
.hero-content {
    color: #fff;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}
.hero-description {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

/* Badges / expertise */
.expertise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(234,88,12,.15);
    color: #fbbf24;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(234,88,12,.3);
}

/* Material list (PVC, Acrílico, etc.) */
.materials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.materials-list span,
.material-item {
    background: rgba(255,255,255,.08);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,.15);
}

/* Benefit list */
.benefit-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.benefit-list li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    color: #475569;
    line-height: 1.5;
}
.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    background: #ea580c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Layout helpers */
.h-100 { height: 100%; }
.text-end { text-align: right; }
.d-block { display: block; }
.d-none { display: none; }
.d-md-none { display: none; }
.d-md-inline { display: inline; }
@media (min-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-inline { display: inline !important; }
}
@media (min-width: 992px) {
    .d-lg-block { display: block !important; }
}

/* ============================================================
   HERO STATS — cards numéricas
   ============================================================ */
.hero-stats {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stats .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
@media (max-width: 768px) {
    .hero-stats .row { grid-template-columns: repeat(2, 1fr); }
}
.stat-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all .3s;
    backdrop-filter: blur(8px);
}
.stat-card:hover {
    background: rgba(234,88,12,.12);
    border-color: rgba(234,88,12,.4);
    transform: translateY(-4px);
}
.stat-number {
    color: #ea580c;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}
.stat-number i {
    -webkit-text-fill-color: #ea580c;
    color: #ea580c;
}
.stat-label {
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================================
   FIX: benefit-list — evitar doble bullet cuando hay <i> dentro
   ============================================================ */
.benefit-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}
.benefit-list li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.7rem 0;
    color: #475569;
    line-height: 1.5;
}
.benefit-list li::before,
.benefit-list li::marker { display: none !important; content: '' !important; }
.benefit-list li > i.fas,
.benefit-list li > i.far,
.benefit-list li > i.fab {
    color: #ea580c;
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 0.05rem;
}
.benefit-list li > div,
.benefit-list li > span { flex: 1; }
.benefit-list li strong { color: #1e293b; font-weight: 700; }

/* ============================================================
   STATS GRID — bloque "17+ años, 500+ proyectos, etc"
   ============================================================ */
.showcase-stats {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}
.showcase-stats img {
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}
.stat-item {
    background: linear-gradient(135deg, #fff8f3 0%, #ffe9d8 100%);
    border-left: 4px solid #ea580c;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: left;
    transition: all .3s;
}
.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(234,88,12,.15);
}
.stat-item .stat-number {
    color: #ea580c;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}
.stat-item .stat-label {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}

/* Layout 2-col para Diferenciadores + Stats */
.differentiators-section .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 992px) {
    .differentiators-section .row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* Botones del CTA inferior centrados */
.differentiators-section .text-center {
    text-align: center;
    margin-top: 3rem;
}
.differentiators-section .btn { margin: 0 0.5rem 0.75rem; }

/* ============================================================
   HERO SECTION — Rediseño v2 (compatible con Bootstrap grid)
   ============================================================ */
.hero-section {
    background:
        radial-gradient(circle at 20% 30%, rgba(234,88,12,.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(251,191,36,.08) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1a365d 100%);
    color: #fff;
    padding: 5rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}
.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
}
.hero-section .row { align-items: center; min-height: 480px; }

.hero-content {
    text-align: left;
    padding-right: 1rem;
}
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: #fff;
    letter-spacing: -0.02em;
}
.hero-title strong,
.hero-title .highlight {
    color: #fbbf24;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}
.hero-description {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 620px;
}
.hero-description strong { color: #fff; }

.hero-sectors {
    color: #94a3b8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    max-width: 580px;
}
.hero-sectors strong {
    color: #fff;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 0;
}
.hero-buttons .btn {
    padding: 0.95rem 1.75rem;
    font-size: 0.98rem;
    font-weight: 700;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all .25s;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
}
.hero-section .btn-primary,
.hero-section a.btn-primary {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 8px 22px rgba(234,88,12,.4);
}
.hero-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(234,88,12,.5);
}
.hero-section .btn-outline-light {
    background: rgba(255,255,255,.05) !important;
    color: #fff !important;
    border: 2px solid rgba(255,255,255,.3) !important;
    backdrop-filter: blur(6px);
}
.hero-section .btn-outline-light:hover {
    background: rgba(255,255,255,.12) !important;
    border-color: #fff !important;
    transform: translateY(-2px);
}

/* Imagen del hero — bien posicionada */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,.5);
    transform: rotate(-2deg);
    transition: transform .4s;
    max-width: 100%;
}
.hero-image-wrapper:hover { transform: rotate(0); }
.hero-image-wrapper img,
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}
/* Badge flotante sobre la imagen (opcional) */
.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(234,88,12,0) 60%, rgba(234,88,12,.15) 100%);
    pointer-events: none;
    border-radius: 20px;
}

/* Forzar bootstrap col en hero a 7/5 */
.hero-section .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33%;
}
.hero-section .col-lg-5 {
    flex: 0 0 auto;
    width: 41.67%;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section { padding: 4rem 0 3rem; }
    .hero-section .col-lg-7,
    .hero-section .col-lg-5 { width: 100%; flex: 0 0 100%; }
    .hero-content { text-align: center; padding-right: 0; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image { margin-top: 2.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
    .hero-image-wrapper { transform: none; }
}

/* ============================================================
   MATERIALES SECTION — íconos y descripciones
   ============================================================ */
.materials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.material-card {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    transition: all .3s;
    text-align: left;
}
.material-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    border-color: #ea580c;
}
.material-card > i,
.material-card .material-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    border-radius: 10px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.material-card h3,
.material-card .material-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.material-card p,
.material-card .material-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}
.material-card .aplicaciones,
.material-card strong + span {
    display: block;
    font-size: 0.85rem;
    color: #475569;
    margin-top: 0.5rem;
}
.material-card strong { color: #1e293b; font-weight: 700; }


/* ===== components/_hero.css ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--neutral-900) 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 6rem 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ea580c' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm10 0c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.coming-soon-badge {
    display: inline-block;
    background-color: var(--accent-orange);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    animation: pulse 2s infinite;
}

.main-logo {
    font-family: var(--font-secondary);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, var(--accent-orange), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #cbd5e1;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-primary-custom {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    background-color: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary-custom {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary-custom:hover {
    background-color: white;
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* ===== components/_services.css ===== */
.services-section {
    padding: 6rem 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.service-card {
    background-color: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(234, 88, 12, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--neutral-600);
    line-height: 1.6;
}

/* ===== components/_progress.css ===== */


/* ===== components/_contact.css ===== */
.contact-section {
    padding: 6rem 0;
    background-color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-card {
    background-color: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--accent-orange);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

.contact-card-info {
    color: var(--neutral-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ===== components/_footer.css ===== */
.footer-section {
    background-color: var(--primary-navy);
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-text {
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.materials-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.material-tag {
    background-color: rgba(234, 88, 12, 0.2);
    color: var(--accent-orange);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    color: #94a3b8;
    font-size: 0.9rem;
}