:root {
  --black: #07080b;
  --black-2: #101116;
  --white: #ffffff;
  --gray-50: #f5f6f8;
  --gray-100: #ebedf1;
  --gray-500: #6c7280;
  --gray-700: #2c313a;
  --red: #d71920;
  --red-2: #a90f16;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --shadow: 0 28px 80px rgba(0,0,0,.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 700;
  color: var(--gray-700);
}

.nav-links a {
  font-size: .94rem;
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);

  background-image: url("assets/img/linea_productos.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 26%,
    rgba(0, 0, 0, 0.58) 48%,
    rgba(0, 0, 0, 0) 78%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 70px;
  display: flex;
  justify-content: flex-start;
}

.hero-content {
  width: 100%;
  max-width: 760px;
  text-align: left;
  padding: 100px 0;
}



.hero .eyebrow {
  display: inline-block;
  color: var(--red);
  margin-bottom: 18px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  margin: 0 0 24px;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
  text-align: left;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.55;
  text-align: justify;
  text-wrap: pretty;
}

/* Cuando aún no coloques imagen, se ve un contenedor elegante */
.hero-media img[src$=".png"] {
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    radial-gradient(circle at center, rgba(215,25,32,.22), transparent 58%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 28px;
}

.section {
  padding: 92px 0;
}

.section-title {
  margin-bottom: 38px;
}

.section-title h2 {
  margin-bottom: 10px;
}

.section-title p {
  margin: 0;
  max-width: 560px;
  color: var(--gray-500);
  line-height: 1.6;
}

.products-section {
  background: var(--gray-50);
}

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

.product-card {
  
  background: #ffffff;
	position: relative;
  border: 1px solid #e9ebef;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 26px;
  pointer-events: none;
  transition: border-color 0.28s ease;
  z-index: 3;
}

.product-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  background: var(--red);
  border-radius: 0 0 999px 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
  z-index: 4;
}


.product-card-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(215, 25, 32, 0.35);
  box-shadow: 0 28px 75px rgba(215, 25, 32, 0.13);
}

.product-card:hover::before {
  border-color: rgba(215, 25, 32, 0.75);
}

.product-card:hover::after {
  transform: scaleX(1);
}


.product-card-featured {
  grid-column: span 2;
  grid-row: span 2;
	  background:
    radial-gradient(circle at top right, rgba(215, 25, 32, 0.16), transparent 30%),
    radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.06), transparent 35%),
    linear-gradient(145deg, #ffffff 0%, #f6f7f9 55%, #eef1f4 100%);
  border: 1px solid rgba(215, 25, 32, 0.16);
}

.tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.product-image {
  min-height: 240px;
  background:
    radial-gradient(circle at center, rgba(215, 25, 32, 0.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-featured .product-image {
  min-height: 420px;
}

.product-image img {
  width: 85%;
  height: 220px;
  object-fit: contain;
	 transition: transform 0.32s ease;
}


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

.product-info {
  padding: 24px;
}

.product-card-featured .product-info h3 {
  font-size: 2.6rem;
}

.product-info h3 {
  margin: 0 0 10px;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.product-type {
  margin-bottom: 14px;
  color: var(--red);
  font-weight: 800;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-desc {
  margin: 0 0 18px;
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.55;
}

.tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card {
  position: relative;
}

@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card-featured {
    grid-column: span 2;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card-featured {
    grid-column: auto;
  }

  .product-card-featured .product-image,
  .product-image {
    min-height: 260px;
  }

  .product-card-featured .product-image img,
  .product-image img {
    height: 230px;
  }
}

.presentation {
  margin: 0 0 20px;
  color: var(--gray-700);
  font-size: 0.92rem;
}

.btn {
  
	display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--black);
  color: var(--white);
}

.btn-dark {
  background: var(--red);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-outline {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,.24);
}

.btn-outline-light:hover {
  border-color: var(--red);
}

.btn-full {
  width: 100%;
}


.resources-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(215,25,32,.24), transparent 32%),
    linear-gradient(135deg, #101116 0%, #07080b 100%);
  color: var(--white);
}

.resources-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 64px;
}

.resources-content {
  max-width: 660px;
}

.resources-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 2.2vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}


.resources-card p {
  max-width: 720px;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
}

.resources-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 28px;
}

