
/* =========================================================
   COMERCIALIZADORA INDUSTRIAL FARID
   Dirección: "ficha técnica de almacén industrial"
   — concreto frío, tipografía condensada de señalética,
     acentos amarillo-seguridad + azul de plano técnico,
     marcas de esquina tipo dibujo técnico como firma.
   ========================================================= */

:root {
    --ink:        #14171A;
    --graphite:   #22262B;
    --steel:      #4A5560;
    --steel-soft: #7C8790;
    --paper:      #EDEFEE;
    --paper-dim:  #E3E6E4;
    --panel:      #FFFFFF;
    --line:       rgba(20, 23, 26, 0.12);
    --line-soft:  rgba(20, 23, 26, 0.07);

    --safety:      #F5B400;
    --safety-dark: #C98F00;
    --blueprint:   #2F5C7A;
    --blueprint-soft: #E7EEF2;

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body:    'Inter', sans-serif;
    --font-mono:    'JetBrains Mono', monospace;

    --container: 1240px;
    --radius: 4px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin: 0;
    color: var(--ink);
}

p { margin: 0; }

:focus-visible {
    outline: 2px solid var(--blueprint);
    outline-offset: 3px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blueprint);
}

.section-label::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--safety);
}

/* =========================================================
   HAZARD RULE — signature divider (used sparingly)
   ========================================================= */
.hazard-rule {
    height: 6px;
    background: repeating-linear-gradient(
        135deg,
        var(--ink) 0px, var(--ink) 10px,
        var(--safety) 10px, var(--safety) 20px
    );
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(237, 239, 238, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
}

.navbar {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand img {
    height: 75px;
    width: auto;
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 36px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--steel);
    position: relative;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.nav-menu a:hover { color: var(--ink); }

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--safety);
    transition: right 0.2s ease;
}

.nav-menu a:hover::after { right: 0; }

.nav-button {
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: var(--radius);
    white-space: nowrap;
    transition: background 0.2s ease;
}

.nav-button:hover { background: var(--blueprint); }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: 96px 32px 0;
}

/* =========================================
   HERO — FONDO
========================================= */

.hero {
    position: relative;

    overflow: hidden;

    background: #1f2328;
}


/* IMAGEN DE FONDO */

.hero-background {
    position: absolute;

    inset: 0;

    z-index: 0;

    background-image:
        url("../images/logo/fondo.png");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


/* CAPA PARA ASEGURAR LEGIBILIDAD */

.hero-background::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(31, 35, 40, 0.18) 0%,
            rgba(31, 35, 40, 0.08) 45%,
            rgba(31, 35, 40, 0.35) 100%
        );

    pointer-events: none;
}


/* CONTENIDO ENCIMA DEL FONDO */

.hero-container {
    position: relative;

    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 72px;
}

.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--blueprint);
    background: var(--blueprint-soft);
    padding: 6px 12px;
    border-radius: var(--radius);
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2.6rem, 5.2vw, 4.2rem);
    line-height: 0.98;
    margin-bottom: 22px;
}

.hero h1 span {
    display: block;
    color: var(--blueprint);
}

.hero-content > p {
    font-size: 1.08rem;
    color: var(--steel);
    max-width: 460px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--safety);
    color: var(--ink);
}

.btn-primary:hover { background: var(--safety-dark); }

.btn-secondary {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
}

.btn-secondary:hover {
    background: var(--ink);
    color: var(--paper);
}

.hero-trust {
    display: flex;
    gap: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-item strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.trust-item span {
    font-size: 0.82rem;
    color: var(--steel-soft);
}

.hero-visual { position: relative; }

.hero-card {
    position: relative;
    background: var(--ink);
    color: var(--paper);
    padding: 44px 36px;
    border-radius: var(--radius);
    isolation: isolate;
}

/* corner-bracket "technical drawing" marks — signature motif */
.hero-card::before,
.hero-card::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border: 2px solid var(--safety);
}

.hero-card::before { top: -10px; left: -10px; border-right: none; border-bottom: none; }
.hero-card::after { bottom: -10px; right: -10px; border-left: none; border-top: none; }

.hero-card > span {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    color: var(--safety);
}

.hero-card h2 {
    font-size: 2rem;
    margin: 16px 0 14px;
    line-height: 1.02;
}

.hero-card p {
    color: rgba(237, 239, 238, 0.72);
    font-size: 0.95rem;
    max-width: 320px;
}

.hero-card-line {
    margin-top: 28px;
    height: 4px;
    background: repeating-linear-gradient(
        135deg,
        var(--safety) 0px, var(--safety) 8px,
        transparent 8px, transparent 16px
    );
}

/* =========================================================
   ABOUT / QUIÉNES SOMOS
   ========================================================= */
.about { padding: 100px 32px 0; }

.about-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: start;
}

.about-content h2 {
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    margin: 14px 0 24px;
}

.about-content h2 span { color: var(--blueprint); }

.about-intro {
    font-size: 1.08rem;
    color: var(--ink);
    margin-bottom: 16px;
}

.about-content p {
    color: var(--steel);
    margin-bottom: 16px;
}

.about-highlights {
    margin: 28px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-highlight {
    display: flex;
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.about-highlight strong {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--safety-dark);
    padding-top: 3px;
}

.about-highlight h3 {
    font-size: 1.05rem;
    text-transform: none;
    margin-bottom: 4px;
}

.about-highlight p {
    font-size: 0.92rem;
    color: var(--steel-soft);
    margin: 0;
}

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 2px solid var(--safety);
    padding-bottom: 6px;
}

.about-button span { transition: transform 0.2s ease; }
.about-button:hover span { transform: translateX(4px); }

.about-visual { position: relative; }

.about-image-wrapper {
    position: relative;
    background: transparent !important;
    border-radius: var(--radius);
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    isolation: isolate;
}

.about-image-wrapper::before,
.about-image-wrapper::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    border: 2px solid var(--safety);
}

.about-image-wrapper::before { top: -10px; right: -10px; border-left: none; border-bottom: none; }
.about-image-wrapper::after { bottom: -10px; left: -10px; border-right: none; border-top: none; }

