/* ==========================================================================
   Electrofuturo — Sistema de Diseño Premium
   UX/UI profesional desde cero
   ========================================================================== */

/* ─── TIPOGRAFÍA & GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

/* ─── TOKENS DE DISEÑO ─── */
:root {
    /* Colores */
    --color-orange:       #EE7023;
    --color-orange-dark:  #C95C10;
    --color-orange-light: rgba(238,112,35,0.12);
    --color-blue:         #007AFF;
    --color-blue-light:   rgba(0,122,255,0.10);
    --color-dark:         #0A0A0F;
    --color-dark-2:       #111118;
    --color-surface:      #FFFFFF;
    --color-border:       rgba(0,0,0,0.07);
    --color-text:         #1A1A2E;
    --color-muted:        #6B7280;
    --color-lighter:      #F4F6FA;

    /* Tipografía */
    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Inter', sans-serif;

    /* Sombras */
    --shadow-sm:   0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg:   0 20px 50px rgba(0,0,0,0.10), 0 8px 20px rgba(0,0,0,0.06);
    --shadow-xl:   0 40px 80px rgba(0,0,0,0.14);
    --shadow-glow: 0 8px 30px rgba(238,112,35,0.35);

    /* Bordes */
    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;
    --radius-full: 999px;

    /* Espaciado base */
    --section-pad: 120px;

    /* Transiciones */
    --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --duration:   0.45s;
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-stopped { overflow: hidden; }

/* ─── ESCALADO DINÁMICO (4K Support) ─── */
html { 
    scroll-behavior: smooth; 
    font-size: 16px; 
}

@media (min-width: 1920px) {
    html { font-size: 18px; }
}

@media (min-width: 2560px) {
    html { font-size: 21px; }
}

@media (min-width: 3840px) {
    html { font-size: 26px; }
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-text);
    background: var(--color-surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 800;
}

img  { max-width: 100%; display: block; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 32px;
}


/* =========================================
   BOTONES
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-orange);
    color: #fff;
    border-color: var(--color-orange);
    box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
    background: var(--color-orange-dark);
    border-color: var(--color-orange-dark);
    box-shadow: 0 12px 40px rgba(238,112,35,0.45);
    transform: translateY(-2px);
    color: #fff;
}

.btn--ghost {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
}
.btn--ghost:hover {
    background: rgba(255,255,255,0.22);
    color: #fff;
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}
.btn--outline:hover {
    background: var(--color-lighter);
    border-color: rgba(0,0,0,0.15);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--lg  { padding: 18px 44px; font-size: 1rem; }
.btn--sm  { padding: 10px 24px; font-size: 0.85rem; }

.btn__play-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    font-size: 0.7rem;
}


.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px 0;
}

.header-transparent {
    background: transparent;
}

.header-solid {
    background: rgba(8, 8, 12, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    padding: 12px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo a {
    display: flex;
    align-items: center;
    transition: transform 0.3s var(--ease-out);
}
.site-logo a:hover {
    transform: scale(1.03);
}
.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    color: #fff;
    text-transform: uppercase;
}
.custom-logo-link img {
    max-height: 50px;
    width: auto;
}
.header-solid .logo-text {
    color: var(--color-orange);
}

/* Nav - Zona Roja (Derecha) */
.site-navigation {
    margin-left: auto;
    margin-right: 40px;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.primary-menu li a {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    position: relative;
    padding: 10px 0;
}

.primary-menu li a::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--color-orange);
    transition: all 0.4s var(--ease-out);
    transform: translateX(-50%);
}

.primary-menu li a:hover {
    color: #fff;
}

.primary-menu li a:hover::before {
    width: 100%;
}

/* Acciones: Buscador Luxury */
.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.luxury-search-form {
    position: relative;
    border-radius: 50px;
    padding: 2px;
    transition: all 0.5s var(--ease-out);
}

.luxury-search-group {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 6px 16px;
    transition: all 0.4s var(--ease-out);
    backdrop-filter: blur(10px);
}

.header-search .luxury-search-group {
    width: 42px;
    overflow: hidden;
    cursor: pointer;
}

.header-search .luxury-search-group:hover,
.header-search .luxury-search-group:focus-within {
    width: 240px;
    background: rgba(255,255,255,0.08);
    border-color: var(--color-orange);
    box-shadow: 0 0 20px rgba(238,112,35,0.15);
}

.luxury-search-field {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.header-search .luxury-search-group:hover .luxury-search-field,
.header-search .luxury-search-group:focus-within .luxury-search-field {
    opacity: 1;
}

.luxury-search-submit {
    background: none;
    border: none;
    color: rgba(255,255,255,0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s;
    padding: 0;
}

.luxury-search-group:hover .luxury-search-submit {
    color: var(--color-orange);
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer;
}
.hamburger-bar {
    width: 26px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: all 0.3s;
}
.header-solid .hamburger-bar { background: var(--color-text); }


/* =========================================
   HERO SLIDER
   ========================================= */
.hero {
    position: relative;
    height: 100dvh;
    min-height: 650px;
    overflow: hidden;
    background: var(--color-dark);
}

.swiper-slide { height: 100dvh; min-height: 650px; }

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;

    /* Parallax sutil con CSS */
    transition: transform 8s ease-out;
}
.swiper-slide-active .hero__bg img {
    transform: scale(1.06);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10,10,15,0.88) 0%,
        rgba(10,10,15,0.65) 55%,
        rgba(10,10,15,0.20) 100%
    );
}