.resources-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

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

.resources-btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 12px 28px rgba(215,25,32,.24);
}

.resources-btn-primary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 12px 28px rgba(255,255,255,.14);
}

.resources-btn-secondary {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}

.resources-btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.resources-mockup {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resources-mockup img {
  width: 100%;
  max-width: 620px;
  max-height: 460px;
  object-fit: contain;
  filter: drop-shadow(0 34px 52px rgba(0,0,0,.42));
  transition: transform .35s ease;
}

.resources-mockup:hover img {
  transform: translateY(-6px) scale(1.015);
}



/* ===== COTIZACIÓN PREMIUM ===== */
.quote-premium-section {
  padding: 92px 0;
  background: #f4f5f7;
}

.quote-premium-shell {
  overflow: hidden;
  border-radius: 30px;
  background: #090a0e;
  box-shadow: 0 28px 80px rgba(4, 7, 12, .20);
}

.quote-premium-main {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .78fr) minmax(285px, .72fr);
  align-items: center;
  gap: 28px;
  padding: 56px 42px 44px;
  color: #fff;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 255, 255, .045), transparent 25%),
    linear-gradient(135deg, #0c0e13 0%, #050609 100%);
}


.quote-kicker,
.quote-bottom-copy > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.quote-kicker i,
.quote-bottom-copy > span i {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.quote-copy h2 {
  max-width: 560px;
  margin: 24px 0 18px;
  font-size: clamp(2rem, 3.0vw, 3.0rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.quote-copy h2 span {
  color: var(--red);
}

.quote-lead {
  max-width: 490px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .98rem;
  line-height: 1.68;
}

.quote-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.quote-benefit {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  color: #fff;
}

.quote-benefit-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(215, 25, 32, .9);
  border-radius: 10px;
  color: var(--red);
  font-size: 1rem;
}

.quote-benefit strong {
  font-size: .76rem;
  line-height: 1.35;
}

.quote-product-visual {
  align-self: end;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.quote-product-visual img {
  width: 100%;
  max-width: 410px;
  max-height: 440px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, .55));
}

.quote-contact-card {
  position: relative;
  padding: 28px 26px 24px;
  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(24, 26, 33, .92), rgba(7, 8, 12, .88));
  box-shadow: 0 22px 55px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(18px);
}

.quote-logo {
  width: auto;
  max-width: 150px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 26px;
}

.quote-contact-list {
  display: grid;
  gap: 17px;
}

.quote-contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .80);
  font-size: .82rem;
  transition: color .22s ease;
}

.quote-contact-list a:hover {
  color: #fff;
}

.quote-contact-list a span {
  width: 20px;
  color: var(--red);
  font-size: 1.05rem;
  text-align: center;
}

.quote-card-divider {
  height: 1px;
  margin: 28px 0 20px;
  background: rgba(255, 255, 255, .18);
}

.quote-send-button {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  border: 1px solid var(--red);
  border-radius: 13px;
  background: linear-gradient(135deg, #f22029, #bd1118);
  color: #fff;
  font-size: .86rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(215, 25, 32, .28);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.quote-send-button:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: #fff;
  color: #090a0e;
}

.quote-send-button span:last-child {
  font-size: 1.3rem;
}

.quote-privacy {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .53);
  font-size: .67rem;
  text-align: center;
}