.about-image-background {
    display: none;
}
.about-logo {
    position: relative;

    z-index: 2;

    display: block;

   width: 100%;
max-width: 480px;

    height: auto;

    object-fit: contain;

    opacity: 0.92;

    filter: contrast(0.92);

    margin: 0 auto;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* Al pasar el cursor */

.about-logo:hover {
    transform: scale(1.08);

    opacity: 1;
}

.about-image-wrapper:hover .about-logo {
    transform: scale(1.02);

    opacity: 1;
}

.about-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-card-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--safety);
    line-height: 1;
}

.about-card-text {
    font-size: 0.92rem;
    color: rgba(237, 239, 238, 0.7);
}

.about-decoration {
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    z-index: -1;
}

/* =========================================================
   MISIÓN Y VISIÓN
   ========================================================= */
.mission-vision-section {
    max-width: var(--container);
    margin: 100px auto 0;
    padding: 0 32px;
}

.mission-vision-heading {
    max-width: 640px;
    margin-bottom: 44px;
}

.mission-vision-heading h2 {
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    margin: 14px 0 16px;
}

.mission-vision-heading h2 span {
    display: block;
    color: var(--blueprint);
}

.mission-vision-heading p {
    color: var(--steel);
    font-size: 1.02rem;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding-bottom: 100px;
}

.mission-card {
    position: relative;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 36px;
}

.mission-number {
    position: absolute;
    top: 28px;
    right: 32px;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--steel-soft);
}

.mission-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--safety-dark);
    margin-bottom: 20px;
}

.mission-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--safety);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--steel);
    font-size: 0.96rem;
}

/* =========================================================
   PRODUCTOS
   ========================================================= */
.products {
    background: var(--graphite);
    color: var(--paper);
    padding: 100px 32px;
}

.products-container {
    max-width: var(--container);
    margin: 0 auto;
}

.products .section-label { color: var(--safety); }
.products .section-label::before { background: var(--blueprint); }

.products-heading {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(237, 239, 238, 0.14);
}

.products-heading h2 {
    color: var(--paper);
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    margin-top: 14px;
}

.products-heading h2 span { color: var(--safety); }

.products-heading > p {
    color: rgba(237, 239, 238, 0.62);
    font-size: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: rgba(237, 239, 238, 0.14);
}

.product-card {
    position: relative;
    display: block;
    background: var(--ink);
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.product-image {
    position: absolute;
    inset: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img { transform: scale(1.06); }

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20,23,26,0.15) 0%, rgba(20,23,26,0.92) 78%);
}

.product-info {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
}

.product-info > span {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--safety);
    margin-bottom: auto;
}

.product-info h3 {
    color: var(--paper);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.product-info p {
    color: rgba(237, 239, 238, 0.65);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.product-info strong {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--paper);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-info strong {
    opacity: 1;
    transform: translateY(0);
}

.products-secondary {
    margin-top: 64px;
}

.products-secondary-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.products-secondary-heading > span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--safety);
}

.products-secondary-heading > p {
    color: rgba(237, 239, 238, 0.55);
    font-size: 0.92rem;
    max-width: 420px;
}

.products-secondary-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: rgba(237, 239, 238, 0.14);
}

.secondary-product {
    background: var(--ink);
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: 132px;
}

.secondary-product img {
    height: 30px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(1.6);
    opacity: 0.85;
}

.secondary-product div {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.secondary-product span {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--safety-dark);
}

.secondary-product h3 {
    color: var(--paper);
    font-size: 0.92rem;
    text-transform: none;
    font-weight: 600;
}

.products-footer {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(237, 239, 238, 0.14);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.products-footer > div > span {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--safety);
    margin-bottom: 8px;
}

.products-footer > div > p {
    color: rgba(237, 239, 238, 0.65);
}

.products-footer > a {
    flex-shrink: 0;
    background: var(--safety);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 15px 26px;
    border-radius: var(--radius);
    transition: background 0.2s ease;
}

.products-footer > a:hover { background: var(--safety-dark); }

/* =========================================================
   POR QUÉ ELEGIRNOS
   ========================================================= */
.why-us { padding: 100px 32px; }

.why-us-container { max-width: var(--container); margin: 0 auto; }

.why-us-heading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
}

.why-us-heading h2 {
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    margin-top: 14px;
}

.why-us-heading h2 span { color: var(--blueprint); }

.why-us-intro { display: flex; flex-direction: column; gap: 20px; }

.why-us-intro p {
    color: var(--steel);
    font-size: 1.02rem;
}

.why-us-line {
    height: 4px;
    width: 90px;
    background: repeating-linear-gradient(
        135deg,
        var(--ink) 0px, var(--ink) 8px,
        var(--safety) 8px, var(--safety) 16px
    );
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
}

.why-card {
    position: relative;
    background: var(--paper);
    padding: 32px 26px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.why-number {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: var(--steel-soft);
    margin-bottom: 18px;
}

.why-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--ink);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--steel);
    font-size: 0.9rem;
}

.why-card-featured {
    background: var(--ink);
    color: var(--paper);
}

.why-card-featured .why-number { color: var(--safety); }

.why-card-featured .why-icon {
    border-color: var(--safety);
    color: var(--safety);
}

.why-card-featured h3 { color: var(--paper); }

.why-card-featured p { color: rgba(237, 239, 238, 0.68); }

.why-us-bottom {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.why-us-bottom > span {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blueprint);
    margin-bottom: 10px;
}

.why-us-bottom > p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* =========================================================
   CONTACTO
   ========================================================= */
.contact {
    background: var(--blueprint-soft);
    padding: 100px 32px;
}

.contact-container { max-width: var(--container); margin: 0 auto; }

.contact-heading {
    max-width: 560px;
    margin: 0 auto 48px;
    text-align: center;
}

.contact-heading h2 {
    font-size: clamp(2rem, 3.4vw, 2.7rem);
    margin: 14px 0 16px;
}

.contact-heading h2 span { color: var(--blueprint); }

.contact-heading p { color: var(--steel); font-size: 1.02rem; }

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

.contact-item {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

a.contact-item:hover {
    border-color: var(--safety);
    transform: translateY(-3px);
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blueprint);
}

.contact-item strong {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--ink);
    color: var(--paper);
    padding: 72px 32px 0;
}

.footer-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(237, 239, 238, 0.14);
}

/* =========================================
   LOGO DEL FOOTER
========================================= */