/* Wrapper de pantalla completa — posiciona el bloque de texto izquierdo */
.hero__content-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 100px max(40px, 6vw) 60px;  /* left=6vw da el margen lateral */
}

.hero__content {
    max-width: 620px;   /* limita el ancho del bloque de texto */
    width: 100%;
    /* alineado a la izquierda por el flex del wrapper */
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(238,112,35,0.15);
    border: 1px solid rgba(238,112,35,0.35);
    color: rgba(255,255,255,0.92);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
}

.hero__badge-dot {
    width: 8px; height: 8px;
    background: var(--color-orange);
    border-radius: 50%;
    display: block;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.7; }
}

.hero__title {
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    color: #fff;
    font-weight: 900;
    margin-bottom: 22px;
    line-height: 1.04;
    letter-spacing: -0.025em;
    opacity: 0;
    transform: translateY(30px);
}

.hero__title-highlight {
    background: linear-gradient(135deg, var(--color-orange), #ffa344);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(0.97rem, 1.8vw, 1.18rem);
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: 40px !important;   /* espacio reducido para mejor integración */
    opacity: 0;
    transform: translateY(25px);
}

.hero__cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding-top: 8px;       /* espacio extra desde arriba */
    opacity: 0;
    transform: translateY(20px);
}

/* Stats bar */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
    opacity: 0;
    transform: translateY(20px);
}

.hero__stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 4px;
}
.hero__stat-label {
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.50);
}
.hero__stat-divider {
    width: 1px; height: 38px;
    background: rgba(255,255,255,0.18);
}

/* Scroll indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}
.hero__scroll-line {
    display: block;
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 100%);
    animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero__scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* Swiper custom nav */
.swiper-button-next,
.swiper-button-prev {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 50%;
    color: #fff;
    transition: all 0.35s var(--ease-out);
    top: 50%; transform: translateY(-50%);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    box-shadow: var(--shadow-glow);
    transform: translateY(calc(-50% - 2px));
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 18px; font-weight: 700;
}

/* Pagination pill */
.swiper-pagination-bullet {
    background: rgba(255,255,255,0.5);
    opacity: 1;
    transition: all 0.4s var(--ease-out);
}
.swiper-pagination-bullet-active {
    background: var(--color-orange);
    width: 32px;
    border-radius: 10px;
}


/* =========================================
   SECTION COMMON HELPERS
   ========================================= */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 14px;
}
.section-label--light { color: rgba(255,255,255,0.5); }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 16px;
}
.section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--color-orange), #ffa344);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    color: var(--color-muted);
    font-size: 1.1rem;
    max-width: 540px;
    line-height: 1.75;
}

.section-header {
    margin-bottom: 64px;
}

/* GSAP Reveal */
.gsap-reveal {
    opacity: 0;
    transform: translateY(40px);
}


/* =========================================
   TRUST BAR
   ========================================= */
.trust-bar {
    padding: 24px 0;
    background: var(--color-lighter);
    border-bottom: 1px solid var(--color-border);
}

.trust-bar__inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-bar__label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    white-space: nowrap;
}

.trust-bar__logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-bar__logo {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(26,26,46,0.35);
    letter-spacing: 0.05em;
    transition: color 0.3s;
}
.trust-bar__logo:hover { color: var(--color-orange); }


/* =========================================
   SOLUCIONES
   ========================================= */
.solutions {
    padding: var(--section-pad) 0;
    background: var(--color-surface);
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.solutions__card {
    border-radius: var(--radius-lg);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all var(--duration) var(--ease-out);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.solutions__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-orange);
}

.solutions__card--featured {
    border-color: var(--color-orange);
    box-shadow: 0 0 0 1px var(--color-orange), var(--shadow-lg);
}

.solutions__card-img {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: var(--color-lighter);
}

.solutions__card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}
.solutions__card:hover .solutions__card-img img { transform: scale(1.06); }

.solutions__card-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--color-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.solutions__card-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solutions__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    background: var(--color-orange-light);
    color: var(--color-orange);
    border-radius: var(--radius-md);
}
.solutions__icon--accent { background: var(--color-orange-light); color: var(--color-orange); }
.solutions__icon--blue   { background: var(--color-blue-light);   color: var(--color-blue);   }

.solutions__card-body h3 {
    font-size: 1.4rem;
    color: var(--color-text);
    margin: 0;
}

.solutions__card-body p {
    color: var(--color-muted);
    line-height: 1.65;
    font-size: 0.95rem;
    flex: 1;
}

.solutions__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-orange);
    margin-top: 8px;
    transition: gap 0.3s;
}
.solutions__link:hover { gap: 14px; color: var(--color-orange-dark); }

/* Efecto energético decorativo */
.solutions__card-energy-visual {
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.energy-pulse {
    position: absolute;
    width: 100px; height: 100px;
    border: 1.5px solid rgba(238,112,35,0.3);
    border-radius: 50%;
    animation: energy-expand 3s ease-out infinite;
}
.energy-pulse--2 {
    animation-delay: 1.5s;
    width: 150px; height: 150px;
}

@keyframes energy-expand {
    0%   { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2);   opacity: 0;   }
}


/* =========================================
   PRODUCTOS
   ========================================= */
.products {
    padding: var(--section-pad) 0;
    background: var(--color-lighter);
}

.products__tabs {
    display: flex;
    gap: 4px;
    background: rgba(0,0,0,0.05);
    padding: 5px;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-bottom: 56px;
}