.quote-premium-bottom {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 36px;
  padding: 34px 42px 38px;
  background: linear-gradient(180deg, #fff, #f6f7f9);
}

.quote-bottom-copy > span {
  color: var(--red);
}

.quote-bottom-copy h3 {
  margin: 15px 0 0;
  color: #101116;
  font-size: clamp(1.0rem, 1.5vw, 1.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.quote-bottom-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.quote-bottom-features > div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.quote-bottom-features > div > span {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #d9dce2;
  border-radius: 50%;
  color: #a3a8b0;
  font-size: 1.05rem;
}

.quote-bottom-features p {
  margin: 0;
  color: #6b717d;
  font-size: .72rem;
  line-height: 1.4;
}

.quote-bottom-features strong {
  display: block;
  color: #17191f;
  font-size: .74rem;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .quote-premium-main {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .8fr);
  }

  .quote-product-visual {
    min-height: 330px;
  }

  .quote-contact-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
  }

  .quote-logo {
    margin: 0;
  }

  .quote-card-divider,
  .quote-privacy {
    display: none;
  }

  .quote-send-button {
    min-width: 190px;
  }

  .quote-premium-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .quote-premium-section {
    padding: 62px 0;
  }

  .quote-premium-shell {
    border-radius: 22px;
  }

  .quote-premium-main {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 24px 28px;
  }


  @media (max-width: 760px) {
  .quote-copy h2 {
    margin-top: 18px;
    font-size: clamp(1.9rem, 8.5vw, 2.8rem);
    line-height: 1.05;
  }
}

  .quote-benefits {
    gap: 10px;
    margin-top: 30px;
  }

  .quote-benefit strong {
    font-size: .66rem;
  }

  .quote-product-visual {
    order: 2;
    min-height: 280px;
  }

  .quote-product-visual img {
    max-width: 330px;
    max-height: 330px;
  }

  .quote-contact-card {
    order: 3;
    grid-column: auto;
    display: block;
    padding: 24px;
  }

  .quote-logo {
    margin-bottom: 24px;
  }

  .quote-card-divider,
  .quote-privacy {
    display: block;
  }

  .quote-send-button {
    min-width: 0;
  }

  .quote-premium-bottom {
    gap: 28px;
    padding: 30px 24px 34px;
  }

  .quote-bottom-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 430px) {
  .quote-benefits {
    grid-template-columns: 1fr;
  }

  .quote-benefit {
    flex-direction: row;
    align-items: center;
  }

  .quote-benefit strong br {
    display: none;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .resources-card {
    grid-template-columns: 1fr;
  }

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

  .product-card-featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .resources-actions {
    justify-content: flex-start;
  }

  .resources-mockup {
    min-height: 340px;
  }

  .resources-mockup img {
    max-height: 360px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 52px 0;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-media img {
    min-height: 260px;
  }

  .section {
    padding: 62px 0;
  }

  .section-title {
    display: block;
  }

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

  .product-card-featured {
    grid-column: auto;
  }

  .product-card-featured .product-image,
  .product-image {
    min-height: 260px;
  }

  .product-card-featured .product-image img,
  .product-image img {
    height: 230px;
  }
.resources-actions {
    flex-direction: column;
  }

  .resources-btn {
    width: 100%;
  }

  .resources-mockup {
    min-height: 260px;
  }

  .resources-mockup img {
    max-height: 280px;
  }

}

/* =========================================================
   HERO EDITORIAL + HEADER TRANSPARENTE / GLASS AL SCROLL
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background-color .32s ease,
    border-color .32s ease,
    box-shadow .32s ease,
    backdrop-filter .32s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 11, 15, .72);
  border-bottom-color: rgba(255, 255, 255, .10);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .20);
  backdrop-filter: blur(18px) saturate(135%);
  -webkit-backdrop-filter: blur(18px) saturate(135%);
}

.site-header .nav {
  min-height: 82px;
  transition: min-height .28s ease;
}

.site-header.is-scrolled .nav {
  min-height: 70px;
}

.brand {
  position: relative;
  min-width: 142px;
  height: 44px;
}

.brand-logo {
  position: absolute;
  inset: 50% auto auto 0;
  width: auto;
  max-width: 142px;
  height: 42px;
  object-fit: contain;
  transform: translateY(-50%);
  transition: opacity .25s ease, transform .25s ease;
}

.brand-logo-dark {
  opacity: 0;
  pointer-events: none;
}

.site-header.is-scrolled .brand-logo-light {
  opacity: 1;
}

.site-header.is-scrolled .brand-logo-dark {
  opacity: 0;
}

.nav-links {
  color: rgba(255, 255, 255, .88);
}

.nav-links a:not(.nav-cta) {
  position: relative;
  transition: color .22s ease;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.nav-links a:not(.nav-cta):hover {
  color: #fff;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 0;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, .92);
  background: transparent;
  transition: padding .25s ease, background .25s ease, border-color .25s ease, transform .25s ease;
}

.site-header.is-scrolled .nav-cta {
  padding: 11px 19px;
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.site-header.is-scrolled .nav-cta:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: min(760px, 92vh);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 255, 255, .065), transparent 38%),
    linear-gradient(180deg, #17191e 0%, #0b0d11 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 75%);
  opacity: .32;
}

.hero-overlay {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 122px 50px 72px;
  display: flex;
  justify-content: flex-start;
}

.hero-content {
  width: 100%;
  max-width: 800px;
  padding: 72px 0;
  text-align: left;
}

.hero .eyebrow {
  color: #ff767c;
  margin-bottom: 22px;
  letter-spacing: .11em;
  font-size: .78rem;
  font-weight: 700;
}

.hero h1 {
  max-width: 830px;
  margin: 0 0 30px;
  font-size: clamp(2.65rem, 5vw, 5.15rem);
  line-height: .97;
  letter-spacing: -.05em;
  font-weight: 700;
}

.hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.7;
  text-align: left;
}

@media (max-width: 720px) {
  .site-header .nav,
  .site-header.is-scrolled .nav {
    min-height: auto;
    padding: 14px 0;
  }

  .nav {
    flex-direction: row;
    align-items: center;
  }

  .brand {
    min-width: 112px;
    height: 36px;
  }

  .brand-logo {
    max-width: 112px;
    height: 34px;
  }

  .nav-links {
    width: auto;
    gap: 14px;
  }

  .nav-links a {
    font-size: .78rem;
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta,
  .site-header.is-scrolled .nav-cta {
    padding: 8px 12px;
    background: var(--red);
    border-color: var(--red);
  }

  .hero {
    min-height: 640px;
  }

  .hero-inner {
    width: min(100% - 28px, 1180px);
    padding: 118px 0 48px;
  }

  .hero-content {
    padding: 54px 0;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11.2vw, 3.45rem);
    line-height: .99;
  }

  .hero p {
    max-width: 100%;
    font-size: .96rem;
    line-height: 1.65;
  }
}

/* =========================================================
   HERO VISUAL CON SUELO — OVERRIDE FINAL
   Mantiene intacto el header transparente / glass al scroll.
   ========================================================= */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background-color: #080a0e;
  background-image: url("assets/img/header-suelo.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.hero::before {
  display: none;
}

.hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(4, 6, 9, 0.88) 0%,
      rgba(4, 6, 9, 0.74) 34%,
      rgba(4, 6, 9, 0.45) 66%,
      rgba(4, 6, 9, 0.20) 100%
    );
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: 142px 0 70px;
  text-align: center;
}

.hero-copy {
  max-width: 1040px;
  margin: 0 auto;
}

.hero h1 {
  max-width: none;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-align: center;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  font-size: clamp(3rem, 5.7vw, 6.25rem);
}

.hero-line-small {
  margin-top: 10px;
  font-size: clamp(1.85rem, 3.25vw, 3.45rem);
}

.hero-line-red {
  margin-top: 8px;
  color: var(--red);
  font-size: clamp(2.85rem, 5.45vw, 5.9rem);
}

.hero .hero-copy > p {
  max-width: 760px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.65;
  text-align: center;
}

.hero-benefits {
  max-width: 980px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hero-benefit {
  position: relative;
  padding: 0 28px;
  text-align: center;
}

.hero-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: 145px;
  background: rgba(255, 255, 255, 0.13);
}

.hero-benefit-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--red);
  font-size: 1.8rem;
  font-weight: 700;
  background: rgba(6, 8, 12, 0.18);
  backdrop-filter: blur(3px);
}