.footer-logo {
    display: block;

    width: 165px;
    max-width: 100%;
    height: auto;

    object-fit: contain;

    margin: 0 0 22px 0;

    opacity: 0.78;

    filter:
        saturate(0.55)
        contrast(0.88);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* Al pasar el cursor */

.footer-logo:hover {
    transform: scale(1.08);

    opacity: 1;
}
.footer-logo:hover {
    opacity: 1;

    transform: scale(1.02);
}

.footer-brand > p {
    color: rgba(237, 239, 238, 0.6);
    font-size: 0.92rem;
    margin-bottom: 16px;
}

.footer-email {
    font-family: var(--font-mono);
    font-size: 0.88rem;
    color: var(--safety);
    border-bottom: 1px solid transparent;
}

.footer-email:hover { border-color: var(--safety); }

.footer-title {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(237, 239, 238, 0.45);
    margin-bottom: 20px;
}

.footer-nav, .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a, .footer-contact a, .footer-contact span {
    font-size: 0.92rem;
    color: rgba(237, 239, 238, 0.75);
    transition: color 0.2s ease;
}

.footer-nav a:hover, .footer-contact a:hover { color: var(--safety); }

.footer-cta h3 {
    color: var(--paper);
    font-size: 1.5rem;
    line-height: 1.05;
    margin-bottom: 22px;
}

.footer-cta h3 span { color: var(--safety); }

.footer-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--safety);
    color: var(--ink);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 13px 20px;
    border-radius: var(--radius);
    transition: background 0.2s ease;
}

.footer-button:hover { background: var(--safety-dark); }

.footer-bottom { padding: 24px 0; }

