:root {
    --green: #1e4a3b;
    --green-dark: #12281f;
    --gold: #a9a55c;
    --cream: #f7f3e9;
    --cream-light: #fbf9f4;
    --charcoal: #2b2b26;
    --white: #ffffff;
    --line: rgba(30, 74, 59, 0.14);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--charcoal);
    background: var(--cream-light);
    line-height: 1.6;
}

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

/* =========================
   ENCABEZADO
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 249, 244, 0.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo-image {
    display: block;
    width: 250px;
    height: auto;
}

.logo-mark {
    width: 34px;
    height: 26px;
    flex-shrink: 0;
}

.logo-text {
    display: block;
    font-family: "Archivo", sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.03em;
    color: var(--green);
}

.logo-sub {
    display: block;
    margin-top: -2px;
    font-family: "Archivo", sans-serif;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gold);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 2px;
    font-family: "Archivo", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    transition:
        transform 0.15s ease,
        background 0.15s ease,
        color 0.15s ease;
}

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

.btn-primary {
    color: var(--white);
    background: var(--green);
}

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

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

.btn-secondary:hover {
    color: var(--white);
    background: var(--green);
}

.btn-header {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 11px;
}

/* =========================
   HERO
========================= */

.hero {
    padding: 115px 32px 90px;
    background: var(--cream-light);
}

.hero-inner {
    max-width: 1020px;
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    display: inline-block;
    margin-bottom: 24px;
    font-family: "Archivo", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero h1 {
    max-width: 980px;
    margin: 0 auto 28px;
    font-family: "Archivo", sans-serif;
    font-size: clamp(46px, 6vw, 78px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: var(--green);
}

.hero-description {
    max-width: 760px;
    margin: 0 auto 34px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(43, 43, 38, 0.78);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-origin {
    margin-top: 42px;
    font-family: "Archivo", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

/* =========================
   ¿POR QUÉ MALAK?
========================= */

.why-malak {
    padding: 110px 32px;
    background: var(--green);
}

.why-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 58px;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    font-family: "Archivo", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-heading h2 {
    margin-bottom: 22px;
    font-family: "Archivo", sans-serif;
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--white);
}

.section-heading p {
    max-width: 680px;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.benefit-card {
    min-height: 250px;
    padding: 34px 28px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);

    display: flex;
    flex-direction: column;
    justify-content: center;}

.benefit-card:last-child {
    border-right: none;
}

.benefit-card h3 {
    margin-bottom: 16px;
    font-family: "Archivo", sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
}

/* =========================
   CATÁLOGO PREMIUM
========================= */

.catalog-section {
    padding: 120px 32px;
    background: var(--green-dark);
    overflow: hidden;
}

.catalog-container {
    max-width: 1180px;
    margin: 0 auto;
}

.catalog-heading {
    margin-bottom: 64px;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: end;
    gap: 70px;
}

.catalog-eyebrow {
    display: block;
    margin-bottom: 18px;
    font-family: "Archivo", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.catalog-heading h2 {
    max-width: 760px;
    font-family: "Archivo", sans-serif;
    font-size: clamp(40px, 5vw, 66px);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -0.045em;
    color: var(--white);
}

.catalog-heading > p {
    padding-bottom: 8px;
    font-size: 15px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
}

.catalog-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    min-width: 0;
    background: var(--cream-light);
    overflow: hidden;
}

.product-card-featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
}

.product-image,
.product-images {
    position: relative;
    overflow: hidden;
    background: #e9e4d7;
}

.product-image img,
.product-images img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img,
.product-card:hover .product-images img {
    transform: scale(1.025);
}

.product-images-double {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.product-images-double img {
    height: 100%;
    object-fit: cover;
}

.product-images-double img:first-child {
    border-right: 1px solid rgba(30, 74, 59, 0.12);
}

.product-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    padding: 9px 13px;
    font-family: "Archivo", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    background: rgba(247, 243, 233, 0.94);
    backdrop-filter: blur(6px);
}

.product-content {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 28px;
    align-items: start;
}

.product-card-featured .product-content {
    padding: 42px 38px;
    align-content: center;
}

.product-category {
    display: block;
    margin-bottom: 8px;
    font-family: "Archivo", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.product-content h3 {
    margin-bottom: 13px;
    font-family: "Archivo", sans-serif;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--green);
}

.product-card-featured .product-content h3 {
    font-size: 35px;
}

.product-content p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(43, 43, 38, 0.72);
}

.product-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gold);
    font-family: "Archivo", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
}