.products__tab {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: var(--radius-full);
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--color-muted);
    transition: all 0.3s var(--ease-out);
}

.products__tab--active,
.products__tab:hover {
    background: var(--color-surface);
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
}

.products__tab--active { color: var(--color-orange); }

.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.products__card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: all var(--duration) var(--ease-out);
    transform-style: preserve-3d;
}

.products__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(238,112,35,0.3);
}

.products__card-media {
    position: relative;
    height: 220px;
    background: var(--color-lighter);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products__card-media img {
    max-height: 180px;
    object-fit: contain;
    transition: transform var(--duration) var(--ease-out);
    filter: drop-shadow(0 12px 24px rgba(0,0,0,0.10));
}
.products__card:hover .products__card-media img {
    transform: scale(1.08) translateY(-4px);
}

.products__card-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,10,15,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
}
.products__card:hover .products__card-hover-overlay { opacity: 1; }

.products__card-body {
    padding: 24px 24px 16px;
    flex: 1;
}

.products__card-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-orange);
    background: var(--color-orange-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}
.products__card-tag--blue {
    color: var(--color-blue);
    background: var(--color-blue-light);
}

.products__card-body h4 {
    font-size: 1.08rem;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--color-text);
}

.products__card-body p {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.products__card-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.products__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text);
    transition: all 0.3s;
}
.products__card-link svg { transition: transform 0.3s var(--ease-out); }
.products__card-link:hover { color: var(--color-orange); }
.products__card-link:hover svg { transform: translateX(5px); }

.products__card-rating {
    font-size: 0.85rem;
    color: var(--color-orange);
    letter-spacing: -1px;
}

.products__cta-row {
    text-align: center;
    margin-top: 56px;
}


/* =========================================
   PROCESO
   ========================================= */
.process {
    padding: var(--section-pad) 0;
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(238,112,35,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    position: relative;
}

/* Línea conectora */
.process__grid::before {
    content: '';
    position: absolute;
    top: 40px; left: calc(16.7% + 24px);
    right: calc(16.7% + 24px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-orange), transparent);
    opacity: 0.3;
}

.process__step {
    text-align: center;
    position: relative;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    transition: all var(--duration) var(--ease-out);
}

.process__step:hover {
    background: var(--color-lighter);
    transform: translateY(-6px);
}

.process__step-num {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-orange-light);
    line-height: 1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-orange-light) 0%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process__step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px; height: 64px;
    background: var(--color-orange);
    color: #fff;
    border-radius: var(--radius-md);
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-glow);
}

.process__step h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-text);
}

.process__step p {
    font-size: 0.93rem;
    color: var(--color-muted);
    line-height: 1.7;
}


/* =========================================
   CTA OSCURO
   ========================================= */
.cta-dark {
    background: var(--color-dark);
    padding: var(--section-pad) 0;
    position: relative;
    overflow: hidden;
}

.cta-dark__bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(238,112,35,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(238,112,35,0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.7;
}

/* Resplandor central */
.cta-dark::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse at center, rgba(238,112,35,0.12), transparent 70%);
    pointer-events: none;
}

.cta-dark__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-dark__title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: #fff;
    margin: 12px 0 20px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.cta-dark__title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--color-orange), #ffa344);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-dark__desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 48px;
    line-height: 1.75;
}

.cta-dark__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-dark__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}
.cta-dark__meta svg { color: var(--color-orange); }


/* =========================================
   FOOTER "BRUTAL" PREMIUM
   ========================================= */
.site-footer {
    background: #08080c;
    color: rgba(255,255,255,0.6);
    padding: 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Pre-footer CTA */
.footer-cta {
    background: #0d0d14;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 100px 0;
    margin-bottom: 80px;
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-cta__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-top: 15px;
}

.footer-container {
    padding-bottom: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(2, 1fr);
    gap: 80px;
    margin-bottom: 100px;
}

/* Footer Search Spec (Static in footer) */
.footer-search-wrap .luxury-search-group {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 25px;
}

.footer-search-wrap .luxury-search-field {
    opacity: 1;
    padding: 10px 0;
}

.footer-search-wrap .luxury-search-group:focus-within {
    border-color: var(--color-orange);
    background: rgba(255,255,255,0.06);
}

.footer-col--brand .logo-text {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 25px;
    display: block;
    color: #fff;
    font-weight: 900;
    letter-spacing: 0.05em;
}

.footer-bio {
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 320px;
    opacity: 0.7;
    font-weight: 400;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    font-size: 1.1rem;
    filter: grayscale(1) brightness(2);
}

.contact-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

.social-links--premium {
    display: flex;
    gap: 15px;
}

.social-links--premium a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
    border: 1px solid rgba(255,255,255,0.05);
}

.social-links--premium a:hover {
    background: var(--color-orange);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(238,112,35,0.3);
    border-color: transparent;
}
.footer-heading::after {
    content: '';
    position: absolute;
    left: 0; bottom: -10px;
    width: 30px; height: 2px;
    background: var(--color-orange);
}

.footer-menu li {
    margin-bottom: 18px;
}

.footer-menu a {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--color-orange);
    transform: translateX(8px);
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.contact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text {
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.social-icons a:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(238, 112, 35, 0.3);
}

/* ACORDEON DE CATEGORIAS (HOVER REVEAL) */
.footer-cat {
    position: relative;
    width: 100%;
    margin-bottom: 5px !important;
}