.footer-bottom-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    color: rgba(237, 239, 238, 0.4);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-visual { max-width: 460px; }
    .about-container { grid-template-columns: 1fr; }
    .about-visual { max-width: 460px; }
    .mission-vision-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .products-secondary-grid { grid-template-columns: repeat(3, 1fr); }
    .why-us-heading { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .navbar { padding: 0 20px; height: 68px; }
    .nav-menu {
        position: fixed;
        top: 68px; left: 0; right: 0;
        flex-direction: column;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        padding: 20px;
        gap: 18px;
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .nav-menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-button { display: none; }
    .menu-toggle { display: flex; }

    .hero { padding: 56px 20px 0; }
    .hero-container { padding-bottom: 56px; gap: 40px; }
    .hero-trust { gap: 24px; }

    .about, .why-us, .contact { padding: 64px 20px; }
    .about-container { gap: 40px; }
    .mission-vision-section { margin-top: 64px; padding: 0 20px; }
    .mission-vision-grid { padding-bottom: 64px; }

    .products { padding: 64px 20px; }
    .products-heading { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .products-secondary-grid { grid-template-columns: repeat(2, 1fr); }
    .products-footer { flex-direction: column; align-items: flex-start; }

    .why-us-grid { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }

    .footer-container { grid-template-columns: 1fr; padding-bottom: 40px; }
    .footer-bottom-container { flex-direction: column; gap: 6px; }
}
/* =========================================
   GALERÍA DE PRODUCTOS
========================================= */

.product-card,
.secondary-product {
    border: 0;
    margin: 0;
    padding: 0;

    width: 100%;

    cursor: pointer;

    font: inherit;
    text-align: left;

    appearance: none;
    -webkit-appearance: none;
}


/* =========================================
   LIGHTBOX
========================================= */

.product-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 40px;

    background: rgba(10, 12, 14, 0.97);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.product-lightbox.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* =========================================
   CONTENIDO
========================================= */

.lightbox-content {
    width: min(1100px, 88vw);

    max-height: 90vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 22px;
}


/* =========================================
   IMAGEN
========================================= */

.lightbox-image-wrapper {
    width: 100%;

    max-height: 74vh;

    display: flex;

    align-items: center;
    justify-content: center;
}


.lightbox-image-wrapper img {
    display: block;

    max-width: 100%;
    max-height: 72vh;

    width: auto;
    height: auto;

    object-fit: contain;

    background: #ffffff;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.5);
}


/* =========================================
   INFORMACIÓN
========================================= */

.lightbox-info {
    width: 100%;
    max-width: 900px;

    display: grid;

    grid-template-columns: auto 1fr;

    gap: 16px;

    align-items: start;
}


.lightbox-info > span {
    padding-top: 4px;

    font-family: 'Montserrat', sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #777e84;
}


.lightbox-info h3 {
    margin: 0;

    font-family: 'Montserrat', sans-serif;

    font-size: 28px;

    line-height: 1.1;

    font-weight: 800;

    color: #ffffff;
}


.lightbox-info p {
    margin: 7px 0 0;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    line-height: 1.6;

    color: #aeb4ba;
}


/* =========================================
   CERRAR
========================================= */

.lightbox-close {
    position: absolute;

    top: 24px;
    right: 30px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: transparent;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 32px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
background 0.3s ease,
        color 0.3s ease;
}


.lightbox-close:hover {
    background: #ffffff;

    color: #1f2328;
}


/* =========================================
   FLECHAS
========================================= */

.lightbox-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(17, 17, 17, 0.6);

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 38px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
background 0.3s ease,
        color 0.3s ease;
}


.lightbox-arrow:hover {
    background: #ffffff;

    color: #1f2328;
}


.lightbox-prev {
    left: 28px;
}


.lightbox-next {
    right: 28px;
}


/* =========================================
   CONTADOR
========================================= */

.lightbox-counter {
    position: absolute;

    bottom: 22px;

    left: 50%;

    transform: translateX(-50%);

    font-family: 'Montserrat', sans-serif;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    color: #777e84;
}


/* =========================================
   EFECTO EN TARJETAS
========================================= */

.product-card:hover img,
.secondary-product:hover img {
    transform: scale(1.03);
}


.product-card img,
.secondary-product img {
    transition: transform 0.4s ease;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .product-lightbox {
        padding: 25px 15px 55px;
    }


    .lightbox-content {
        width: 94vw;

        gap: 18px;
    }


    .lightbox-image-wrapper {
        max-height: 68vh;
    }


    .lightbox-image-wrapper img {
        max-height: 65vh;
    }


    .lightbox-info h3 {
        font-size: 21px;
    }


    .lightbox-info p {
        font-size: 11px;
    }


    .lightbox-close {
        top: 14px;
        right: 14px;

        width: 42px;
        height: 42px;

        font-size: 27px;
    }


    .lightbox-arrow {
        width: 42px;
        height: 42px;

        font-size: 28px;
    }


    .lightbox-prev {
        left: 8px;
    }


    .lightbox-next {
        right: 8px;
    }

}


/* =========================================================
   GALERÍA DE PRODUCTOS — FUNCIONAL
========================================================= */

body.gallery-open {
    overflow: hidden;
}

.product-card,
.secondary-product {
    border: 0;
    margin: 0;
    font: inherit;
    text-align: left;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.product-card:focus-visible,
.secondary-product:focus-visible,
.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible {
    outline: 2px solid var(--safety);
    outline-offset: 3px;
}

.secondary-product {
    width: 100%;
}

.secondary-product img {
    transition:
        transform 0.4s ease,
        opacity 0.3s ease,
        filter 0.3s ease;
}

.secondary-product:hover img {
    transform: scale(1.06);
    opacity: 1;
}


/* OVERLAY */

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 70px 80px 55px;

    background: rgba(10, 12, 14, 0.97);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.product-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* CONTENIDO */

.lightbox-content {
    width: min(1100px, 86vw);
    max-height: 90vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 20px;
}


/* IMAGEN */

.lightbox-image-wrapper {
    width: 100%;
    max-height: 70vh;

    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrapper img {
    display: block;

    max-width: 100%;
    max-height: 68vh;

    width: auto;
    height: auto;

    object-fit: contain;

    background: #ffffff;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.55);
}


/* INFORMACIÓN */

.lightbox-info {
    width: min(900px, 100%);

    display: grid;
    grid-template-columns: auto 1fr;

    gap: 16px;
    align-items: start;
}

.lightbox-info > span {
    padding-top: 4px;

    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;

    letter-spacing: 0.18em;

    color: var(--safety);
}

.lightbox-info h3 {
    margin: 0;

    font-family: var(--font-display);
    font-size: 1.8rem;
    line-height: 1.05;
    font-weight: 700;

    color: var(--paper);
}

.lightbox-info p {
    margin: 7px 0 0;

    font-family: var(--font-body);
    font-size: 0.88rem;
    line-height: 1.55;

    color: rgba(237, 239, 238, 0.68);
}


/* CERRAR */

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 28px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(20, 23, 26, 0.7);

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 30px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.lightbox-close:hover {
    background: #ffffff;
    color: var(--ink);
}


/* FLECHAS */

.lightbox-arrow {
    position: absolute;
    top: 50%;

    width: 54px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(20, 23, 26, 0.75);

    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 38px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.lightbox-arrow:hover {
    background: #ffffff;
    color: var(--ink);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}


/* CONTADOR */

.lightbox-counter {
    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;

    letter-spacing: 0.16em;

    color: var(--steel-soft);
}


/* MOBILE */

@media (max-width: 700px) {

    .product-lightbox {
        padding: 70px 14px 55px;
    }

    .lightbox-content {
        width: 94vw;
        gap: 16px;
    }

    .lightbox-image-wrapper {
        max-height: 66vh;
    }

    .lightbox-image-wrapper img {
        max-width: 94vw;
        max-height: 62vh;
    }

    .lightbox-info {
        grid-template-columns: auto 1fr;
        gap: 10px;
    }

    .lightbox-info h3 {
        font-size: 1.35rem;
    }

    .lightbox-info p {
        font-size: 0.78rem;
    }

    .lightbox-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 27px;
    }

    .lightbox-arrow {
        width: 42px;
        height: 42px;
        font-size: 29px;
    }

    .lightbox-prev {
        left: 7px;
    }

    .lightbox-next {
        right: 7px;
    }

}
/* =========================================================
   GALERÍA UNIFICADA — 18 PRODUCTOS
========================================================= */


/* CONTENEDOR DE LAS 18 TARJETAS */

.products-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;

    width: 100%;
}


/* TODAS LAS TARJETAS */

.products-grid .product-card {
    position: relative;

    display: flex;

    width: 100%;

    min-width: 0;

    min-height: 380px;

    padding: 0;

    overflow: hidden;

    border: 0;

    border-radius: 0;

    background: #1f2328;

    cursor: pointer;

    text-align: left;

    appearance: none;

    -webkit-appearance: none;

    font: inherit;

    isolation: isolate;
}


/* IMAGEN */

.products-grid .product-card .product-image {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    overflow: hidden;

    z-index: 0;
}


/* TODAS LAS IMÁGENES TIENEN EL MISMO AJUSTE */

.products-grid .product-card .product-image img {
    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;

    margin: 0;

    padding: 0;

    transform: scale(1);

    transition:
        transform 0.5s ease,
        opacity 0.35s ease;
}


/* OVERLAY */

.products-grid .product-card .product-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            to top,
            rgba(17, 17, 17, 0.98) 0%,
            rgba(17, 17, 17, 0.65) 38%,
            rgba(17, 17, 17, 0.08) 75%,
            rgba(17, 17, 17, 0.02) 100%
        );

    pointer-events: none;
}


/* INFORMACIÓN */

.products-grid .product-card .product-info {
    position: relative;

    z-index: 2;

    align-self: flex-end;

    width: 100%;

    padding: 30px 28px 28px;

    color: #ffffff;

    pointer-events: none;
}


/* NÚMERO */

.products-grid .product-card .product-info > span {
    display: block;

    margin-bottom: 8px;

    font-family: var(--font-mono);

    font-size: 0.7rem;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.16em;

    color: var(--safety);
}


/* TÍTULO */

.products-grid .product-card .product-info h3 {
    margin: 0;

    font-family: var(--font-display);

    font-size: 1.45rem;

    line-height: 1.08;

    font-weight: 700;

    color: #ffffff;
}


/* DESCRIPCIÓN */

.products-grid .product-card .product-info p {
    margin: 10px 0 0;

    max-width: 90%;

    font-family: var(--font-body);

    font-size: 0.8rem;

    line-height: 1.5;

    color: rgba(255, 255, 255, 0.72);
}


/* TEXTO DE ACCIÓN */