.hero-benefit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  line-height: 1.48;
  text-align: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    background-position: center bottom;
  }

  .hero .hero-content {
    padding: 132px 0 60px;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 0;
  }

  .hero-benefit:nth-child(2)::after {
    display: none;
  }

  .hero-benefit:not(:last-child)::after {
    height: 118px;
  }
}

@media (max-width: 600px) {
  .hero .hero-content {
    width: min(100% - 28px, 1180px);
    padding: 116px 0 46px;
  }

  .hero h1 span:first-child {
    font-size: clamp(2.2rem, 11.5vw, 3.35rem);
  }

  .hero-line-small {
    font-size: clamp(1.25rem, 6.5vw, 1.85rem);
  }

  .hero-line-red {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  .hero .hero-copy > p {
    max-width: 94%;
    margin-top: 24px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
    gap: 30px 0;
  }

  .hero-benefit {
    padding: 0 10px;
  }

  .hero-benefit::after {
    display: none;
  }

  .hero-benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 13px;
    font-size: 1.4rem;
  }

  .hero-benefit p {
    font-size: 0.78rem;
    line-height: 1.4;
  }
}


/* =========================================================
   LÍNEA DE PRODUCTOS · DISTRIBUCIÓN PARA 4 PRODUCTOS
   TERRA protagonista + 3 productos secundarios
   ========================================================= */