.footer-cat > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    color: #fff !important;
    font-weight: 700;
    transition: all 0.4s var(--ease-out);
    text-shadow: none;
    transform: none !important;
}

.footer-cat:hover > a {
    background: rgba(238,112,35,0.1);
    border-color: var(--color-orange);
    color: var(--color-orange) !important;
}

.footer-cat-arrow {
    font-size: 0.75rem;
    transition: transform 0.4s var(--ease-out);
    opacity: 0.6;
}

.footer-cat:hover .footer-cat-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.footer-sub {
    max-height: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    overflow: hidden !important;
    list-style: none;
    padding: 0 15px !important;
    margin: 0 !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(0,0,0,0.15);
    border-left: 1px solid var(--color-orange);
    margin-left: 15px !important;
}

.footer-cat:hover .footer-sub {
    max-height: 1200px !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 10px !important;
    padding: 12px 15px !important;
}

.footer-sub li {
    margin: 8px 0;
    padding: 0;
}

.footer-sub li a {
    font-size: 0.88rem !important;
    color: rgba(255,255,255,0.45) !important;
    text-transform: none;
    letter-spacing: normal;
    transition: all 0.3s;
    display: block;
    padding: 4px 0;
}

.footer-sub li a:hover {
    color: #fff !important;
    transform: translateX(5px) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}


/* =========================================
   SHOWCASE — 5 PANELES ESTILO FELICITY
   ========================================= */
.showcase {
    position: relative;
    background: #0b0b0f;
    overflow: hidden;
    padding: 0;
}

/* Contenedor con gap entre paneles */
.showcase__inner {
    display: flex;
    gap: 8px;
    height: 580px;
    padding: 8px;
    position: relative;
}

/* Panel base */
.showcase__panel {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #111117;
    flex: 1 1 0%;
    transition: flex 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    min-width: 60px;
}

.showcase__panel:hover {
    flex: 4 1 0%;
}

.showcase__panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s var(--ease-out), filter 0.5s;
    filter: brightness(0.65) saturate(0.6);
}

.showcase__panel:hover img {
    transform: scale(1.05);
    filter: brightness(0.95) saturate(1.1);
}

/* Overlay oscuro en paneles laterales */
.showcase__panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
    border-radius: 20px;
    pointer-events: none;
}

/* Overlay del panel central: menos opaco, foco en el producto */
.showcase__panel-overlay--center {
    background: radial-gradient(ellipse at center, rgba(0,198,255,0.06) 0%, transparent 70%),
                linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}

.showcase__panel-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 5;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-out) 0.2s;
    pointer-events: none;
    max-width: 80%;
}

.showcase__panel:hover .showcase__panel-content {
    opacity: 1;
    transform: translateY(0);
}

.showcase__panel--main .showcase__panel-content {
    opacity: 1;
    transform: translateY(0);
}

.showcase__panel-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-orange);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.showcase__panel-title {
    color: #fff;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Remover estilos antiguos del header absoluto */
.showcase__text { display: none; }

.showcase__panel--main {
    flex: 1.8 1 0%;
    background: #0e0e18;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase__panel--main img {
    width: auto;
    max-width: 75%;
    height: 88%;
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0,198,255,0.20))
            drop-shadow(0 0 80px rgba(238,112,35,0.08))
            brightness(1.0) saturate(1);
    animation: float-panel 4.5s ease-in-out infinite;
}

@keyframes float-panel {
    0%, 100% { transform: translateY(0px);   }
    50%       { transform: translateY(-12px); }
}

/* Brillo sutil de fondo en panel central */
.showcase__panel--main::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(0, 198, 255, 0.06);
    filter: blur(60px);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Íconos flotantes en barra vertical (lado derecho del panel central) */
.showcase__icons {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 3;
}

.showcase__icon {
    width: 40px;
    height: 40px;
    background: rgba(18, 18, 28, 0.8);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.35s var(--ease-out);
    cursor: default;
}

.showcase__icon:nth-child(1) { animation: icon-blink 3.5s ease-in-out 0.0s infinite; }
.showcase__icon:nth-child(2) { animation: icon-blink 3.5s ease-in-out 0.8s infinite; }
.showcase__icon:nth-child(3) { animation: icon-blink 3.5s ease-in-out 1.6s infinite; }

@keyframes icon-blink {
    0%, 100% { border-color: rgba(255,255,255,0.10); background: rgba(18,18,28,0.8); }
    50%       { border-color: rgba(238,112,35,0.40); background: rgba(238,112,35,0.12); }
}

.showcase__icon:hover {
    background: rgba(238,112,35,0.18);
    border-color: var(--color-orange);
    transform: scale(1.1);
}

/* TEXTO SUPERPUESTO — esquina inferior izquierda */
.showcase__text {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
    pointer-events: none;
}

.showcase__text-line1 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 800;
    color: rgba(255,255,255,0.92);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.showcase__text-line2 {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.8vw, 2rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-orange), #ffb060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Responsive del showcase */
@media (max-width: 991px) {
    .showcase__inner {
        flex-direction: column;
        height: 1000px;
        gap: 12px;
        padding: 0 32px;
    }
    .showcase__panel {
        min-height: 120px;
        width: 100%;
        flex: 1 1 auto;
    }
    .showcase__panel:hover {
        flex: 3 1 auto;
    }
    .showcase__panel-content {
        left: 24px;
        bottom: 24px;
    }
    .showcase__panel-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .showcase__inner {
        height: 800px;
        padding: 0 20px;
    }
    /* Ocultar algunos paneles en móvil para no saturar */
    .showcase__panel:nth-child(n+4) {
        display: none;
    }
}