.products-grid .product-card .product-info strong {
    display: inline-block;

    margin-top: 16px;

    font-family: var(--font-mono);

    font-size: 0.68rem;

    font-weight: 600;

    line-height: 1;

    letter-spacing: 0.12em;

    color: #ffffff;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* HOVER */

.products-grid .product-card:hover .product-image img {
    transform: scale(1.07);
}


.products-grid .product-card:hover .product-info strong {
    color: var(--safety);

    transform: translateX(4px);
}


/* FOCUS PARA TECLADO */

.products-grid .product-card:focus-visible {
    outline: 2px solid var(--safety);

    outline-offset: 4px;
}


/* =========================================================
   LIGHTBOX
========================================================= */

body.gallery-open {
    overflow: hidden;
}


.product-lightbox {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 70px 90px 55px;

    background: rgba(10, 12, 14, 0.97);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}


.product-lightbox.active {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* CONTENIDO */

.lightbox-content {
    width: min(1100px, 86vw);

    max-height: 90vh;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 20px;
}


/* IMAGEN AMPLIADA */

.lightbox-image-wrapper {
    width: 100%;

    max-height: 70vh;

    display: flex;

    align-items: center;

    justify-content: center;
}


.lightbox-image-wrapper img {
    display: block;

    max-width: 100%;

    max-height: 68vh;

    width: auto;

    height: auto;

    object-fit: contain;

    background: #ffffff;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.55);
}


/* INFORMACIÓN */

.lightbox-info {
    width: min(900px, 100%);

    display: grid;

    grid-template-columns: auto 1fr;

    gap: 16px;

    align-items: start;
}


.lightbox-info > span {
    padding-top: 4px;

    font-family: var(--font-mono);

    font-size: 0.7rem;

    font-weight: 600;

    letter-spacing: 0.16em;

    color: var(--safety);
}


.lightbox-info h3 {
    margin: 0;

    font-family: var(--font-display);

    font-size: 1.8rem;

    line-height: 1.05;

    font-weight: 700;

    color: #ffffff;
}


.lightbox-info p {
    margin: 8px 0 0;

    font-family: var(--font-body);

    font-size: 0.85rem;

    line-height: 1.55;

    color: rgba(255, 255, 255, 0.68);
}


/* BOTÓN CERRAR */

.lightbox-close {
    position: absolute;

    top: 22px;

    right: 28px;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(17, 17, 17, 0.65);

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 30px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.lightbox-close:hover {
    background: #ffffff;

    color: #1f2328;
}


/* FLECHAS */

.lightbox-arrow {
    position: absolute;

    top: 50%;

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    transform: translateY(-50%);

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(17, 17, 17, 0.65);

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 38px;

    font-weight: 300;

    line-height: 1;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}


.lightbox-arrow:hover {
    background: #ffffff;

    color: #1f2328;
}


.lightbox-prev {
    left: 25px;
}


.lightbox-next {
    right: 25px;
}


/* CONTADOR */

.lightbox-counter {
    position: absolute;

    left: 50%;

    bottom: 18px;

    transform: translateX(-50%);

    font-family: var(--font-mono);

    font-size: 0.68rem;

    font-weight: 600;

    letter-spacing: 0.16em;

    color: var(--steel-soft);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .products-grid .product-card {
        min-height: 350px;
    }

}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 650px) {

    .products-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .products-grid .product-card {
        min-height: 340px;
    }


    .products-grid .product-card .product-info {
        padding: 25px 22px;
    }


    .products-grid .product-card .product-info h3 {
        font-size: 1.3rem;
    }


    .products-grid .product-card .product-info p {
        font-size: 0.78rem;
    }


    /* LIGHTBOX EN CELULAR */

    .product-lightbox {
        padding:
            70px
            12px
            55px;
    }


    .lightbox-content {
        width: 94vw;

        gap: 16px;
    }


    .lightbox-image-wrapper {
        max-height: 65vh;
    }


    .lightbox-image-wrapper img {
        max-width: 94vw;

        max-height: 62vh;
    }


    .lightbox-info h3 {
        font-size: 1.35rem;
    }


    .lightbox-info p {
        font-size: 0.76rem;
    }


    .lightbox-close {
        top: 14px;

        right: 14px;

        width: 42px;

        height: 42px;

        font-size: 27px;
    }


    .lightbox-arrow {
        width: 42px;

        height: 42px;

        font-size: 29px;
    }


    .lightbox-prev {
        left: 7px;
    }


    .lightbox-next {
        right: 7px;
    }

}
/* =========================================
   REDES SOCIALES — FOOTER
========================================= */

.footer-social {

    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 22px;

}


/* ENLACE */

.social-link {

    display: flex;

    align-items: center;

    gap: 11px;

    width: fit-content;

    color: rgba(237, 239, 238, 0.68);

    text-decoration: none;

    font-family: var(--font-body);

    font-size: 0.76rem;

    line-height: 1.3;

    transition:
        color 0.25s ease,
        transform 0.25s ease;

}


/* ICONO */

.social-icon {

    width: 28px;

    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.20);

    background: transparent;

    color: #ffffff;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;

}


/* SVG */

.social-icon svg {

    width: 15px;

    height: 15px;

    display: block;

    fill: currentColor;

}


/* INSTAGRAM */

.social-icon svg rect {

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

}


.social-icon svg circle {

    fill: none;

    stroke: currentColor;

    stroke-width: 2;

}


.social-icon svg .instagram-dot {

    fill: currentColor;

    stroke: none;

}


/* HOVER */

.social-link:hover {

    color: #ffffff;

    transform: translateX(4px);

}


.social-link:hover .social-icon {

    background: #ffffff;

    border-color: #ffffff;

    color: #1f2328;

    transform: scale(1.08);

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 700px) {

    .footer-social {

        margin-top: 20px;

        gap: 10px;

    }


    .social-link {

        font-size: 0.72rem;

    }


    .social-icon {

        width: 27px;

        height: 27px;

    }

}
/* =========================================
   CONTACTO + REDES SOCIALES
========================================= */

.footer-location {
    display: flex;

    flex-direction: column;

    width: fit-content;

    color: inherit;

    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-location:hover {
    color: #ffffff;

    transform: translateX(3px);
}


/* REDES SOCIALES */

.footer-contact-social {

    display: flex;

    flex-direction: column;

    gap: 11px;

    margin-top: 18px;

    padding-top: 17px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);

}


.footer-social-contact {

    display: flex;

    align-items: center;

    gap: 10px;

    width: fit-content;

    color: rgba(237, 239, 238, 0.68);

    text-decoration: none;

    font-family: var(--font-body);

    font-size: 0.72rem;

    line-height: 1.3;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}


/* ICONOS */

.footer-social-icon {

    width: 26px;

    height: 26px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.20);

    color: #ffffff;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}


.footer-social-icon svg {

    width: 14px;

    height: 14px;

    display: block;

    fill: currentColor;
}


/* INSTAGRAM */

.footer-social-icon svg rect {

    fill: none;

    stroke: currentColor;

    stroke-width: 2;
}


.footer-social-icon svg circle {

    fill: none;

    stroke: currentColor;

    stroke-width: 2;
}


.footer-social-icon svg .instagram-dot {

    fill: currentColor;

    stroke: none;
}


/* HOVER */

.footer-social-contact:hover {

    color: #ffffff;

    transform: translateX(4px);
}


.footer-social-contact:hover .footer-social-icon {

    background: #ffffff;

    border-color: #ffffff;

    color: #1f2328;

    transform: scale(1.08);
}

/* =========================================================
   REFINAMIENTO VISUAL CORPORATIVO
   ========================================================= */
:root {
    --ink: #1F2328;
    --graphite: #111111;
    --steel: #7A8086;
    --steel-soft: #7A8086;
    --paper: #EDEFEF;
    --paper-dim: #D5D8DA;
    --panel: #FFFFFF;
    --line: rgba(31, 35, 40, .14);
    --line-soft: rgba(31, 35, 40, .07);
    --safety: #F2C94C;
    --safety-dark: #F2C94C;
    --blueprint: #1F2328;
    --blueprint-soft: #D5D8DA;
    --radius: 12px;
}

body {
    background: var(--paper);
    color: var(--ink);
}

.site-header {
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 1px 0 rgba(16, 38, 50, .08);
}

.navbar { height: 82px; }
.brand img { height: 68px; }
.nav-menu { gap: clamp(18px, 2.2vw, 34px); }
.nav-menu a { color: #1F2328; font-weight: 600; }
.nav-button {
    background: var(--blueprint);
    border-radius: 7px;
    box-shadow: 0 8px 18px rgba(17, 17, 17, .18);
}
.nav-button:hover { background: var(--ink); }

.hero {
    min-height: 640px;
    padding: 104px 32px 0;
    background: #1F2328;
    box-shadow: none;
}
.hero-background::after {
    background: linear-gradient(90deg, rgba(17, 17, 17, .28) 0%, rgba(17, 17, 17, .16) 48%, rgba(17, 17, 17, .10) 100%);
}
.hero-container { z-index: 2; gap: clamp(36px, 6vw, 86px); }
.hero-eyebrow {
    color: #FFFFFF;
    background: rgba(242, 201, 76, .16);
    border: 1px solid rgba(242, 201, 76, .4);
    border-radius: 999px;
}
.hero h1 { color: #FFFFFF; font-size: clamp(3.15rem, 5.6vw, 5.15rem); letter-spacing: .005em; }
.hero h1 span { color: var(--safety); }
.hero-content > p { color: rgba(255,255,255,.8); font-size: 1.08rem; }
.btn { border-radius: 7px; }
.btn-primary { box-shadow: 0 10px 24px rgba(0,0,0,.2); }
.btn-secondary { color: #FFFFFF; border-color: rgba(255,255,255,.58); }
.btn-secondary:hover { background: #FFFFFF; color: var(--ink); }
.hero-trust { border-top-color: rgba(255,255,255,.2); }
.trust-item strong { color: #FFFFFF; }
.trust-item span { color: rgba(255,255,255,.62); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-visual .about-image-wrapper {
    width: min(100%, 430px);
    min-height: 370px;
    padding: 48px;
    display: flex;
    justify-content: center;
    background: transparent !important;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.hero-visual .about-image-wrapper::before,
.hero-visual .about-image-wrapper::after { display: none; }
.hero-visual .about-logo { max-width: 325px; opacity: 1; filter: none; }
.hero-visual .about-card {
    position: absolute;
    right: -24px;
    bottom: 30px;
    width: 185px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    text-shadow: 0 1px 3px rgba(17,17,17,.9);
}
.hero-visual .about-card-number { color: var(--safety); font-size: 2.3rem; }
.hero-visual .about-card-text { font-size: .78rem; line-height: 1.35; }

.about, .products, .why-us, .contact { padding-left: 32px; padding-right: 32px; }
.about { padding-top: 118px; }
.about-container { gap: clamp(42px, 6vw, 86px); align-items: center; }
.about-content h2, .products-heading h2, .why-us-heading h2, .contact-heading h2 {
    letter-spacing: .012em;
    line-height: 1.02;
}
.about-content h2 span, .products-heading h2 span, .why-us-heading h2 span, .contact-heading h2 span { color: var(--blueprint); }
.about-intro { font-size: 1.16rem; line-height: 1.7; }
.about-highlight { padding: 19px 0; }
.about-highlight strong { color: var(--blueprint); }
.about-visual { border-radius: 16px; overflow: hidden; box-shadow: 0 22px 48px rgba(17,17,17,.12); }
.about-image-wrapper { padding: 0; display: block; background: #FFFFFF !important; }
.about-image-wrapper::before, .about-image-wrapper::after { display: none; }
.about-products-image { width: 100%; aspect-ratio: 1.1; object-fit: cover; }
.about-decoration { display: none; }

/* Imagen de productos: tratamiento técnico y dinámico */
.about-visual {
    overflow: visible;
    box-shadow: none;
}

.about .about-image-wrapper {
    position: relative;
    overflow: visible;
    isolation: isolate;
    border-radius: 14px;
    background: transparent !important;
}

.about .about-image-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    inset: -13px 13px 13px -13px;
    border: 2px solid #F2C94C;
    border-radius: 14px;
    transition: inset .35s ease, border-color .35s ease;
}

.about .about-image-wrapper::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: -10px;
    width: 74px;
    height: 5px;
    background: #F2C94C;
    border-radius: 99px;
    transition: width .35s ease;
}

.about-products-image {
    position: relative;
    z-index: 1;
    border: 1px solid #D5D8DA;
    border-radius: 14px;
    box-shadow: 0 18px 36px rgba(17,17,17,.16);
    transition: transform .45s ease, box-shadow .45s ease;
}

.about .about-image-wrapper:hover::before {
    inset: -18px 18px 18px -18px;
    border-color: #1F2328;
}

.about .about-image-wrapper:hover::after { width: 128px; }

.about .about-image-wrapper:hover .about-products-image {
    transform: translateY(-7px) scale(1.015);
    box-shadow: 0 28px 48px rgba(17,17,17,.22);
}

@media (prefers-reduced-motion: reduce) {
    .about .about-image-wrapper::before,
    .about .about-image-wrapper::after,
    .about-products-image { transition: none; }
}

.mission-vision-section { margin-top: 108px; padding: 92px 32px; background: var(--ink); }
.mission-vision-container { max-width: var(--container); margin: 0 auto; }
.mission-vision-heading { max-width: 720px; }
.mission-vision-heading h2 { color: #FFFFFF; font-size: clamp(2.35rem, 4vw, 3.5rem); margin: 15px 0; }
.mission-vision-heading h2 span { color: var(--safety); }
.mission-vision-heading p { color: rgba(255,255,255,.72); max-width: 650px; }
.mission-vision-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 42px; }
.mission-card { position: relative; padding: 36px; background: rgba(255,255,255,.97); border-radius: 12px; overflow: hidden; }
.mission-number { position: absolute; top: 20px; right: 22px; color: rgba(16,38,50,.22); font-family: var(--font-mono); }
.mission-label { font-family: var(--font-mono); font-size: .72rem; color: var(--blueprint); letter-spacing: .12em; text-transform: uppercase; }
.mission-icon { width: 44px; height: 44px; display: grid; place-items: center; margin: 22px 0 14px; color: var(--ink); background: var(--safety); border-radius: 8px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }
.mission-card h3 { font-size: 1.55rem; margin-bottom: 8px; }
.mission-card p { color: var(--steel); }

.products { padding-top: 112px; padding-bottom: 112px; background: #FFFFFF; }
.products-heading, .why-us-heading { gap: 46px; align-items: end; }
.products-heading { border-bottom-color: var(--line); }
.products-heading h2 { color: var(--ink); }
.products-heading h2 span { color: var(--blueprint); }
.products-heading > p, .why-us-intro p { color: var(--steel); line-height: 1.7; }
.products-grid { gap: 20px; }
.product-card { 
    border: 1px solid rgba(31,35,40,.1);
    border-radius: 12px;
    background: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(17,17,17,.05);
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 30px rgba(17,17,17,.14); }
.product-card .product-image { background: #D5D8DA; }
.product-card .product-info { padding: 22px; }
.product-info span { color: var(--blueprint); }
.product-info h3 { font-size: 1.45rem; }
.product-info p { color: var(--steel); }
.product-info strong { color: var(--blueprint); }
.products-footer { border-radius: 12px; background: var(--ink); padding: 30px 36px; }
.products-footer span { color: var(--safety); }
.products-footer p { color: rgba(255,255,255,.76); }
.products-footer a { border-radius: 7px; background: var(--safety); color: var(--ink); }

.why-us { padding-top: 112px; padding-bottom: 112px; background: var(--paper); }
.why-us-grid { gap: 18px; }
.why-card { border-radius: 12px; border: 1px solid rgba(31,35,40,.1); background: #FFFFFF; box-shadow: 0 7px 16px rgba(17,17,17,.04); }
.why-card:hover { transform: translateY(-5px); border-color: rgba(242,201,76,.85); box-shadow: 0 18px 30px rgba(17,17,17,.1); }
.why-number { color: var(--blueprint); }
.why-icon { background: var(--blueprint-soft); color: var(--blueprint); border-radius: 8px; }
.why-card h3 { font-size: 1.33rem; }
.why-card p { color: var(--steel); }
.why-card-featured { background: var(--blueprint); }
.why-card-featured h3, .why-card-featured p { color: #FFFFFF; }
.why-card-featured .why-number { color: rgba(255,255,255,.55); }
.why-card-featured .why-icon { color: var(--ink); background: var(--safety); }

.contact { padding-top: 104px; padding-bottom: 104px; background: var(--ink); }
.contact-heading h2 { color: #FFFFFF; }
.contact-heading h2 span { color: var(--safety); }
.contact-heading > p { color: rgba(255,255,255,.72); }
.contact-item { border-radius: 10px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); }
.contact-item:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.contact-item .contact-label { color: rgba(255,255,255,.58); }
.contact-item strong { color: #FFFFFF; }
.footer { background: #111111; }

@media (max-width: 760px) {
    .navbar { height: 72px; padding: 0 20px; }
    .brand img { height: 58px; }
    .hero, .about, .products, .why-us, .contact { padding-left: 20px; padding-right: 20px; }
    .hero { min-height: auto; padding-top: 72px; }
    .hero-container { grid-template-columns: 1fr; padding-bottom: 64px; }
    .hero h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
    .hero-visual { display: none; }
    .hero-actions { margin-bottom: 38px; }
    .hero-trust { gap: 20px; }
    .about { padding-top: 76px; }
    .about-container, .mission-vision-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .mission-vision-section { margin-top: 76px; padding: 70px 20px; }
    .mission-card { padding: 29px 25px; }
    .products, .why-us { padding-top: 76px; padding-bottom: 76px; }
    .products-footer { padding: 26px 24px; }
    .contact { padding-top: 72px; padding-bottom: 72px; }
}

/* Header integrado con la imagen de portada */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(31, 35, 40, .88);
    border-bottom: 1px solid rgba(213, 216, 218, .18);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.brand,
.brand img {
    background: transparent;
}

.brand img {
    filter: none;
}

.site-header .nav-menu a {
    color: #FFFFFF;
    transition: color .25s ease, transform .25s ease;
}

.site-header .nav-menu a:hover {
    color: #F2C94C;
    transform: translateY(-2px);
}

.site-header .nav-menu a::after {
    right: 0;
    background: #F2C94C;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.site-header .nav-menu a:hover::after { transform: scaleX(1); }

.site-header .nav-button {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,.58);
    box-shadow: none;
}

.site-header .nav-button:hover {
    background: #F2C94C;
    border-color: #F2C94C;
    color: #1F2328;
}

.site-header .menu-toggle span { background: #FFFFFF; }

@media (max-width: 760px) {
    .hero { padding-top: 128px; }
    .site-header .nav-menu { background: #EDEFEF; }
    .site-header .nav-menu a { color: #1F2328; }
    .site-header .nav-menu a:hover { color: #111111; }
}

/* =========================================================
   AJUSTE RESPONSIVO FINAL
   ========================================================= */
html, body { max-width: 100%; overflow-x: clip; }

section[id] { scroll-margin-top: 104px; }

.navbar,
.hero-container,
.about-container,
.products-container,
.why-us-container,
.contact-container,
.mission-vision-container,
.footer-container,
.footer-bottom-container {
    width: min(100%, var(--container));
}

.navbar { padding-inline: clamp(20px, 4vw, 56px); }

.hero {
    min-height: clamp(610px, 76svh, 800px);
    padding-inline: clamp(20px, 4vw, 56px);
    padding-top: clamp(132px, 12vw, 176px);
}

.hero-container { padding-bottom: clamp(58px, 7vw, 100px); }
.hero-content { min-width: 0; }
.hero h1 { color: #1F2328; }
.hero h1 span {
    width: fit-content;
    margin-top: .12em;
    padding: .03em .14em .08em;
    color: #111111;
    background: #F2C94C;
}
.hero-content > p { color: #1F2328; }
.hero-eyebrow { color: #1F2328; background: rgba(255,255,255,.72); border-color: rgba(31,35,40,.2); }
.btn-secondary { color: #1F2328; border-color: #1F2328; }
.btn-secondary:hover { background: #1F2328; color: #FFFFFF; }
.hero-trust { border-top-color: rgba(31,35,40,.22); }
.trust-item strong { color: #111111; }
.trust-item span { color: #1F2328; font-weight: 500; }

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr));
    gap: clamp(14px, 1.5vw, 22px);
    background: transparent;
}

.why-us-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 235px), 1fr));
    gap: clamp(14px, 1.5vw, 20px);
    background: transparent;
    border: 0;
}

.mission-vision-grid,
.contact-grid,
.footer-container {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.product-card,
.why-card,
.mission-card,
.contact-item { min-width: 0; }

@media (max-width: 980px) {
    .navbar { height: 76px; }
    .nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 8px;
        padding: 18px clamp(20px, 5vw, 40px) 22px;
        background: #EDEFEF;
        border-bottom: 1px solid #D5D8DA;
        box-shadow: 0 14px 28px rgba(17,17,17,.12);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity .25s ease, transform .25s ease;
    }
    .nav-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .site-header .nav-menu a { display: block; padding: 10px 0; color: #1F2328; }
    .site-header .nav-menu a:hover { color: #111111; transform: translateX(4px); }
    .nav-button { display: none; }
    .menu-toggle { display: flex; }
    .hero-container { grid-template-columns: 1fr; gap: 36px; }
    .hero-visual { max-width: 420px; }
    .hero-visual .about-image-wrapper { min-height: 290px; padding: 28px; }
    .hero-visual .about-logo { max-width: 255px; }
    .hero-visual .about-card { right: 0; bottom: 8px; }
}

@media (max-width: 760px) {
    section[id] { scroll-margin-top: 86px; }
    .navbar { height: 72px; padding-inline: 20px; }
    .brand img { height: 54px; }
    .nav-menu { top: 72px; }
    .hero {
        min-height: 0;
        padding-top: 124px;
        padding-inline: 20px;
    }
    .hero-container { grid-template-columns: 1fr; padding-bottom: 62px; }
    .hero-visual { display: none; }
    .hero h1 { font-size: clamp(2.65rem, 13vw, 3.8rem); }
    .hero-actions .btn { flex: 1 1 210px; }
    .hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .trust-item span { font-size: .74rem; }
    .about, .products, .why-us, .contact { padding-inline: 20px; }
    .about-container { gap: 46px; }
    .about .about-image-wrapper::before { inset: -9px 9px 9px -9px; }
    .about .about-image-wrapper:hover::before { inset: -9px 9px 9px -9px; }
    .products-grid, .why-us-grid, .mission-vision-grid, .contact-grid, .footer-container { grid-template-columns: 1fr; }
    .product-card { min-height: 320px; }
    .products-footer { width: 100%; }
    .contact-item { padding: 22px 20px; }
}

@media (max-width: 390px) {
    .hero-trust { grid-template-columns: 1fr; }
    .hero-actions .btn { flex-basis: 100%; }
    .hero h1 { font-size: 2.5rem; }
}

/* Header de escritorio: marca, navegación y cotización claramente distribuidas */
@media (min-width: 981px) {
    .navbar {
        position: relative;
        width: 100%;
        max-width: none;
        padding-inline: clamp(24px, 3vw, 56px);
    }

    .brand { flex: 0 0 auto; }

    .nav-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .nav-button { margin-left: auto; }
}

@media (min-width: 981px) {
    .hero-visual .about-image-wrapper {
        min-height: 440px;
        padding: 12px 24px 34px;
        justify-content: flex-start;
    }

    .hero-visual .about-logo {
        max-width: 410px;
        transform: translateY(108px);
        transition: transform .35s ease;
    }

    .hero-visual .about-image-wrapper:hover .about-logo {
        transform: translateY(100px) scale(1.03);
    }
}

/* Interacciones y detalles de confianza */
.site-header .nav-menu a.is-active {
    color: #F2C94C;
}

.site-header .nav-menu a.is-active::after {
    right: 0;
    transform: scaleX(1);
}

.hero-trust {
    width: fit-content;
    max-width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,.54);
    border-radius: 10px;
}

.product-card {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.product-card:hover {
    border-color: #F2C94C;
}

.contact-item {
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 4px;
    color: #111111;
    background: #F2C94C;
    border-radius: 7px;
    font-family: var(--font-mono);
    font-size: .95rem;
    font-weight: 700;
}

.contact-item:nth-child(1)::before,
.contact-item:nth-child(2)::before { content: "01"; }
.contact-item:nth-child(3)::before { content: "@"; }
.contact-item:nth-child(4)::before { content: "⌖"; }

.footer { position: relative; }
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #F2C94C;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s ease var(--reveal-delay, 0ms);
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 760px) {
    .hero-trust { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal.is-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
