

:root {
    --orange: #ED3D00;
    --orange-light: #F56A00;
    --orange-dark: #C93200;

    --black: #080808;
    --black-soft: #111111;

    --white: #ffffff;
    --gray: #a7a7a7;

    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'Inter', sans-serif;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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


/* =========================================
   HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 88px;

    z-index: 1000;

    background: rgba(8, 8, 8, 0.94);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* =========================================
   HEADER CONTAINER
========================================= */

.header-container {
    width: min(90%, calc(100% - 40px));

    height: 100%;

    margin: 0 auto;

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


/* =========================================
   LOGO
========================================= */

.brand {
    display: flex;
    align-items: center;

    text-decoration: none;
}

.brand-logo {
    width: 175px;
    height: auto;

    display: block;
}


/* =========================================
   NAVIGATION
========================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 36px;
}

.nav-link {
    position: relative;

    color: #ffffff;

    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.25s ease;
}


/* Línea naranja debajo */

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: width 0.25s ease;
}

.nav-link:hover {
    color: var(--orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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


/* =========================================
   CTA
========================================= */

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 20px;

    background: var(--orange);

    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    text-transform: uppercase;
    letter-spacing: 0.4px;

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


/* Detalle geométrico */

.header-cta::before {
    content: "";

    position: absolute;
    display: none;
}

.header-cta span {
    font-size: 18px;

    transition: transform 0.25s ease;
}

.header-cta:hover {
    background: var(--orange-light);

    transform: translateY(-2px);

    box-shadow: 0 8px 25px rgba(237, 61, 0, 0.25);
}

.header-cta:hover span {
    transform: translateX(4px);
}


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

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;

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

    gap: 5px;
}

.menu-toggle span {
    width: 23px;
    height: 2px;

    background: var(--white);

    transition: 0.3s ease;
}


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

@media (max-width: 900px) {

    .header-container {
        width: min(100% - 30px, 700px);
    }

    .main-nav {
        gap: 22px;
    }

    .brand-logo {
        width: 155px;
    }

    .header-cta {
        padding: 11px 15px;
    }
}


@media (max-width: 700px) {

    .site-header {
        height: 76px;
    }

    .brand-logo {
        width: 145px;
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;

        top: 76px;
        left: 0;

        width: 100%;

        padding: 25px 25px 30px;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        gap: 22px;

        background: var(--black-soft);

        border-bottom: 1px solid rgba(255,255,255,0.08);

        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;

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

    .main-nav.open {
        transform: translateY(0);

        opacity: 1;

        visibility: visible;
    }

    .nav-link {
        font-size: 15px;
    }

    /* CTA móvil */

    .main-nav::after {
        content: "COTIZA AHORA →";

        width: 90%;

        padding: 14px 18px;

        margin-top: 5px;

        background: var(--orange);

        color: white;

        font-size: 13px;
        font-weight: 700;

        text-align: center;

        cursor: pointer;
    }

}


/* =========================================
   HAMBURGER ANIMATION
========================================= */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


















/* =========================================================
   GRAN FERRETERA EL BRILLANTE
   HERO
   ========================================================= */

.gfe-hero {
    --gfe-orange: #ed3d00;
    --gfe-orange-dark: #c93200;
    --gfe-black: #0b0b0b;
    --gfe-gray-900: #1a1a1a;
    --gfe-gray-700: #555555;
    --gfe-gray-500: #858585;
    --gfe-gray-300: #dddddd;
    --gfe-gray-100: #f4f4f2;
    --gfe-white: #ffffff;

    position: relative;
    width: 100%;
    min-height: calc(100vh - 88px);

    margin-top: 88px;

    display: flex;
    align-items: center;

   background:
    radial-gradient(
        circle at 82% 48%,
        rgba(237, 61, 0, 0.08) 0%,
        rgba(237, 61, 0, 0.035) 22%,
        transparent 48%
    ),
    linear-gradient(
        135deg,
        #f7f7f5 0%,
        #eeeeec 100%
    );
    color: var(--gfe-black);

    overflow: hidden;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.gfe-hero__container {
    position: relative;
    z-index: 2;

    width: min(1400px, calc(100% - 50px));

    min-height: calc(100vh - 133px);

    margin: 0 auto;

    padding: 75px 0 90px;

    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);

    align-items: center;

    gap: 70px;
}


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

.gfe-hero__content {
    width: 100%;
    max-width: 700px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.gfe-hero__eyebrow {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--gfe-orange);

    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.gfe-hero__eyebrow-line {
    display: block;

    width: 34px;
    height: 2px;

    flex-shrink: 0;

    background: var(--gfe-orange);
}


/* =========================================================
   TITULO
   ========================================================= */

.gfe-hero__title {
    margin: 0;

    color: var(--gfe-black);

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

    font-size: clamp(62px, 7vw, 102px);

    font-weight: 800;

    line-height: 0.86;

    letter-spacing: -2px;

    text-transform: uppercase;
}

.gfe-hero__title span {
    display: block;

    color: var(--gfe-orange);
}


/* =========================================================
   HEADLINE
   ========================================================= */

.gfe-hero__headline {
    margin-top: 34px;

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

    font-size: clamp(28px, 3vw, 40px);

    font-weight: 600;

    line-height: 0.95;

    text-transform: uppercase;
}

.gfe-hero__headline p {
    margin: 0;

    color: var(--gfe-gray-900);
}

.gfe-hero__headline strong {
    display: block;

    margin-top: 5px;

    color: var(--gfe-orange);

    font-weight: 800;
}


/* =========================================================
   DESCRIPCION
   ========================================================= */

.gfe-hero__description {
    width: 100%;
    max-width: 610px;

    margin: 23px 0 0;

    color: var(--gfe-gray-700);

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

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   BOTONES
   ========================================================= */

.gfe-hero__actions {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 32px;
}

.gfe-hero__button {
    min-height: 52px;

    padding: 0 22px;

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

    gap: 13px;

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

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.6px;

    text-decoration: none;
    text-transform: uppercase;

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


/* Principal */

.gfe-hero__button--primary {
    background: var(--gfe-orange);

    border: 1px solid var(--gfe-orange);

    color: var(--gfe-white);
}

.gfe-hero__button-arrow {
    font-size: 19px;
    line-height: 1;

    transition: transform 0.25s ease;
}

.gfe-hero__button--primary:hover {
    background: var(--gfe-orange-dark);

    border-color: var(--gfe-orange-dark);

    transform: translateY(-2px);
}

.gfe-hero__button--primary:hover .gfe-hero__button-arrow {
    transform: translateX(4px);
}


/* Secundario */

.gfe-hero__button--secondary {
    background: transparent;

    border: 1px solid #c8c8c8;

    color: var(--gfe-black);
}

.gfe-hero__button--secondary:hover {
    background: var(--gfe-black);

    border-color: var(--gfe-black);

    color: var(--gfe-white);

    transform: translateY(-2px);
}


/* =========================================================
   BLOQUE VISUAL
   ========================================================= */

.gfe-hero__visual {
    position: relative;

    width: 100%;
    min-height: 510px;

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


/* =========================================================
   DIAMANTES
   Inspirados en el lenguaje geométrico del logo
   ========================================================= */

.gfe-hero__diamond {
    position: absolute;

    width: 360px;
    height: 360px;

    transform: rotate(45deg);

    pointer-events: none;
}

.gfe-hero__diamond--back {
    border: 1px solid rgba(237, 61, 0, 0.22);

    transform: rotate(45deg) translate(22px, 22px);
}

.gfe-hero__diamond--front {
    width: 300px;
    height: 300px;

    border: 2px solid var(--gfe-orange);
}


/* =========================================================
   EXPERIENCIA
   ========================================================= */

.gfe-hero__experience {
    position: relative;
    z-index: 3;

    width: 300px;

    padding: 32px 35px 30px;

    background: var(--gfe-black);

    border-bottom: 5px solid var(--gfe-orange);

    box-shadow: 14px 14px 0 rgba(237, 61, 0, 0.13);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* Más de */

.gfe-hero__experience-label {
    color: #999999;

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

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;
}


/* 28 */

.gfe-hero__experience-number {
    margin-top: 5px;

    color: var(--gfe-white);

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

    font-size: 145px;

    font-weight: 800;

    line-height: 0.72;

    letter-spacing: -7px;
}


/* Años */

.gfe-hero__experience-years {
    margin-top: 16px;

    color: var(--gfe-orange);

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

    font-size: 34px;
    font-weight: 800;

    line-height: 1;

    letter-spacing: 7px;
}


/* Descripción */

.gfe-hero__experience-text {
    margin: 15px 0 0;

    color: #a5a5a5;

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

    font-size: 10px;

    line-height: 1.6;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   CATEGORIAS
   ========================================================= */

.gfe-hero__categories {
    position: absolute;

    z-index: 4;

    right: -10px;
    bottom: 15px;

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

    display: flex;
    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 7px;
}

.gfe-hero__categories span {
    padding: 8px 11px;

    background: var(--gfe-white);

    border: 1px solid var(--gfe-gray-300);

    color: var(--gfe-gray-700);

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

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.4px;

    text-transform: uppercase;

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

.gfe-hero__categories span:hover {
    background: var(--gfe-orange);

    border-color: var(--gfe-orange);

    color: var(--gfe-white);
}


/* =========================================================
   BARRA INFERIOR
   ========================================================= */

.gfe-hero__bottom {
    position: absolute;

    left: 0;
    bottom: 0;

    z-index: 5;

    width: 100%;
    height: 44px;

    background: var(--gfe-black);

    border-top: 1px solid #222222;
}

.gfe-hero__bottom-inner {
    width: min(1400px, calc(100% - 50px));

    height: 100%;

    margin: 0 auto;

    display: flex;
    align-items: center;

    gap: 14px;

    color: #888888;

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

    font-size: 14px;
    font-weight: 600;

    letter-spacing: 1.5px;
}

.gfe-hero__bottom-line {
    width: 35px;
    height: 1px;

    flex-shrink: 0;

    background: var(--gfe-orange);
}


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

@media (max-width: 1000px) {

    .gfe-hero__container {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);

        gap: 40px;
    }

    .gfe-hero__title {
        font-size: clamp(58px, 7vw, 82px);
    }

    .gfe-hero__headline {
        font-size: clamp(26px, 3vw, 34px);
    }

    .gfe-hero__visual {
        min-height: 450px;
    }

    .gfe-hero__experience {
        width: 270px;
    }

    .gfe-hero__experience-number {
        font-size: 125px;
    }

    .gfe-hero__diamond--back {
        width: 320px;
        height: 320px;
    }

    .gfe-hero__diamond--front {
        width: 270px;
        height: 270px;
    }

    .gfe-hero__categories {
        right: 0;

        max-width: 330px;
    }
}


/* =========================================================
   TABLET VERTICAL / MOBILE
   ========================================================= */

@media (max-width: 800px) {

    .gfe-hero {
        min-height: auto;

        margin-top: 76px;
    }

    .gfe-hero__container {
        width: min(100% - 32px, 650px);

        min-height: auto;

        padding: 65px 0 95px;

        display: flex;
        flex-direction: column;

        gap: 65px;

        text-align: center;
    }

    .gfe-hero__content {
        max-width: 650px;

        margin: 0 auto;
    }

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

    .gfe-hero__title {
        font-size: clamp(58px, 12vw, 85px);
    }

    .gfe-hero__headline {
        margin-top: 30px;
    }

    .gfe-hero__description {
        margin-left: auto;
        margin-right: auto;
    }

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

    .gfe-hero__visual {
        width: 100%;
        max-width: 600px;

        min-height: 460px;

        margin: 0 auto;
    }

    .gfe-hero__experience {
        width: 290px;

        align-items: flex-start;

        text-align: left;
    }

    .gfe-hero__categories {
        right: 0;
        bottom: 0;

        max-width: 400px;

        justify-content: center;
    }

    .gfe-hero__bottom-inner {
        justify-content: center;
    }

    .gfe-hero__bottom-inner span:last-child {
        display: none;
    }
}


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

@media (max-width: 600px) {

    .gfe-hero {
        margin-top: 76px;
    }

    .gfe-hero__container {
        width: calc(100% - 30px);

        padding: 50px 0 80px;

        gap: 55px;
    }

    .gfe-hero__eyebrow {
        margin-bottom: 18px;

        font-size: 9px;

        letter-spacing: 2px;
    }

    .gfe-hero__eyebrow-line {
        width: 25px;
    }

    .gfe-hero__title {
        font-size: clamp(48px, 15vw, 68px);

        line-height: 0.88;

        letter-spacing: -1px;
    }

    .gfe-hero__headline {
        margin-top: 26px;

        font-size: 25px;

        line-height: 1;
    }

    .gfe-hero__description {
        margin-top: 20px;

        font-size: 13px;

        line-height: 1.7;
    }

    .gfe-hero__actions {
        flex-direction: column;

        width: 100%;

        margin-top: 28px;
    }

    .gfe-hero__button {
        width: 100%;
    }

    .gfe-hero__visual {
        min-height: 410px;
    }

    .gfe-hero__experience {
        width: 245px;

        padding: 25px 27px 25px;

        box-shadow: 10px 10px 0 rgba(237, 61, 0, 0.13);
    }

    .gfe-hero__experience-number {
        font-size: 115px;

        letter-spacing: -5px;
    }

    .gfe-hero__experience-years {
        margin-top: 13px;

        font-size: 28px;

        letter-spacing: 5px;
    }

    .gfe-hero__experience-text {
        font-size: 8px;
    }

    .gfe-hero__diamond--back {
        width: 270px;
        height: 270px;
    }

    .gfe-hero__diamond--front {
        width: 225px;
        height: 225px;
    }

    .gfe-hero__categories {
        bottom: -5px;

        gap: 5px;
    }

    .gfe-hero__categories span {
        padding: 7px 9px;

        font-size: 8px;
    }

    .gfe-hero__bottom {
        

        min-height: 44px;
    }

    .gfe-hero__bottom-inner {
        width: calc(100% - 30px);

        justify-content: center;

        text-align: center;

        font-size: 7px;
    }

    .gfe-hero__bottom-inner span:last-child,
    .gfe-hero__bottom-line:last-of-type {
        display: none;
    }
}


/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */

@media (max-width: 380px) {

    .gfe-hero__container {
        padding-top: 45px;
    }

    .gfe-hero__title {
        font-size: 47px;
    }

    .gfe-hero__headline {
        font-size: 22px;
    }

    .gfe-hero__visual {
        min-height: 370px;
    }

    .gfe-hero__experience {
        width: 220px;

        padding: 22px;
    }

    .gfe-hero__experience-number {
        font-size: 100px;
    }

    .gfe-hero__diamond--back {
        width: 235px;
        height: 235px;
    }

    .gfe-hero__diamond--front {
        width: 200px;
        height: 200px;
    }

    .gfe-hero__categories span {
        font-size: 7px;
    }
}
.gfe-hero {
    isolation: isolate;
}

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

    position: absolute;
    inset: 0;

    z-index: 0;

    opacity: 0.035;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");

    pointer-events: none;
}

.gfe-hero::before {
    content: "";

    position: absolute;

    width: 620px;
    height: 620px;

    right: -280px;
    top: 50%;

    transform:
        translateY(-50%)
        rotate(45deg);

    background: rgba(237, 61, 0, 0.035);

    border: 1px solid rgba(237, 61, 0, 0.14);

    box-shadow:
        inset 0 0 0 35px rgba(237, 61, 0, 0.012);

    z-index: 0;

    pointer-events: none;
}

.gfe-hero__container {
    z-index: 3;
}

.gfe-hero__container::before {
    content: "";

    position: absolute;

    left: -120px;
    top: 18%;

    width: 280px;
    height: 1px;

    background: var(--gfe-orange);

    opacity: 0.35;

    transform: rotate(-45deg);

    pointer-events: none;
}

.gfe-hero__container::after {
    content: "";

    position: absolute;

    right: 20%;
    top: 5%;

    width: 90px;
    height: 90px;

    border: 1px solid rgba(0, 0, 0, 0.08);

    transform: rotate(45deg);

    pointer-events: none;
}
























/* =========================================================
   GRAN FERRETERA EL BRILLANTE
   SECCIÓN — CATEGORÍAS VISUALES
   ========================================================= */

.gfe-categories {
    position: relative;

    width: 100%;

    padding: 120px 0 130px;

    background: #f3f3f1;

    color: #0b0b0b;

    overflow: hidden;
}


/* =========================================================
   DETALLES DE FONDO
   ========================================================= */

.gfe-categories::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -320px;
    top: 100px;

    border: 1px solid rgba(237, 61, 0, 0.12);

    transform: rotate(45deg);

    pointer-events: none;
}

.gfe-categories::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -150px;
    bottom: 80px;

    background: rgba(237, 61, 0, 0.035);

    transform: rotate(45deg);

    pointer-events: none;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.gfe-categories__container {
    position: relative;

    z-index: 2;

    width: min(1400px, calc(100% - 50px));

    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.gfe-categories__header {
    margin-bottom: 65px;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.gfe-categories__eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 20px;

    color: #ed3d00;

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

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.gfe-categories__eyebrow span {
    width: 35px;
    height: 3px;

    background: #ed3d00;
}


/* =========================================================
   HEADER EN DOS COLUMNAS
   ========================================================= */

.gfe-categories__heading-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(280px, 0.65fr);

    align-items: end;

    gap: 70px;
}


/* =========================================================
   TITULO
   ========================================================= */

.gfe-categories__title {
    margin: 0;

    color: #090909;

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

    font-size: clamp(55px, 6vw, 82px);

    font-weight: 800;

    line-height: 0.86;

    letter-spacing: -1.5px;

    text-transform: uppercase;
}

.gfe-categories__title span {
    display: block;

    color: #ed3d00;
}


/* =========================================================
   INTRO
   ========================================================= */

.gfe-categories__intro {
    max-width: 390px;

    margin: 0;

    color: #4d4d4d;

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

    font-size: 14px;

    font-weight: 500;

    line-height: 1.75;

    border-left: 3px solid #ed3d00;

    padding-left: 18px;
}


/* =========================================================
   GRID
   ========================================================= */

.gfe-categories__grid {
    display: grid;

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

    gap: 18px;
}


/* =========================================================
   CATEGORÍA
   ========================================================= */

.gfe-category {
    position: relative;

    min-width: 0;

    background: #ffffff;

    border: 1px solid #dddddb;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.gfe-category:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.10);
}


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

.gfe-category__image {
    position: relative;

    width: 100%;

    height: 245px;

    overflow: hidden;

    background: #222;
}

.gfe-category__image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    filter:
        grayscale(35%)
        contrast(1.05);

    transform: scale(1.02);

    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}

.gfe-category:hover .gfe-category__image img {
    transform: scale(1.08);

    filter:
        grayscale(0%)
        contrast(1.05);
}


/* =========================================================
   OVERLAY
   ========================================================= */

.gfe-category__overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05) 20%,
            rgba(0, 0, 0, 0.15) 45%,
            rgba(0, 0, 0, 0.78) 100%
        );

    transition:
        background 0.4s ease;
}

.gfe-category:hover .gfe-category__overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.05) 15%,
            rgba(237, 61, 0, 0.12) 55%,
            rgba(0, 0, 0, 0.82) 100%
        );
}


/* =========================================================
   NUMERO
   ========================================================= */

.gfe-category__number {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 2;

    color: #ffffff;

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

    font-size: 20px;

    font-weight: 700;

    line-height: 1;

    text-shadow:
        0 2px 5px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   ICONO
   ========================================================= */

.gfe-category__icon {
    position: absolute;

    top: 16px;
    right: 16px;

    z-index: 2;

    width: 43px;
    height: 43px;

    display: flex;

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

    color: #ffffff;

    background: rgba(0, 0, 0, 0.45);

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

    backdrop-filter: blur(5px);

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

.gfe-category__icon svg {
    width: 21px;
    height: 21px;

    stroke-width: 1.8;
}

.gfe-category:hover .gfe-category__icon {
    background: #ed3d00;

    border-color: #ed3d00;

    transform: rotate(-5deg);
}


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

.gfe-category__content {
    position: relative;

    min-height: 175px;

    padding: 25px 25px 28px;

    background: #ffffff;
}


/* =========================================================
   TITULO CATEGORÍA
   ========================================================= */

.gfe-category__content h3 {
    margin: 0;

    padding-right: 35px;

    color: #111111;

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

    font-size: 29px;

    font-weight: 800;

    line-height: 0.95;

    text-transform: uppercase;
}


/* =========================================================
   DESCRIPCIÓN
   ========================================================= */

.gfe-category__content p {
    max-width: 330px;

    margin: 13px 0 0;

    color: #5d5d5d;

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

    font-size: 13px;

    font-weight: 500;

    line-height: 1.65;
}


/* =========================================================
   FLECHA
   ========================================================= */

.gfe-category__arrow {
    position: absolute;

    right: 23px;
    bottom: 24px;

    color: #ed3d00;

    font-size: 25px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}

.gfe-category:hover .gfe-category__arrow {
    transform: translateX(6px);
}


/* =========================================================
   CATEGORÍA DESTACADA
   ========================================================= */

.gfe-category--featured {
    border-color: #ed3d00;
}

.gfe-category--featured .gfe-category__content {
    background: #0b0b0b;
}

.gfe-category--featured .gfe-category__content h3 {
    color: #ffffff;
}

.gfe-category--featured .gfe-category__content p {
    color: #aaaaaa;
}

.gfe-category--featured .gfe-category__arrow {
    color: #ed3d00;
}


/* =========================================================
   CATEGORÍA ANCHA
   ========================================================= */

.gfe-category--wide {
    grid-column: span 2;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;
}

.gfe-category--wide .gfe-category__image {
    height: 100%;

    min-height: 260px;
}

.gfe-category--wide .gfe-category__content {
    min-height: 260px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


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

@media (max-width: 950px) {

    .gfe-categories {
        padding: 95px 0 110px;
    }

    .gfe-categories__heading-row {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .gfe-categories__intro {
        max-width: 600px;
    }

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

    .gfe-category--wide {
        grid-column: span 2;
    }
}


/* =========================================================
   TABLET PEQUEÑA
   ========================================================= */

@media (max-width: 700px) {

    .gfe-category__image {
        height: 220px;
    }

    .gfe-category__content {
        min-height: 160px;

        padding: 22px;
    }

    .gfe-category__content h3 {
        font-size: 27px;
    }

    .gfe-category--wide {
        display: block;
    }

    .gfe-category--wide .gfe-category__image {
        height: 220px;

        min-height: 0;
    }

    .gfe-category--wide .gfe-category__content {
        min-height: 160px;

        display: block;
    }
}


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

@media (max-width: 600px) {

    .gfe-categories {
        padding: 75px 0 85px;
    }

    .gfe-categories__container {
        width: calc(100% - 30px);
    }

    .gfe-categories__header {
        margin-bottom: 40px;
    }

    .gfe-categories__eyebrow {
        font-size: 9px;
    }

    .gfe-categories__title {
        font-size: clamp(46px, 14vw, 64px);
    }

    .gfe-categories__intro {
        font-size: 13px;

        padding-left: 14px;
    }

    .gfe-categories__grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .gfe-category,
    .gfe-category--wide {
        grid-column: span 1;

        display: block;
    }

    .gfe-category__image,
    .gfe-category--wide .gfe-category__image {
        height: 225px;

        min-height: 0;
    }

    .gfe-category__content,
    .gfe-category--wide .gfe-category__content {
        min-height: 155px;

        padding: 22px;
    }

    .gfe-category__content h3 {
        font-size: 27px;
    }

    .gfe-category__content p {
        font-size: 12px;
    }
}


/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */

@media (max-width: 380px) {

    .gfe-categories__title {
        font-size: 43px;
    }

    .gfe-category__image,
    .gfe-category--wide .gfe-category__image {
        height: 200px;
    }

    .gfe-category__content h3 {
        font-size: 24px;
    }

    .gfe-category__icon {
        width: 38px;
        height: 38px;
    }

    .gfe-category__icon svg {
        width: 18px;
        height: 18px;
    }
}




















/* =========================================================
   GRAN FERRETERA EL BRILLANTE
   BANNER COMPACTO
   ========================================================= */

.gfe-banner {
    --gfe-banner-orange: #ed3d00;
    --gfe-banner-orange-dark: #c93200;
    --gfe-banner-black: #0a0a0a;
    --gfe-banner-white: #ffffff;

    position: relative;

    width: 100%;

   

    padding: 42px 0;

    background: var(--gfe-banner-orange);

    color: var(--gfe-banner-white);

    border-radius: 3px;

    overflow: hidden;
}


/* =========================================================
   DETALLES DE FONDO
   ========================================================= */

.gfe-banner::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -110px;
    top: 50%;

    transform:
        translateY(-50%)
        rotate(45deg);

    border: 1px solid rgba(0, 0, 0, 0.18);

    pointer-events: none;
}

.gfe-banner::after {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    left: -80px;
    bottom: -95px;

    transform: rotate(45deg);

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

    pointer-events: none;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.gfe-banner__container {
    position: relative;

    z-index: 2;

    width: min(1100px, calc(100% - 60px));

    margin: 0 auto;
}


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

.gfe-banner__content {
    max-width: 90%;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.gfe-banner__eyebrow {
    display: inline-block;

    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.82);

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

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}


/* =========================================================
   TITULO
   ========================================================= */

.gfe-banner__title {
    margin: 0;

    color: #ffffff;

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

    font-size: clamp(34px, 4vw, 60px);

    font-weight: 800;

    line-height: 0.95;

    letter-spacing: -0.8px;

    text-transform: uppercase;
}

.gfe-banner__title span {
    color: var(--gfe-banner-black);
}


/* =========================================================
   TEXTO
   ========================================================= */

.gfe-banner__text {
    max-width: 960px;

    margin: 14px 0 0;

    color: rgba(255, 255, 255, 0.9);

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

    font-size: 16px;

    font-weight: 500;

    line-height: 1.6;
}


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

@media (max-width: 800px) {

    .gfe-banner {
        width: 92%;

        margin: 55px auto;

        padding: 36px 0;
    }

    .gfe-banner__container {
        width: calc(100% - 45px);
    }

    .gfe-banner__title {
        font-size: clamp(32px, 5vw, 45px);
    }

}


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

@media (max-width: 600px) {

    .gfe-banner {
        width: calc(100% - 30px);

        margin: 45px auto;

        padding: 30px 0;

        border-radius: 2px;
    }

    .gfe-banner__container {
        width: calc(100% - 35px);
    }

    .gfe-banner__eyebrow {
        margin-bottom: 9px;

        font-size: 8px;

        letter-spacing: 1.7px;
    }

    .gfe-banner__title {
        font-size: clamp(29px, 8.5vw, 40px);

        line-height: 0.98;

        letter-spacing: -0.5px;
    }

    .gfe-banner__text {
        margin-top: 13px;

        font-size: 12px;

        line-height: 1.65;
    }

    .gfe-banner::before {
        width: 180px;
        height: 180px;

        right: -100px;
    }

    .gfe-banner::after {
        width: 110px;
        height: 110px;

        left: -65px;
        bottom: -75px;
    }
}


/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */

@media (max-width: 380px) {

    .gfe-banner {
        width: calc(100% - 20px);

        padding: 27px 0;
    }

    .gfe-banner__container {
        width: calc(100% - 28px);
    }

    .gfe-banner__title {
        font-size: 27px;
    }

    .gfe-banner__text {
        font-size: 11px;
    }
}






/* =========================================================
   GRAN FERRETERA EL BRILLANTE
   SECCIÓN — NOSOTROS
   ========================================================= */

.gfe-about {
    --gfe-about-orange: #ed3d00;
    --gfe-about-orange-dark: #c93200;
    --gfe-about-black: #090909;
    --gfe-about-dark: #181818;
    --gfe-about-gray: #555555;
    --gfe-about-light: #f3f3f1;
    --gfe-about-border: #d9d9d7;
    --gfe-about-white: #ffffff;

    position: relative;

    width: 100%;

    padding: 125px 0 135px;

    background: var(--gfe-about-white);

    color: var(--gfe-about-black);

    overflow: hidden;
}


/* =========================================================
   DETALLES DE FONDO
   ========================================================= */

.gfe-about::before {
    content: "";

    position: absolute;

    width: 480px;
    height: 480px;

    right: -330px;
    top: 100px;

    border: 1px solid rgba(237, 61, 0, 0.13);

    transform: rotate(45deg);

    pointer-events: none;
}

.gfe-about::after {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    left: -170px;
    bottom: 70px;

    background: rgba(237, 61, 0, 0.035);

    transform: rotate(45deg);

    pointer-events: none;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.gfe-about__container {
    position: relative;

    z-index: 2;

    width: min(1400px, calc(100% - 50px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 100px;

    align-items: start;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.gfe-about__eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 23px;

    color: var(--gfe-about-orange);

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

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.gfe-about__eyebrow > span {
    width: 35px;
    height: 3px;

    flex-shrink: 0;

    background: var(--gfe-about-orange);
}


/* =========================================================
   TITULO
   ========================================================= */

.gfe-about__title {
    max-width: 570px;

    margin: 0;

    color: var(--gfe-about-black);

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

    font-size: clamp(50px, 5.5vw, 76px);

    font-weight: 800;

    line-height: 0.88;

    letter-spacing: -1.5px;

    text-transform: uppercase;
}

.gfe-about__title span {
    display: block;

    color: var(--gfe-about-orange);
}


/* =========================================================
   ACENTO
   ========================================================= */

.gfe-about__accent {
    width: 70px;
    height: 5px;

    margin: 30px 0 25px;

    background: var(--gfe-about-orange);
}


/* =========================================================
   TEXTO
   ========================================================= */

.gfe-about__text {
    max-width: 550px;

    margin: 0 0 17px;

    color: var(--gfe-about-gray);

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

    font-size: 14px;

    font-weight: 500;

    line-height: 1.8;
}

.gfe-about__text--strong {
    color: var(--gfe-about-black);

    font-weight: 700;
}


/* =========================================================
   28 AÑOS
   ========================================================= */

.gfe-about__years {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 40px;

    padding-top: 25px;

    border-top: 1px solid var(--gfe-about-border);
}

.gfe-about__years > strong {
    color: var(--gfe-about-orange);

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

    font-size: 78px;

    font-weight: 800;

    line-height: 0.75;

    letter-spacing: -4px;
}

.gfe-about__years > div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.gfe-about__years span {
    color: var(--gfe-about-black);

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

    font-size: 17px;

    font-weight: 800;

    letter-spacing: 3px;
}

.gfe-about__years small {
    color: #777777;

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

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


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

.gfe-about__information {
    display: flex;

    flex-direction: column;

    border-top: 1px solid var(--gfe-about-border);
}


/* =========================================================
   MISIÓN / VISIÓN
   ========================================================= */

.gfe-about__block {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 22px;

    padding: 30px 0;

    border-bottom: 1px solid var(--gfe-about-border);
}

.gfe-about__block-number {
    color: var(--gfe-about-orange);

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

    font-size: 18px;

    font-weight: 800;

    line-height: 1;
}


/* =========================================================
   TITULO DEL BLOQUE
   ========================================================= */

.gfe-about__block-heading {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 15px;
}

.gfe-about__block-heading h3 {
    margin: 0;

    color: var(--gfe-about-black);

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

    font-size: 30px;

    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;
}


/* =========================================================
   ICONOS
   ========================================================= */

.gfe-about__block-icon {
    width: 40px;
    height: 40px;

    display: flex;

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

    flex-shrink: 0;

    background: var(--gfe-about-orange);

    color: var(--gfe-about-white);
}

.gfe-about__block-icon svg {
    width: 19px;
    height: 19px;

    stroke-width: 1.8;
}


/* =========================================================
   TEXTO MISIÓN / VISIÓN
   ========================================================= */

.gfe-about__block-content p {
    max-width: 620px;

    margin: 0;

    color: var(--gfe-about-gray);

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

    font-size: 13px;

    font-weight: 500;

    line-height: 1.75;
}


/* =========================================================
   VALORES
   ========================================================= */

.gfe-about__values {
    padding: 35px 0 0;
}

.gfe-about__values-header {
    display: flex;

    align-items: flex-start;

    gap: 22px;
}

.gfe-about__values-label {
    display: block;

    margin-bottom: 7px;

    color: #777777;

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

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.gfe-about__values-header h3 {
    margin: 0;

    color: var(--gfe-about-black);

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

    font-size: 30px;

    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;
}


/* =========================================================
   GRID DE VALORES
   ========================================================= */

.gfe-about__values-grid {
    display: grid;

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

    gap: 9px;

    margin-top: 27px;
}

.gfe-about__values-grid span {
    min-height: 48px;

    padding: 0 13px;

    display: flex;

    align-items: center;

    gap: 9px;

    background: var(--gfe-about-light);

    border: 1px solid #dededc;

    color: var(--gfe-about-black);

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

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

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

.gfe-about__values-grid span:hover {
    background: var(--gfe-about-orange);

    border-color: var(--gfe-about-orange);

    color: var(--gfe-about-white);
}

.gfe-about__values-grid svg {
    width: 16px;
    height: 16px;

    flex-shrink: 0;

    stroke-width: 1.8;
}


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

@media (max-width: 950px) {

    .gfe-about {
        padding: 100px 0 110px;
    }

    .gfe-about__container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .gfe-about__title {
        max-width: 750px;
    }

    .gfe-about__text {
        max-width: 700px;
    }

    .gfe-about__information {
        max-width: 850px;
    }
}


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

@media (max-width: 600px) {

    .gfe-about {
        padding: 75px 0 85px;
    }

    .gfe-about__container {
        width: calc(100% - 30px);

        gap: 55px;
    }

    .gfe-about__eyebrow {
        font-size: 9px;
    }

    .gfe-about__title {
        font-size: clamp(44px, 13vw, 62px);

        line-height: 0.9;
    }

    .gfe-about__accent {
        width: 55px;
        height: 4px;

        margin: 25px 0 20px;
    }

    .gfe-about__text {
        font-size: 13px;

        line-height: 1.75;
    }

    .gfe-about__years {
        margin-top: 30px;

        padding-top: 22px;
    }

    .gfe-about__years > strong {
        font-size: 65px;
    }

    .gfe-about__years span {
        font-size: 15px;
    }

    .gfe-about__block {
        grid-template-columns: 38px 1fr;

        gap: 14px;

        padding: 25px 0;
    }

    .gfe-about__block-heading {
        gap: 10px;
    }

    .gfe-about__block-heading h3,
    .gfe-about__values-header h3 {
        font-size: 25px;
    }

    .gfe-about__block-icon {
        width: 36px;
        height: 36px;
    }

    .gfe-about__block-icon svg {
        width: 17px;
        height: 17px;
    }

    .gfe-about__block-content p {
        font-size: 12px;

        line-height: 1.7;
    }

    .gfe-about__values {
        padding-top: 28px;
    }

    .gfe-about__values-header {
        gap: 14px;
    }

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

        gap: 7px;

        margin-top: 22px;
    }

    .gfe-about__values-grid span {
        min-height: 45px;

        padding: 0 10px;

        font-size: 9px;
    }
}


/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */

@media (max-width: 380px) {

    .gfe-about__title {
        font-size: 42px;
    }

    .gfe-about__years > strong {
        font-size: 58px;
    }

    .gfe-about__values-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   INFORMACIÓN PRINCIPAL DE LA FERRETERÍA
   ========================================================= */

.gfe-about__text {
    max-width: 570px;

    margin: 0 0 20px;

    color: var(--gfe-about-gray);

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

    font-size: 17px;

    font-weight: 500;

    line-height: 1.8;
}

.gfe-about__text--strong {
    color: var(--gfe-about-black);

    font-size: 17px;

    font-weight: 700;

    line-height: 1.7;
}


/* =========================================================
   MISIÓN / VISIÓN
   ========================================================= */

.gfe-about__block-heading {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 17px;
}

.gfe-about__block-heading h3 {
    margin: 0;

    color: var(--gfe-about-black);

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

    font-size: 36px;

    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;
}


.gfe-about__block-content p {
    max-width: 680px;

    margin: 0;

    color: var(--gfe-about-gray);

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

    font-size: 16px;

    font-weight: 500;

    line-height: 1.8;
}


/* =========================================================
   VALORES
   ========================================================= */

.gfe-about__values-header h3 {
    margin: 0;

    color: var(--gfe-about-black);

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

    font-size: 36px;

    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;
}

.gfe-about__values-label {
    display: block;

    margin-bottom: 8px;

    color: #777777;

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

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================================
   VALORES — CARDS
   ========================================================= */

.gfe-about__values-grid {
    display: grid;

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

    gap: 10px;

    margin-top: 30px;
}

.gfe-about__values-grid span {
    min-height: 55px;

    padding: 0 15px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: var(--gfe-about-light);

    border: 1px solid #dededc;

    color: var(--gfe-about-black);

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

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.3px;

    text-transform: uppercase;

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


/* =========================================================
   ICONOS
   ========================================================= */

.gfe-about__block-icon {
    width: 44px;
    height: 44px;

    display: flex;

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

    flex-shrink: 0;

    background: var(--gfe-about-orange);

    color: var(--gfe-about-white);
}

.gfe-about__block-icon svg {
    width: 21px;
    height: 21px;

    stroke-width: 1.8;
}


/* =========================================================
   NÚMEROS
   ========================================================= */

.gfe-about__block-number {
    color: var(--gfe-about-orange);

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

    font-size: 20px;

    font-weight: 800;

    line-height: 1;
}


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

@media (max-width: 950px) {

    .gfe-about__text {
        max-width: 750px;

        font-size: 17px;
    }

    .gfe-about__block-content p {
        max-width: 750px;

        font-size: 16px;
    }
}


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

@media (max-width: 600px) {

    .gfe-about__text {
        font-size: 15px;

        line-height: 1.75;
    }

    .gfe-about__text--strong {
        font-size: 15px;
    }

    .gfe-about__block-heading {
        gap: 11px;

        margin-bottom: 15px;
    }

    .gfe-about__block-heading h3,
    .gfe-about__values-header h3 {
        font-size: 28px;
    }

    .gfe-about__block-content p {
        font-size: 14px;

        line-height: 1.75;
    }

    .gfe-about__block-icon {
        width: 38px;
        height: 38px;
    }

    .gfe-about__block-icon svg {
        width: 18px;
        height: 18px;
    }

    .gfe-about__values-grid span {
        min-height: 50px;

        padding: 0 12px;

        font-size: 10px;
    }
}

























/* =========================================================
   GRAN FERRETERA EL BRILLANTE
   SECCIÓN — CONTACTO
   ========================================================= */

.gfe-contact {
    --gfe-contact-orange: #ed3d00;
    --gfe-contact-orange-dark: #c93200;
    --gfe-contact-black: #090909;
    --gfe-contact-dark: #121212;
    --gfe-contact-gray: #a2a2a2;
    --gfe-contact-border: #2c2c2c;
    --gfe-contact-white: #ffffff;

    position: relative;

    width: 100%;

    padding: 120px 0 130px;

    background: var(--gfe-contact-black);

    color: var(--gfe-contact-white);

    overflow: hidden;
}


/* =========================================================
   DETALLES DE FONDO
   ========================================================= */

.gfe-contact::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    right: -420px;
    top: 40px;

    border: 1px solid rgba(237, 61, 0, 0.22);

    transform: rotate(45deg);

    pointer-events: none;
}

.gfe-contact::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -210px;
    bottom: -150px;

    background: rgba(237, 61, 0, 0.045);

    transform: rotate(45deg);

    pointer-events: none;
}


/* =========================================================
   CONTENEDOR
   ========================================================= */

.gfe-contact__container {
    position: relative;

    z-index: 2;

    width: min(1400px, calc(100% - 50px));

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 80px;

    align-items: start;
}


/* =========================================================
   EYEBROW
   ========================================================= */

.gfe-contact__eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 22px;

    color: var(--gfe-contact-orange);

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

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.gfe-contact__eyebrow > span {
    width: 35px;
    height: 3px;

    flex-shrink: 0;

    background: var(--gfe-contact-orange);
}


/* =========================================================
   TITULO
   ========================================================= */

.gfe-contact__title {
    max-width: 620px;

    margin: 0;

    color: var(--gfe-contact-white);

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

    font-size: clamp(48px, 5vw, 70px);

    font-weight: 800;

    line-height: 0.88;

    letter-spacing: -1.5px;

    text-transform: uppercase;
}
.gfe-contact__title1 {
    max-width: 100%;
    margin-bottom: 30px;
    text-align:center;
    color: var(--gfe-contact-white);

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

    font-size: clamp(48px, 5vw, 70px);

    font-weight: 800;

    line-height: 0.88;

    letter-spacing: -1.5px;

    text-transform: uppercase;
}

.gfe-contact__title span {
    display: block;

    color: var(--gfe-contact-orange);
}
.gfe-contact__title1 span {
    display: block;

    color: var(--gfe-contact-orange);
}

/* =========================================================
   ITEMS DE CONTACTO
   ========================================================= */

.gfe-contact__items {
    margin-top: 48px;

    border-top: 1px solid var(--gfe-contact-border);
}


/* =========================================================
   ITEM
   ========================================================= */

.gfe-contact__item {
    position: relative;

    min-height: 78px;

    padding: 13px 5px 13px 0;

    display: flex;

    align-items: center;

    gap: 17px;

    border-bottom: 1px solid var(--gfe-contact-border);

    color: var(--gfe-contact-white);

    text-decoration: none;

    transition:
        padding-left 0.25s ease,
        background 0.25s ease;
}

.gfe-contact__item:hover {
    padding-left: 10px;

    background: rgba(237, 61, 0, 0.055);
}


/* =========================================================
   ICONO
   ========================================================= */

.gfe-contact__item-icon {
    width: 43px;
    height: 43px;

    display: flex;

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

    flex-shrink: 0;

    background: var(--gfe-contact-orange);

    color: var(--gfe-contact-white);
}

.gfe-contact__item-icon svg {
    width: 19px;
    height: 19px;

    stroke-width: 1.8;
}


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

.gfe-contact__item-content {
    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.gfe-contact__item-content small {
    color: #777777;

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

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.gfe-contact__item-content strong {
    color: #f5f5f5;

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

    font-size: 14px;

    font-weight: 600;

    line-height: 1.45;
}


/* =========================================================
   FLECHA
   ========================================================= */

.gfe-contact__item-arrow {
    margin-left: auto;

    color: var(--gfe-contact-orange);

    font-size: 20px;

    transition:
        transform 0.25s ease;
}

.gfe-contact__item:hover .gfe-contact__item-arrow {
    transform: translate(4px, -4px);
}


/* =========================================================
   HORARIO
   ========================================================= */

.gfe-contact__schedule {
    margin-top: 45px;

    padding: 30px;

    background: var(--gfe-contact-dark);

    border: 1px solid var(--gfe-contact-border);

    border-left: 4px solid var(--gfe-contact-orange);
}


/* Encabezado */

.gfe-contact__schedule-heading {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 25px;
}

.gfe-contact__schedule-icon {
    width: 40px;
    height: 40px;

    display: flex;

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

    background: var(--gfe-contact-orange);

    color: var(--gfe-contact-white);
}

.gfe-contact__schedule-icon svg {
    width: 18px;
    height: 18px;

    stroke-width: 1.8;
}

.gfe-contact__schedule-heading h3 {
    margin: 0;

    color: var(--gfe-contact-white);

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

    font-size: 27px;

    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;
}


/* Lista */

.gfe-contact__schedule-list {
    display: flex;

    flex-direction: column;

    gap: 0;
}

.gfe-contact__schedule-list > div {
    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid #292929;
}

.gfe-contact__schedule-list > div:last-child {
    border-bottom: 0;
}

.gfe-contact__schedule-list span {
    color: #929292;

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

    font-size: 18px;

    font-weight: 500;
}

.gfe-contact__schedule-list strong {
    color: #ffffff;

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

    font-size: 18px;

    font-weight: 700;

    text-align: right;
}


/* Domingo */

.gfe-contact__schedule-closed strong {
    color: var(--gfe-contact-orange);
}


/* =========================================================
   MAPA
   ========================================================= */

.gfe-contact__map-wrapper {
    position: relative;

    width: 100%;

    padding: 12px;

    background: #151515;

    border: 1px solid var(--gfe-contact-border);
}


/* =========================================================
   HEADER MAPA
   ========================================================= */

.gfe-contact__map-header {
    min-height: 90px;

    padding: 18px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    background: var(--gfe-contact-dark);

    border-bottom: 1px solid var(--gfe-contact-border);
}

.gfe-contact__map-header > div > span {
    display: block;

    margin-bottom: 7px;

    color: var(--gfe-contact-orange);

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

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.gfe-contact__map-header h3 {
    margin: 0;

    color: #ffffff;

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

    font-size: 25px;

    font-weight: 800;

    line-height: 1;

    text-transform: uppercase;
}

.gfe-contact__map-header h3 strong {
    color: var(--gfe-contact-orange);
}


/* =========================================================
   BOTÓN MAPS
   ========================================================= */

.gfe-contact__map-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;

    min-height: 42px;

    padding: 0 15px;

    background: transparent;

    border: 1px solid #454545;

    color: #ffffff;

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

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 0.7px;

    text-decoration: none;

    text-transform: uppercase;

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

.gfe-contact__map-button span {
    color: var(--gfe-contact-orange);

    font-size: 16px;
}

.gfe-contact__map-button:hover {
    background: var(--gfe-contact-orange);

    border-color: var(--gfe-contact-orange);

    color: #ffffff;
}

.gfe-contact__map-button:hover span {
    color: #ffffff;
}


/* =========================================================
   IFRAME
   ========================================================= */

.gfe-contact__map {
    position: relative;

    width: 100%;

    height: 570px;

    overflow: hidden;

    background: #222222;
}

.gfe-contact__map iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;

    
    transition:
        filter 0.4s ease;
}

.gfe-contact__map:hover iframe {
    filter:
        grayscale(35%)
        contrast(1.05);
}


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

@media (max-width: 950px) {

    .gfe-contact {
        padding: 100px 0 110px;
    }

    .gfe-contact__container {
        grid-template-columns: 1fr;

        gap: 70px;
    }

    .gfe-contact__title {
        max-width: 800px;
    }

    .gfe-contact__map {
        height: 500px;
    }
}


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

@media (max-width: 600px) {

    .gfe-contact {
        padding: 75px 0 85px;
    }

    .gfe-contact__container {
        width: calc(100% - 30px);

        gap: 50px;
    }

    .gfe-contact__eyebrow {
        font-size: 9px;
    }

    .gfe-contact__title {
        font-size: clamp(43px, 12.5vw, 60px);

        line-height: 0.9;
    }

    .gfe-contact__items {
        margin-top: 38px;
    }

    .gfe-contact__item {
        min-height: 72px;

        gap: 12px;
    }

    .gfe-contact__item-icon {
        width: 39px;
        height: 39px;
    }

    .gfe-contact__item-icon svg {
        width: 17px;
        height: 17px;
    }

    .gfe-contact__item-content strong {
        font-size: 12px;
    }

    .gfe-contact__item-content small {
        font-size: 7px;

        letter-spacing: 1.4px;
    }

    .gfe-contact__item-arrow {
        font-size: 17px;
    }


    /* HORARIO */

    .gfe-contact__schedule {
        margin-top: 35px;

        padding: 22px;

        border-left-width: 3px;
    }

    .gfe-contact__schedule-heading {
        margin-bottom: 18px;
    }

    .gfe-contact__schedule-heading h3 {
        font-size: 24px;
    }

    .gfe-contact__schedule-list > div {
        min-height: 46px;

        gap: 12px;
    }

    .gfe-contact__schedule-list span,
    .gfe-contact__schedule-list strong {
        font-size: 11px;
    }


    /* MAPA */

    .gfe-contact__map-wrapper {
        padding: 7px;
    }

    .gfe-contact__map-header {
        min-height: auto;

        padding: 16px;

        align-items: flex-start;

        flex-direction: column;

        gap: 15px;
    }

    .gfe-contact__map-header h3 {
        font-size: 22px;
    }

    .gfe-contact__map-button {
        width: 100%;
    }

    .gfe-contact__map {
        height: 390px;
    }
}


/* =========================================================
   MOBILE PEQUEÑO
   ========================================================= */

@media (max-width: 380px) {

    .gfe-contact__title {
        font-size: 40px;
    }

    .gfe-contact__item-content strong {
        font-size: 11px;
    }

    .gfe-contact__schedule-list > div {
        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        gap: 3px;

        padding: 8px 0;
    }

    .gfe-contact__schedule-list strong {
        text-align: left;
    }

    .gfe-contact__map {
        height: 340px;
    }
}



/* =========================================================
   WHATSAPP FLOTANTE
   GRAN FERRETERA EL BRILLANTE
   ========================================================= */

.gfe-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 9999;

    min-height: 56px;

    padding: 7px 18px 7px 7px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #25D366;

    border-radius: 50px;

    color: #ffffff;

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

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 0.3px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   ICONO
   ========================================================= */

.gfe-whatsapp__icon {
    width: 42px;
    height: 42px;

    display: flex;

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

    flex-shrink: 0;

    background: #ffffff;

    border-radius: 50%;

    color: #25D366;
}

.gfe-whatsapp__icon svg {
    width: 23px;
    height: 23px;

    display: block;
}


/* =========================================================
   TEXTO
   ========================================================= */

.gfe-whatsapp__text {
    white-space: nowrap;
}


/* =========================================================
   HOVER
   ========================================================= */

.gfe-whatsapp:hover {
    background: #1ebe5d;

    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   ANIMACIÓN SUTIL
   ========================================================= */

.gfe-whatsapp::before {
    content: "";

    position: absolute;

    inset: -5px;

    border: 2px solid rgba(37, 211, 102, 0.35);

    border-radius: 50px;

    animation: gfe-whatsapp-pulse 2.5s infinite;

    pointer-events: none;
}

@keyframes gfe-whatsapp-pulse {

    0% {
        transform: scale(0.96);

        opacity: 0.7;
    }

    70% {
        transform: scale(1.05);

        opacity: 0;
    }

    100% {
        transform: scale(1.05);

        opacity: 0;
    }
}


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

@media (max-width: 600px) {

    .gfe-whatsapp {
        right: 17px;
        bottom: 17px;

        width: 55px;
        height: 55px;

        min-height: 55px;

        padding: 6px;

        justify-content: center;

        border-radius: 50%;
    }

    .gfe-whatsapp__icon {
        width: 43px;
        height: 43px;

        background: transparent;

        color: #ffffff;
    }

    .gfe-whatsapp__icon svg {
        width: 25px;
        height: 25px;
    }

    .gfe-whatsapp__text {
        display: none;
    }

    .gfe-whatsapp::before {
        inset: -4px;
    }
}
.boton1 {
    background-color: #ED3D01;

    border: 1px solid var(--gfe-orange);

    color: white;
}
/* =========================================================
   FOOTER
   GRAN FERRETERA EL BRILLANTE
   ========================================================= */

.gfe-footer {

    --gfe-footer-orange: #ed3d00;
    --gfe-footer-black: #090909;
    --gfe-footer-dark: #111111;
    --gfe-footer-gray: #999999;
    --gfe-footer-border: #292929;
    --gfe-footer-white: #ffffff;

    width: 100%;

    background: white;

    color: var(--gfe-footer-white);

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


/* =========================================================
   CONTENEDOR
   ========================================================= */

.gfe-footer__container {

    width: min(
        1180px,
        calc(100% - 50px)
    );

    margin: 0 auto;

}


/* =========================================================
   PARTE SUPERIOR
   ========================================================= */

.gfe-footer__top {

    padding: 70px 0 60px;

    border-bottom: 1px solid
        var(--gfe-footer-border);

}


.gfe-footer__top
.gfe-footer__container {

    display: grid;

    grid-template-columns:
        1.4fr
        0.7fr
        0.9fr
        1.2fr;

    gap: 55px;

    align-items: start;

}


/* =========================================================
   MARCA
   ========================================================= */

.gfe-footer__brand {

    max-width: 300px;

}


.gfe-footer__logo {

    display: inline-flex;

    align-items: center;

    text-decoration: none;

}


.gfe-footer__logo img {

    width: 190px;

    height: auto;

    display: block;

}


.gfe-footer__brand p {

    margin: 22px 0 25px;

    max-width: 270px;

    color: black;

    font-size: 14px;

    line-height: 1.6;

}


.gfe-footer__whatsapp {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 11px 17px;

    background: var(--gfe-footer-orange);

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 0.8px;

    text-decoration: none;

    text-transform: uppercase;

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

}


.gfe-footer__whatsapp:hover {

    background: #ffffff;

    color: var(--gfe-footer-black);

    transform: translateY(-2px);

}


/* =========================================================
   COLUMNAS
   ========================================================= */

.gfe-footer__column h3 {

    margin: 3px 0 22px;

    color: black;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.gfe-footer__column ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.gfe-footer__column li {

    margin-bottom: 11px;

    color: black;;

    font-size: 13px;

    line-height: 1.5;

}


.gfe-footer__column li:last-child {

    margin-bottom: 0;

}


.gfe-footer__column a {

    color: black;

    text-decoration: none;

    transition:
        color 0.2s ease;

}


.gfe-footer__column a:hover {

    color: var(--gfe-footer-orange);

}


/* =========================================================
   CONTACTO
   ========================================================= */

.gfe-footer__contact {

    max-width: 300px;

}


.gfe-footer__contact-item {

    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-bottom: 17px;

    color: #999999;

    font-size: 12px;

    line-height: 1.55;

    text-decoration: none;

    transition:
        color 0.2s ease;

}


.gfe-footer__contact-item:last-child {

    margin-bottom: 0;

}


.gfe-footer__contact-item:hover {

    color: #ffffff;

}


.gfe-footer__contact-icon {

    width: 17px;

    height: 17px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    color: var(--gfe-footer-orange);

}


.gfe-footer__contact-icon svg {

    width: 17px;

    height: 17px;

    display: block;

}


/* =========================================================
   PARTE INFERIOR
   ========================================================= */

.gfe-footer__bottom {

    padding: 20px 0;

    background: #4b4b4b;

}


.gfe-footer__bottom
.gfe-footer__container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


.gfe-footer__copyright {

    color: white;

    font-size: 10px;

    line-height: 1.5;

}


/* =========================================================
   REDES SOCIALES
   ========================================================= */

.gfe-footer__social {
    
    display: flex;

    align-items: center;

    gap: 10px;

}


.gfe-footer__social > span {
color:white;
    margin-right: 7px;

    
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.gfe-footer__social a {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #171717;

   color:white;

    text-decoration: none;

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

}


.gfe-footer__social a:hover {

    background: var(--gfe-footer-orange);

    color: #ffffff;

    transform: translateY(-2px);

}


.gfe-footer__social svg {

    width: 15px;

    height: 15px;

    display: block;

}


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

@media (max-width: 950px) {

    .gfe-footer__container {

        width: calc(100% - 50px);

    }


    .gfe-footer__top
    .gfe-footer__container {

        grid-template-columns:
            1fr 1fr;

        gap: 50px 60px;

    }


    .gfe-footer__brand {

        max-width: 350px;

    }

}


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

@media (max-width: 600px) {

    .gfe-footer__container {

        width: calc(100% - 30px);

    }


    .gfe-footer__top {

        padding: 55px 0 45px;

    }


    .gfe-footer__top
    .gfe-footer__container {

        grid-template-columns: 1fr;

        gap: 40px;

    }


    .gfe-footer__brand {

        max-width: 100%;

    }


    .gfe-footer__logo img {

        width: 175px;

    }


    .gfe-footer__brand p {
color :black;
        max-width: 300px;

        font-size: 13px;

    }


    .gfe-footer__column h3 {

        margin-bottom: 17px;

    }


    .gfe-footer__contact {

        max-width: 100%;

    }


    .gfe-footer__bottom {

        padding: 22px 0;

    }


    .gfe-footer__bottom
    .gfe-footer__container {

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

    }


    .gfe-footer__copyright {

        font-size: 9px;

    }


    .gfe-footer__social {

        width: 100%;

    }

}