/* =========================================
   BLOG & NOTICIAS (MEGA PRO UI)
   ========================================= */
.blog-hero {
    position: relative;
    background: #08080c;
    padding: 180px 0 100px;
    overflow: hidden;
    text-align: center;
}

.blog-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(238,112,35,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0,122,255,0.05) 0%, transparent 50%);
    opacity: 0.8;
}

.blog-hero__inner {
    position: relative;
    z-index: 2;
}

.blog-hero__title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: #fff;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 25px;
}

.blog-hero__desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Layout */
.blog-page-container {
    max-width: 1440px; /* Más ancho para que respiren las 3 columnas */
    margin-top: -60px;
    position: relative;
    z-index: 5;
    padding-bottom: 120px;
}

.blog-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.blog-main { flex: 1; }
.blog-sidebar { 
    width: 300px; /* Sidebar un poco más estrecho */
    position: sticky; 
    top: 110px; 
}

/* Blog Cards */
.blog-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.5s var(--ease-out);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
    border-color: var(--color-orange);
}

/* Card Featured */
.blog-card--featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 480px;
    border-color: rgba(238,112,35,0.2);
    background: #fff;
}

.blog-card--featured .blog-thumbnail { height: 100%; position: relative; }
.blog-card--featured .blog-content { padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.blog-card--featured .blog-title { 
    font-size: clamp(1.8rem, 3vw, 2.8rem); /* Mantiene el impacto en el destacado */
    margin-bottom: 20px; 
}

/* Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-thumbnail { height: 260px; overflow: hidden; }
.blog-thumbnail img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; transition: transform 0.8s ease; }
.blog-card:hover .blog-thumbnail img { transform: scale(1.1); }

.blog-content { padding: 32px; }

.blog-header { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.blog-category a {
    background: var(--color-orange-light);
    color: var(--color-orange);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-date { font-size: 0.85rem; color: var(--color-muted); font-weight: 500; }

.blog-title { 
    font-size: 1.15rem; /* Títulos más pequeños en el grid para evitar saturación */
    line-height: 1.4; 
    margin-bottom: 12px; 
    color: var(--color-dark); 
}
.blog-title a:hover { color: var(--color-orange); }

.blog-excerpt { color: var(--color-muted); font-size: 0.98rem; line-height: 1.7; margin-bottom: 24px; }

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f4f4f4;
}

.blog-more {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-orange);
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-more::after { content: '→'; transition: transform 0.3s; }
.blog-more:hover::after { transform: translateX(5px); }

/* Sidebar Premium Widgets */
.sidebar-widget {
    background: #fff;
    padding: 35px;
    border-radius: 28px;
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.widget-title {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 25px;
    padding-left: 15px;
    border-left: 4px solid var(--color-orange);
}

.sidebar-list li { margin-bottom: 14px; }
.sidebar-list li a {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #444;
    transition: 0.3s;
}
.sidebar-list li a:hover { 
    color: var(--color-orange); 
    background: var(--color-orange-light);
    padding-left: 10px;
}

.recent-post-item { display: flex; gap: 18px; margin-bottom: 22px; align-items: center; }
.recent-thumb { width: 70px; height: 70px; border-radius: 16px; flex-shrink: 0; }
.recent-info h4 { font-size: 0.95rem; margin-bottom: 4px; line-height: 1.3; }

.sidebar-promo {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    padding: 40px;
    border-radius: 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.sidebar-promo::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(238,112,35,0.15) 0%, transparent 70%);
}

/* Pagination */
.pagination { margin-top: 60px; }
.nav-links { display: flex; gap: 10px; justify-content: center; }
.page-numbers {
    width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
    background: #fff; border: 1px solid #eee; border-radius: 12px; font-weight: 700;
}
.page-numbers.current { background: var(--color-orange); color: #fff; border-color: var(--color-orange); }
.page-numbers:hover:not(.current) { background: #f8f8f8; border-color: var(--color-orange); }

/* Responsive */
@media (max-width: 1100px) {
    .blog-layout { flex-direction: column; }
    .blog-sidebar { width: 100%; position: static; }
    .blog-card--featured { grid-template-columns: 1fr; }
    .blog-card--featured .blog-thumbnail { height: 300px; }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-hero { padding: 140px 0 80px; }
}

/* =========================================
   SLIDER HOGAR PREMIUM (FELICITY STYLE)
   ========================================= */
.home-slider-section {
    position: relative;
    padding: 100px 0 140px;
    overflow: hidden;
}

.home-slider__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.house-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: all 0.6s ease;
}

.product-injected {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease, top 0.5s ease, right 0.5s ease, left 0.5s ease, width 0.5s ease, height 0.5s ease;
}

/* Inversores: en la pared de la casa (cuadro rojo) */
.product-injected.type-inversor {
    right: 15%;
    top: 40%;
    transform: translateY(-50%) scale(0.85);
    width: 200px;
    height: 300px;
}
.product-injected.type-inversor.active {
    transform: translateY(-50%) scale(1);
}

/* Baterías: en el suelo/parte inferior (cuadro amarillo) */
.product-injected.type-bateria {
    right: 25%;
    top: 75%;
    transform: translateY(-50%) scale(0.85);
    width: 250px;
    height: 300px;
}
.product-injected.type-bateria.active {
    transform: translateY(-50%) scale(1);
}

/* Paneles Solares: en el techo (perspectiva) */
.product-injected.type-panel {
    right: 40%;
    top: 15%;
    transform: translateY(-50%) scale(0.85) skewY(-10deg) rotateZ(-5deg);
    width: 350px;
    height: 200px;
}
.product-injected.type-panel.active {
    transform: translateY(-50%) scale(1) skewY(-10deg) rotateZ(-5deg);
}

.product-injected img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

.home-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,15,1) 0%, rgba(10,10,15,0.4) 50%, rgba(10,10,15,0.9) 100%);
}