.product-link span {
    font-size: 17px;
    transition: transform 0.2s ease;
}

.product-link:hover span {
    transform: translateX(5px);
}

/* =========================
   HISTORIA Y CONFIANZA
========================= */

.story-section {
    padding: 120px 32px;
    background: var(--cream-light);
}

.story-container {
    max-width: 1180px;
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 90px;
}

.story-intro {
    max-width: 520px;
}

.story-eyebrow {
    display: block;
    margin-bottom: 18px;
    font-family: "Archivo", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.story-intro h2 {
    margin-bottom: 24px;
    font-family: "Archivo", sans-serif;
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 900;
    line-height: 1.03;
    letter-spacing: -0.045em;
    color: var(--green);
}

.story-intro p {
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(43, 43, 38, 0.72);
}

.story-visual {
    min-height: 590px;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.story-main-card {
    position: relative;
    grid-row: 1 / 3;
    padding: 52px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
    background: var(--green);
}

.story-main-card::before,
.story-main-card::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.story-main-card::before {
    width: 330px;
    height: 330px;
    right: -160px;
    top: -130px;
}

.story-main-card::after {
    width: 230px;
    height: 230px;
    right: -100px;
    top: -80px;
}

.story-card-label {
    position: relative;
    z-index: 1;
    margin-bottom: 38px;
    font-family: "Archivo", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.story-main-card strong {
    position: relative;
    z-index: 1;
    display: block;
    font-family: "Archivo", sans-serif;
    font-size: clamp(72px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.78;
    letter-spacing: -0.08em;
    color: var(--white);
}

.story-years {
    position: relative;
    z-index: 1;
    display: block;
    margin: 25px 0 28px;
    font-family: "Archivo", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

.story-main-card p {
    position: relative;
    z-index: 1;
    max-width: 390px;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

.story-lines {
    position: absolute;
    right: 32px;
    bottom: 32px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.story-lines span {
    width: 5px;
    background: var(--gold);
}

.story-lines span:nth-child(1) {
    height: 28px;
}

.story-lines span:nth-child(2) {
    height: 48px;
}

.story-lines span:nth-child(3) {
    height: 70px;
}

.story-small-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.story-small-card span {
    margin-bottom: 13px;
    font-family: "Archivo", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.story-small-card strong {
    font-family: "Archivo", sans-serif;
    font-size: 22px;
    line-height: 1.25;
}

.story-location {
    color: var(--green);
    background: var(--gold);
}

.story-location span {
    color: rgba(30, 74, 59, 0.72);
}

.story-service {
    color: var(--green);
    background: var(--white);
    border: 1px solid var(--line);
}

.story-service span {
    color: var(--gold);
}

.story-values {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.story-values article {
    padding: 34px 32px;
    border-right: 1px solid var(--line);
}

.story-values article:last-child {
    border-right: none;
}

.story-values h3 {
    margin-bottom: 13px;
    font-family: "Archivo", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--green);
}

.story-values p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(43, 43, 38, 0.68);
}

/* =========================
   CONTACTO Y SOLICITUD
========================= */

.contact-section {
    padding: 120px 32px;
    color: var(--white);
    background: var(--green-dark);
}

.contact-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.contact-information {
    position: sticky;
    top: 125px;
}

.contact-eyebrow {
    display: block;
    margin-bottom: 20px;
    font-family: "Archivo", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-information h2 {
    margin-bottom: 24px;
    font-family: "Archivo", sans-serif;
    font-size: clamp(40px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.045em;
    color: var(--white);
}

.contact-description {
    max-width: 510px;
    margin-bottom: 44px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.68);
}

.contact-benefits {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-benefit {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-benefit strong {
    display: block;
    margin-bottom: 7px;
    font-family: "Archivo", sans-serif;
    font-size: 16px;
    color: var(--white);
}

.contact-benefit p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.58);
}

.contact-direct {
    margin-top: 42px;
}

.contact-direct > span {
    display: block;
    margin-bottom: 8px;
    font-family: "Archivo", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.contact-direct a {
    display: inline-block;
    font-family: "Archivo", sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--white);
}

.contact-direct p {
    margin-top: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.52);
}

/* Caja del formulario */

.contact-form-wrapper {
    padding: 52px;
    color: var(--charcoal);
    background: var(--cream-light);
}

.form-heading {
    margin-bottom: 38px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.form-heading > span {
    display: block;
    margin-bottom: 12px;
    font-family: "Archivo", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.form-heading h3 {
    margin-bottom: 13px;
    font-family: "Archivo", sans-serif;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--green);
}

.form-heading p {
    max-width: 520px;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(43, 43, 38, 0.68);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    min-width: 0;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    font-family: "Archivo", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid rgba(30, 74, 59, 0.25);
    border-radius: 0;
    outline: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: var(--charcoal);
    background: transparent;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(43, 43, 38, 0.42);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    min-height: 58px;
    margin-top: 8px;
    padding: 15px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    cursor: pointer;
    font-family: "Archivo", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--green);
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.form-submit:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.form-submit span:last-child {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.form-submit:hover span:last-child {
    transform: translateX(6px);
}

.form-notice {
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
    color: rgba(43, 43, 38, 0.5);
}

/* =========================
   FOOTER
========================= */

.site-footer {
    padding: 78px 32px 26px;
    color: var(--white);
    background: #0d1d17;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto 65px;
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 23px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
}

.footer-logo-image {
    display: block;
    width: 290px;
    height: auto;
}

.footer-logo .logo-mark {
    width: 36px;
}

.footer-logo-name {
    display: block;
    font-family: "Archivo", sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.04em;
    color: var(--white);
}

.footer-logo-sub {
    display: block;
    margin-top: -2px;
    font-family: "Archivo", sans-serif;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
}

.footer-brand > p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-title {
    margin-bottom: 10px;
    font-family: "Archivo", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.footer-column a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    color: var(--white);
    transform: translateX(3px);
}

.footer-column p {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.52);
}

.footer-cta-column {
    padding-left: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-button {
    width: 100%;
    margin-top: 8px;
    padding: 14px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--gold);
    font-family: "Archivo", sans-serif;
    font-size: 10px !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white) !important;
}

.footer-button span {
    font-size: 19px;
}

.footer-bottom {
    max-width: 1180px;
    margin: 0 auto;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.38);
}


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

@media (max-width: 900px) {
    .hero { padding-top: 90px; }

    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .benefit-card:nth-child(2) { border-right: none; }
    .benefit-card:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .catalog-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-card-featured { grid-template-columns: 1fr; }
    .product-card-featured .product-content { padding: 34px 32px; }

    .story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .story-intro { max-width: 720px; }
    .story-visual { min-height: 520px; }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }
    .contact-information {
        position: static;
        max-width: 720px;
    }

    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { max-width: none; }
    .footer-cta-column {
        padding-left: 0;
        border-left: none;
    }
}

/* =========================
   CELULARES
========================= */

@media (max-width: 700px) {
    .header-inner { padding: 14px 18px; }
    .phone-link { display: none; }
    .btn-header {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 9.5px;
    }
    .logo-text { font-size: 18px; }
    .logo-sub { font-size: 7px; }

    .hero { padding: 72px 18px 62px; }
    .hero-label {
        margin-bottom: 18px;
        font-size: 10px;
    }
    .hero h1 {
        font-size: 42px;
        line-height: 1.05;
    }
    .hero-description { font-size: 15px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero-origin { margin-top: 32px; }

    .why-malak { padding: 76px 18px; }
    .section-heading { margin-bottom: 38px; }
    .section-heading h2 { font-size: 38px; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card {
        min-height: auto;
        padding: 28px 4px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }
    .benefit-card:last-child { border-bottom: none; }

    .catalog-section { padding: 78px 18px; }
    .catalog-heading { margin-bottom: 40px; }
    .catalog-heading h2 { font-size: 38px; }
    .catalog-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .product-card-featured { grid-column: auto; }
    .product-images-double { grid-template-columns: 1fr 1fr; }
    .product-content,
    .product-card-featured .product-content { padding: 26px 22px; }
    .product-content h3,
    .product-card-featured .product-content h3 { font-size: 25px; }

    .story-section { padding: 78px 18px; }
    .story-container {
        margin-bottom: 48px;
        gap: 38px;
    }
    .story-intro h2 { font-size: 38px; }
    .story-visual {
        min-height: auto;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 12px;
    }
    .story-main-card {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 470px;
        padding: 38px 28px;
    }
    .story-main-card strong { font-size: 120px; }
    .story-small-card {
        min-height: 190px;
        padding: 24px 20px;
    }
    .story-small-card strong { font-size: 18px; }
    .story-values { grid-template-columns: 1fr; }
    .story-values article {
        padding: 28px 4px;
        border-right: none;
        border-bottom: 1px solid var(--line);
    }
    .story-values article:last-child { border-bottom: none; }

    .contact-section { padding: 78px 18px; }
    .contact-container { gap: 40px; }
    .contact-information h2 { font-size: 38px; }
    .contact-description { margin-bottom: 32px; }
    .contact-form-wrapper { padding: 34px 22px; }
    .form-heading { margin-bottom: 30px; }
    .form-heading h3 { font-size: 28px; }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 23px;
    }
    .contact-direct a { font-size: 23px; }

    .site-footer { padding: 60px 18px 24px; }
    .footer-container {
        margin-bottom: 45px;
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .footer-brand { max-width: 360px; }
    .footer-cta-column {
        padding-top: 28px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}
@media (max-width: 430px) {
    .logo-image {
        width: 170px;
    }

    .footer-logo-image {
        width: 220px;
    }

    .hero h1 {
        font-size: 35px;
    }
}

.logo-image {
    display: block;
    width: 250px;
    height: auto;
}

.footer-logo-image {
    display: block;
    width: 290px;
    height: auto;
}


/* =========================
   ANIMACIONES Y TRANSICIONES
========================= */

/* Sombra del encabezado al desplazarse */

header {
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

header.header-scrolled {
    background: rgba(251, 249, 244, 0.98);
    border-bottom-color: transparent;
    box-shadow: 0 10px 30px rgba(18, 40, 31, 0.1);
}

/* Aparición de elementos al hacer scroll */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

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

/* Retrasos ligeros para grupos de tarjetas */

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

/* Tarjetas de beneficios */

.benefit-card {
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

/* Tarjetas del catálogo */

.product-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2);
}

/* Tarjetas de historia */

.story-main-card,
.story-small-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.story-main-card:hover,
.story-small-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(18, 40, 31, 0.14);
}

/* Valores de la empresa */

.story-values article {
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.story-values article:hover {
    background: rgba(169, 165, 92, 0.08);
    transform: translateY(-4px);
}

/* Enlaces del teléfono */

.phone-link,
.contact-direct a {
    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.phone-link:hover {
    color: var(--gold);
}

.contact-direct a:hover {
    color: var(--gold);
}

/* Accesibilidad: desactiva las animaciones cuando el usuario lo solicita */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* En celulares evitamos movimientos innecesarios al tocar */

@media (max-width: 700px) {
    .benefit-card:hover,
    .product-card:hover,
    .story-main-card:hover,
    .story-small-card:hover,
    .story-values article:hover {
        transform: none;
    }
}

/* ==========================
   VISOR DE IMÁGENES
========================== */

.image-modal{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.88);

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

    opacity:0;
    visibility:hidden;

    transition:.3s;

    z-index:9999;

    padding:30px;

}

.image-modal.active{

    opacity:1;
    visibility:visible;

}

.image-modal-content{

    max-width:92%;
    max-height:92%;

    border-radius:16px;

    box-shadow:0 25px 60px rgba(0,0,0,.45);

    animation:zoomImage .25s ease;

}

.image-modal-close{

    position:absolute;

    top:20px;
    right:30px;

    color:white;

    font-size:45px;

    cursor:pointer;

    user-select:none;

}

.product-image img,
.product-images img{

    cursor:zoom-in;

}

@keyframes zoomImage{

    from{

        transform:scale(.85);
        opacity:0;

    }

    to{

        transform:scale(1);
        opacity:1;

    }

}

.coverage-note{

    margin-top:12px;

    font-size:.85rem;

    color:#777;

    font-style:italic;

}