.products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* TERRA ocupa toda la primera fila */
.product-card-featured {
  grid-column: 1 / -1;
  grid-row: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: stretch;
  min-height: 470px;
}

/* Imagen protagonista más grande */
.product-card-featured .product-image {
  min-height: 470px;
}

.product-card-featured .product-image img {
  width: 92%;
  height: 430px;
}

/* Texto de TERRA centrado verticalmente */
.product-card-featured .product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
}

.product-card-featured .product-info h3 {
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.product-card-featured .product-desc {
  max-width: 520px;
  font-size: 1rem;
}

/* Las tres tarjetas secundarias tienen la misma proporción */
.products-grid > .product-card:not(.product-card-featured) {
  min-width: 0;
}

.products-grid > .product-card:not(.product-card-featured) .product-image {
  min-height: 285px;
}

.products-grid > .product-card:not(.product-card-featured) .product-image img {
  width: 90%;
  height: 255px;
}

.products-grid > .product-card:not(.product-card-featured) .product-info {
  display: flex;
  flex-direction: column;
  height: calc(100% - 285px);
}

.products-grid > .product-card:not(.product-card-featured) .presentation {
  margin-top: auto;
}

/* Tablet */
@media (max-width: 1000px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-card-featured .product-info {
    padding: 36px;
  }

  /* La tercera tarjeta secundaria queda centrada */
  .products-grid > .product-card:not(.product-card-featured):last-child {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
  }
}

/* Móvil */
@media (max-width: 720px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card-featured {
    grid-column: auto;
    display: block;
    min-height: 0;
  }

  .product-card-featured .product-image {
    min-height: 300px;
  }

  .product-card-featured .product-image img {
    height: 270px;
  }

  .product-card-featured .product-info {
    padding: 26px;
  }

  .products-grid > .product-card:not(.product-card-featured):last-child {
    grid-column: auto;
    width: 100%;
  }

  .products-grid > .product-card:not(.product-card-featured) .product-image {
    min-height: 270px;
  }

  .products-grid > .product-card:not(.product-card-featured) .product-image img {
    height: 240px;
  }
}


/* =========================================================
   FOOTER MINIMALISTA · REDES SOCIALES + COPYRIGHT
   ========================================================= */
.site-footer {
  position: relative;
  padding: 34px 0 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -80%, rgba(215, 25, 32, .10), transparent 46%),
    linear-gradient(180deg, #181a1e 0%, #111216 100%);
  color: rgba(255, 255, 255, .68);
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, .78);
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
  transition:
    transform .22s ease,
    color .22s ease,
    background-color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-3px);
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 10px 25px rgba(215, 25, 32, .25);
  outline: none;
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link:first-child svg path,
.footer-social-link .icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-divider {
  width: min(700px, 82%);
  height: 1px;
  margin: 26px auto 14px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, .10) 20%,
    rgba(255, 255, 255, .10) 80%,
    transparent 100%
  );
}

.footer-copyright {
  margin: 0;
  font-size: .78rem;
  line-height: 1.5;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .55);
}

.footer-copyright strong {
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
}

@media (max-width: 600px) {
  .site-footer {
    padding: 30px 0 18px;
  }

  .footer-socials {
    gap: 10px;
  }

  .footer-social-link {
    width: 40px;
    height: 40px;
  }

  .footer-divider {
    width: 92%;
    margin-top: 23px;
  }

  .footer-copyright {
    font-size: .72rem;
  }
}