.home-slider__container {
    position: relative;
    z-index: 2;
}

.home-product-swiper {
    padding: 20px 0 60px;
    overflow: visible; /* Permite ver las tarjetas adyacentes */
}

.home-card {
    display: flex;
    flex-direction: column;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    margin: 0 15px;
}

.home-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.home-card__glass {
    flex: 1;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    border-bottom: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.home-card__glass img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.4));
    transition: transform 0.5s ease;
}

.home-card:hover .home-card__glass img {
    transform: scale(1.08);
}

.home-card__solid {
    background: #ffffff;
    padding: 24px;
    text-align: center;
}

.home-card__solid h3 {
    color: var(--color-dark);
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.01em;
}

.home-slider__controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.home-swiper-prev,
.home-swiper-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-swiper-prev svg, .home-swiper-next svg {
    width: 24px; height: 24px;
}

.home-swiper-prev:hover,
.home-swiper-next:hover {
    background: var(--color-orange);
    border-color: var(--color-orange);
    transform: scale(1.1);
}

/* =========================================
   PÁGINA NOSOTROS — ESTÉTICA LUXURY
   ========================================= */
.about-hero {
    position: relative;
    height: 80dvh;
    min-height: 600px;
    background: #000;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero__bg { position: absolute; inset: 0; }
.about-hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.5); }
.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0A0A0F 0%, transparent 100%);
}

.about-hero__inner { position: relative; z-index: 5; text-align: center; }

.about-hero__title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: #fff;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
}

.about-hero__desc {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Story Section */
.about-story { padding: 140px 0; background: #fff; }
.about-story__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story__content p { font-size: 1.1rem; color: #555; margin-bottom: 25px; line-height: 1.8; }

.about-story__stats { display: flex; gap: 40px; margin-top: 40px; }
.stat-box { display: flex; flex-direction: column; }
.stat-box__num { font-size: 2.5rem; font-weight: 900; color: var(--color-orange); }
.stat-box__label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; color: #888; }

.story-image-wrap { position: relative; border-radius: 32px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.15); }
.story-image-badge {
    position: absolute; bottom: 30px; right: 30px;
    background: #fff; padding: 15px 30px; border-radius: 100px;
    font-weight: 800; font-size: 0.8rem; color: #000; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Values Glassmorphism */
.about-values { padding: 140px 0; background: #0A0A0F; position: relative; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }

.value-card { position: relative; padding: 50px; border-radius: 32px; overflow: hidden; }
.value-card__glass {
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 1;
}

.value-card__content { position: relative; z-index: 5; }
.value-card__icon { font-size: 2.5rem; color: var(--color-orange); margin-bottom: 20px; }
.value-card__content h3 { color: #fff; font-size: 1.5rem; margin-bottom: 15px; }
.value-card__content p { color: rgba(255,255,255,0.5); line-height: 1.7; }

/* CTA */
.about-cta { padding: 100px 0; background: #fff; }
.cta-title { font-size: 3rem; font-weight: 900; margin-bottom: 20px; }
.cta-desc { font-size: 1.2rem; color: #666; margin-bottom: 40px; }


/* =========================================
   PÁGINA SERVICIOS — TECNOLOGÍA & LUJO
   ========================================= */
.services-hero {
    position: relative;
    padding: 200px 0 120px;
    background: #08080c;
    overflow: hidden;
    text-align: center;
}

.services-hero__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,122,255,0.05) 0%, transparent 70%);
}

.energy-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(238,112,35,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.services-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
}

/* Grid de Servicios */
.services-grid-section { padding: 120px 0; background: #fff; }
.services-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-premium-card {
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.5s var(--ease-out);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.service-premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    border-color: var(--color-orange);
}

.service-card__img { height: 220px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.service-premium-card:hover .service-card__img img { transform: scale(1.1); }

.service-card__content { padding: 40px; }
.service-card__icon { 
    width: 60px; height: 60px; 
    background: var(--color-orange-light); 
    color: var(--color-orange); 
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
}
.service-card__icon svg { width: 30px; height: 30px; }

.service-card__content h3 { font-size: 1.5rem; margin-bottom: 15px; color: #111; }
.service-card__content p { color: #666; font-size: 1rem; line-height: 1.6; margin-bottom: 25px; }

.service-features { list-style: none; padding: 0; border-top: 1px solid #f0f0f0; padding-top: 25px; }
.service-features li { 
    position: relative; padding-left: 25px; margin-bottom: 12px; 
    font-size: 0.9rem; font-weight: 600; color: #444; 
}
.service-features li::before { 
    content: " ✓\; position: absolute; left: 0; color: var(--color-orange); font-weight: 900; 
}

/* Proceso Step by Step */
.services-process { padding: 120px 0; background: #f8f9fc; }
.process-steps { 
 display: grid; grid-template-columns: repeat(4, 1fr); 
 gap: 30px; margin-top: 80px; position: relative; 
}

.step-item { position: relative; text-align: center; }
.step-num { 
 font-size: 4rem; font-weight: 900; color: rgba(238,112,35,0.1); 
 line-height: 1; margin-bottom: -20px; 
}
.step-item h4 { font-size: 1.3rem; margin-bottom: 15px; color: #111; position: relative; z-index: 2; }
.step-item p { font-size: 0.95rem; color: #777; }

/* CTA Luxury Card */
.services-cta { padding: 100px 0; }
.cta-luxury-card {
 background: linear-gradient(135deg, #111 0%, #222 100%);
 padding: 80px; border-radius: 40px; color: #fff;
 position: relative; overflow: hidden;
}
.cta-luxury-card h2 { font-size: 3rem; margin-bottom: 20px; }
.cta-actions { display: flex; gap: 20px; justify-content: center; margin-top: 40px; }

@media (max-width: 1024px) {
 .services-main-grid, .process-steps { grid-template-columns: 1fr; }
 .cta-luxury-card { padding: 40px; }
 .cta-actions { flex-direction: column; }
}


/* FALLBACK DE VISIBILIDAD PARA ELEMENTOS CON ANIMACIÓN */
.gsap-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
/* Si el JS tarda mucho, forzamos la visibilidad después de 2 segundos */
@keyframes force-reveal {
    to { opacity: 1; transform: translateY(0); }
}
.gsap-reveal {
    animation: force-reveal 0.1s forwards;
    animation-delay: 2.5s;
}


/* =========================================
   PÁGINA SERVICIOS BRUTAL — IMPACTO TOTAL
   ========================================= */
.brutal-services-page { background: #050507; color: #fff; overflow: hidden; }

.brutal-hero {
    position: relative;
    padding: 220px 0 140px;
    background: radial-gradient(circle at 80% 20%, rgba(238,112,35,0.1) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(0,122,255,0.05) 0%, transparent 40%);
}

.brutal-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-orange);
    color: #000;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    margin-bottom: 30px;
    transform: skewX(-10deg);
}

.brutal-hero__title {
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 0.95;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 30px;
}

.brutal-hero__title em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
}

.brutal-hero__desc {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    line-height: 1.6;
}

/* Bento Grid Brutal */
.brutal-grid-section { padding-bottom: 140px; }
.brutal-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
    gap: 20px;
}

.brutal-card {
    position: relative;
    background: #111118;
    border-radius: 4px; /* Estilo industrial cuadrado */
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brutal-card--large { grid-column: span 2; grid-row: span 2; }
.brutal-card--wide { grid-column: span 2; }

.brutal-card:hover {
    border-color: var(--color-orange);
    box-shadow: 0 0 40px rgba(238,112,35,0.15);
    transform: scale(1.01);
}

.brutal-card__img { position: absolute; inset: 0; z-index: 1; }
.brutal-card__img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; transition: 0.8s; }
.brutal-card:hover .brutal-card__img img { opacity: 0.7; transform: scale(1.05); }

.brutal-card__content {
    position: relative;
    z-index: 5;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.brutal-card__icon {
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-orange);
    opacity: 0.5;
    margin-bottom: 10px;
}

.brutal-card h3 { font-size: 1.8rem; font-weight: 900; text-transform: uppercase; margin-bottom: 15px; }
.brutal-card p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.5; }

/* Stats Brutal */
.brutal-stats { padding: 100px 0; background: #fff; color: #000; }
.stats-row { display: flex; justify-content: space-between; align-items: center; }
.stat-item { text-align: center; }
.stat-item strong { display: block; font-size: 4rem; font-weight: 900; letter-spacing: -0.05em; line-height: 1; }
.stat-item span { font-size: 1rem; font-weight: 800; text-transform: uppercase; color: var(--color-orange); }

/* CTA */
.brutal-cta { padding: 140px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.brutal-cta__title { font-size: 3.5rem; font-weight: 900; margin-bottom: 40px; }


/* =========================================
   PÁGINA SERVICIOS MASTERPIECE — DISEÑO TOP
   ========================================= */
.master-services { background: #020204; color: #fff; overflow: hidden; }

.master-hero {
    padding: 240px 0 160px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.master-hero__glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(238,112,35,0.1) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
}

.master-badge {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: var(--color-orange);
    margin-bottom: 20px;
}

.master-title {
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    font-weight: 950;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.master-title span {
    background: linear-gradient(180deg, #fff 30%, rgba(255,255,255,0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.master-line {
    width: 120px; height: 2px;
    background: var(--color-orange);
    margin: 40px auto 0;
}

/* Master Bento */
.master-grid-section { padding-bottom: 180px; }
.master-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 350px;
    gap: 30px;
}

.m-card {
    position: relative;
    background: #09090c;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.m-card--main { grid-column: span 2; grid-row: span 2; }
.m-card--wide { grid-column: span 2; }

.m-card:hover {
    transform: translateY(-15px);
    border-color: rgba(238,112,35,0.4);
    box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 30px rgba(238,112,35,0.1);
}

.m-card__bg { position: absolute; inset: 0; }
.m-card__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.m-card__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, #09090c 0%, transparent 80%);
}

.m-card__glass {
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(20px);
}

.m-card__content {
    position: relative; z-index: 10;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.m-card__tag {
    background: var(--color-orange);
    color: #000;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 900;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 20px;
}

.m-card h2 { font-size: 2.8rem; font-weight: 900; margin-bottom: 20px; letter-spacing: -0.04em; }
.m-card h3 { font-size: 1.6rem; margin-bottom: 15px; color: #fff; }
.m-card p { color: rgba(255,255,255,0.5); line-height: 1.6; font-size: 1.05rem; }

.m-card__features { display: flex; gap: 20px; margin-top: 30px; }
.m-card__features span { font-size: 0.8rem; font-weight: 700; color: var(--color-orange); }

.m-card__icon { font-size: 3rem; margin-bottom: 20px; }

/* Pulse Effect */
.pulse-ring {
    position: absolute;
    width: 200px; height: 200px;
    border: 2px solid var(--color-orange);
    border-radius: 50%;
    opacity: 0;
    animation: master-pulse 3s infinite;
}
.pulse-ring:nth-child(2) { animation-delay: 1.5s; }

@keyframes master-pulse {
    0% { transform: scale(0.5); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.master-btn {
    display: inline-block;
    padding: 20px 50px;
    background: var(--color-orange);
    color: #000;
    font-weight: 900;
    border-radius: 100px;
    font-size: 1.1rem;
    margin-top: 50px;
    transition: 0.4s;
}
.master-btn:hover { transform: scale(1.05); box-shadow: 0 20px 40px rgba(238,112,35,0.3); }


/* =========================================
   OPTIMIZACIÓN DE LEGIBILIDAD (YOAST SEO)
   ========================================= */
:root {
    --font-readability: 1.8;
}

body {
    line-height: var(--font-readability);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    margin-bottom: 1.8em;
    font-size: 1.05rem;
    color: #444;
}

/* Jerarquía clara para Google */
h1, h2, h3, h4 {
    line-height: 1.2;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    font-weight: 800;
}

.page-content img {
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}


/* Ajuste para Footer de 4 columnas */
@media (min-width: 1024px) {
    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 40px;
    }
}


/* =========================================
   FOOTER: SECCIÓN SUSCRÍBETE PREMIUM
   ========================================= */
.footer-col--subscribe {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.subscribe-text {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.subscribe-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subscribe-group input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.subscribe-group input:focus {
    border-color: var(--color-orange);
    background: rgba(255,255,255,0.08);
    outline: none;
}

.subscribe-group .btn {
    width: 100%;
    padding: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.subscribe-count {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-top: 10px;
}

.subscribe-count strong {
    color: var(--color-orange);
}

/* Mejora de la columna EXPLORAR (Menús anidados) */
.footer-cat-arrow {
    font-size: 0.7rem;
    opacity: 0.5;
}

.footer-sub {
    padding-left: 15px;
    margin-top: 5px;
    border-left: 1px solid rgba(255,255,255,0.1);
    display: none; /* Se activa con hover o JS si lo deseas */
}

.footer-cat:hover .footer-sub {
    display: block;
}


/* AJUSTES DE EQUILIBRIO FOOTER V2 */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    align-items: start;
}

.sub-input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.85rem;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.footer-social-links {
    display: flex;
    gap: 20px;
}

.footer-social-links a {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
}

.footer-social-links a:hover {
    color: var(--color-orange);
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}


/* =========================================
   REPARACIÓN INTEGRAL FOOTER — MEGA PRO
   ========================================= */
.site-footer {
    background: #050507;
    color: #fff;
    padding-top: 100px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-grid-pro {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

/* Columna Marca */
.footer-logo { margin-bottom: 25px; }
.footer-description {
    color: rgba(255,255,255,0.5);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}
.footer-contact-minimal {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact-item {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Tipografía */
.footer-h {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-orange);
    margin-bottom: 30px;
}
.footer-p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
}

/* Formulario Pro */
.footer-form-pro {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.input-pro {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    transition: 0.3s;
}
.input-pro:focus { border-color: var(--color-orange); outline: none; background: rgba(255,255,255,0.06); }
.btn-pro {
    background: var(--color-orange);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: 0.4s;
}
.btn-pro:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(238,112,35,0.2); }

/* Navegación Derecha */
.nav-group { display: flex; flex-direction: column; gap: 15px; }
.nav-item {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: block;
}
.nav-item:hover { color: #fff; padding-left: 8px; }

/* Barra Inferior */
.footer-bar {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.3); }
.footer-copy strong { color: rgba(255,255,255,0.5); }
.footer-social-pro { display: flex; gap: 30px; }
.footer-social-pro a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: 0.3s;
}
.footer-social-pro a:hover { color: var(--color-orange); }

@media (max-width: 992px) {
    .footer-grid-pro { grid-template-columns: 1fr; gap: 60px; }
    .footer-bar { flex-direction: column; gap: 25px; text-align: center; }
}


/* =========================================
   RESTAURACIÓN A 4 COLUMNAS (FOOTER DEFINITIVO)
   ========================================= */
.footer-grid-4col {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.footer-col-main { margin-right: 20px; }

/* Asegurarnos de que el texto de SERVICIOS mantenga el estilo aunque no haya H3 */
.footer-col-services .footer-menu {
    margin-top: 15px;
}

@media (max-width: 1024px) {
    .footer-grid-4col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid-4col {
        grid-template-columns: 1fr;
    }
}

/* Sub-menús de Categorías */
.footer-sub {
    padding-left: 15px;
    margin-top: 5px;
    border-left: 1px solid rgba(255,255,255,0.1);
    display: block; /* Mantener siempre visible como en el original */
}
.footer-sub li { margin-bottom: 5px; }
.footer-sub a { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-sub a:hover { color: var(--color-orange); }

