/* ============================================================
   OXÍGENO BS. AS. — Design system
   Industrial / técnico. Naranja cilindro + acero azul oscuro.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@500;700;800;900&family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500&display=swap');

:root{
  /* Palette */
  --ink:        #0E1A2B;
  --ink-2:      #142438;
  --steel:      #46536A;
  --steel-2:    #8B96A8;
  --paper:      #F2F1EC;
  --paper-2:    #E8E6DD;
  --white:      #FFFFFF;
  --orange:     #E8590C;
  --orange-2:   #FF7A29;
  --yellow:     #F5B700;
  --line:       #D8D5C9;
  --line-dark:  rgba(255,255,255,0.14);

  /* Type */
  --f-display: 'Big Shoulders Display', sans-serif;
  --f-body: 'IBM Plex Sans', sans-serif;
  --f-mono: 'IBM Plex Mono', monospace;

  --shadow-card: 0 1px 2px rgba(14,26,43,.06), 0 8px 24px -12px rgba(14,26,43,.18);
  --shadow-lift: 0 20px 60px -20px rgba(14,26,43,.45);

  --container: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  max-width:100vw;
}
img,iframe,video{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--f-display); font-weight:800; letter-spacing:-.01em; }

.wrap{ max-width:var(--container); margin:0 auto; padding:0 24px; }
@media (max-width:640px){ .wrap{ padding:0 18px; } }

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

.label{
  font-family:var(--f-mono);
  font-size:12px;
  font-weight:500;
  letter-spacing:.04em;
  color:var(--orange);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.label::before{
  content:'';
  width:16px; height:1px;
  background:var(--orange);
  display:inline-block;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:16px 28px;
  border-radius:4px;
  font-weight:700;
  font-size:15px;
  border:none;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex-shrink:0; }
@media (max-width:480px){
  .btn{ padding:14px 18px; font-size:14px; white-space:normal; text-align:center; }
}
.btn-primary{
  background:var(--orange);
  color:var(--white);
  box-shadow:0 12px 28px -10px rgba(232,89,12,.55);
}
.btn-primary:hover{ background:var(--orange-2); transform:translateY(-2px); }
.btn-ghost-dark{
  background:rgba(255,255,255,.08);
  color:var(--white);
  border:1px solid rgba(255,255,255,.28);
}
.btn-ghost-dark:hover{ background:rgba(255,255,255,.16); }
.btn-light{
  background:var(--white);
  color:var(--ink);
}
.btn-light:hover{ background:var(--paper-2); }
.btn-outline{
  background:transparent;
  color:var(--ink);
  border:1.5px solid var(--ink);
}
.btn-outline:hover{ background:var(--ink); color:var(--white); }
.btn:disabled{ opacity:.5; cursor:not-allowed; transform:none !important; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(242,241,236,.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header .wrap{
  height:76px;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:42px; height:42px;
  border-radius:6px;
  background:var(--ink);
  display:grid; place-items:center;
  flex-shrink:0;
}
.brand-mark svg{ width:24px; height:24px; }
.brand-mark img{ width:24px; height:auto; }
.brand-name{ font-family:var(--f-display); font-weight:800; font-size:19px; line-height:1; letter-spacing:.01em; }
.brand-sub{ font-family:var(--f-mono); font-size:10px; letter-spacing:.08em; color:var(--steel); margin-top:3px; }

.main-nav{ display:flex; align-items:center; gap:34px; }
.main-nav a{
  font-size:14.5px; font-weight:500; color:var(--ink);
  position:relative; padding:4px 0;
}
.main-nav a::after{
  content:''; position:absolute; left:0; right:100%; bottom:0; height:2px; background:var(--orange);
  transition:right .22s ease;
}
.main-nav a:hover::after{ right:0; }

.header-cta{ display:flex; align-items:center; gap:14px; }
.header-cta .btn{ padding:12px 20px; font-size:13.5px; }
.nav-toggle{ display:none; background:none; border:none; padding:8px; }
.nav-toggle svg{ width:26px; height:26px; }

@media (max-width: 980px){
  .main-nav{ display:none; }
  .nav-toggle{ display:block; }
  .header-cta .btn span.long{ display:none; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  overflow:hidden;
  background:var(--ink);
  color:var(--white);
}
.hero-bg{
  position:absolute; inset:0;
  background-size:cover; background-position:center 30%;
  opacity:.42;
  transform:scale(1.08);
}
.hero-scrim{
  position:absolute; inset:0;
  background:linear-gradient(100deg, var(--ink) 20%, rgba(14,26,43,.86) 55%, rgba(14,26,43,.25) 100%);
}
.hero-grid{
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(180deg, black, transparent 85%);
}
.hero-inner{
  position:relative;
  padding-top:130px; padding-bottom:100px;
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
  align-items:end;
}
.hero-kicker{
  font-family:var(--f-mono); font-size:13px; letter-spacing:.06em; color:var(--orange-2);
  display:flex; align-items:center; gap:10px; margin-bottom:22px;
}
.hero-kicker .dot{ width:7px; height:7px; border-radius:50%; background:var(--orange-2); animation:pulse-dot 2s infinite; }
@keyframes pulse-dot{ 0%,100%{ opacity:1 } 50%{ opacity:.3 } }

.hero h1{
  font-size:clamp(2.6rem, 6vw, 4.6rem);
  line-height:.96;
  letter-spacing:-.015em;
}
.hero h1 em{ font-style:normal; color:var(--orange-2); }
.hero p.lede{
  margin-top:22px; max-width:520px;
  font-size:18px; color:rgba(255,255,255,.78);
}
.hero-ctas{ margin-top:34px; display:flex; flex-wrap:wrap; gap:12px; }
.hero-meta{ margin-top:38px; display:flex; flex-wrap:wrap; gap:26px; }
.hero-meta-item{ display:flex; align-items:center; gap:9px; font-size:14px; color:rgba(255,255,255,.82); }
.hero-meta-item svg{ width:17px; height:17px; color:var(--orange-2); flex-shrink:0; }

@media (max-width:980px){
  .hero-inner{ padding-top:100px; padding-bottom:70px; }
}

/* ---------- Trust strip ---------- */
.trust{
  background:var(--ink-2);
  color:var(--white);
  border-bottom:1px solid var(--line-dark);
}
.trust .wrap{
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:20px;
  padding:34px 24px;
}
.trust-item{ display:flex; align-items:center; gap:14px; min-width:0; }
.trust-item svg{ width:20px; height:20px; color:var(--orange-2); flex-shrink:0; }
.trust-item b{ font-family:var(--f-display); font-weight:800; font-size:17px; display:block; }
.trust-item span{ font-size:12.5px; color:rgba(255,255,255,.6); }
@media (max-width:760px){ .trust .wrap{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){
  .trust .wrap{ grid-template-columns:repeat(4,1fr); gap:8px; padding:16px 10px; }
  .trust-item{ flex-direction:column; align-items:flex-start; gap:5px; text-align:left; }
  .trust-item svg{ width:14px; height:14px; }
  .trust-item b{ font-size:11px; line-height:1.15; }
  .trust-item span{ font-size:8.5px; line-height:1.25; display:block; }
}

/* ---------- Section heads ---------- */
.section{ padding:104px 0; }
@media (max-width:760px){ .section{ padding:70px 0; } }
.section-head{ max-width:640px; }
.section-head h2{ font-size:clamp(2rem,4vw,2.9rem); line-height:1.04; margin-top:14px; }
.section-head p{ margin-top:16px; font-size:17px; color:var(--steel); }
.section-head.center{ margin:0 auto; text-align:center; }
.section-head.center .label::before{ display:none; }
.section-head.center .label{ justify-content:center; }

/* ---------- Services ---------- */
.services-grid{
  margin-top:56px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.service-card{
  background:var(--paper);
  padding:34px 30px;
  transition:background .2s ease;
  min-width:0;
}
.service-card:hover{ background:var(--white); }
.service-idx{ font-family:var(--f-mono); font-size:12px; color:var(--orange); }
.service-icon{
  width:44px; height:44px; border-radius:6px;
  background:var(--orange-2); color:#fff;
  display:grid; place-items:center; margin-top:2px;
}
.service-icon svg{ width:22px; height:22px; }
.service-card h3{ font-size:20px; font-weight:700; margin-top:20px; font-family:var(--f-body); letter-spacing:0; }
.service-card p{ margin-top:8px; font-size:14.5px; color:var(--steel); }
@media (max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){
  .service-card{ padding:16px 14px; }
  .service-icon{ width:32px; height:32px; }
  .service-icon svg{ width:16px; height:16px; }
  .service-card h3{ font-size:14.5px; margin-top:10px; line-height:1.15; }
  .service-card p{ font-size:11.5px; margin-top:5px; line-height:1.35; }
  .service-idx{ font-size:10px; }
}

/* ---------- Brands ---------- */
.brands-section{ background:var(--ink); color:var(--white); }
.brands-section .section-head p{ color:rgba(255,255,255,.6); }
.marquee-stack{ margin-top:54px; }
.marquee-row{ overflow:hidden; padding:7px 0; }
.marquee-row .track{
  display:flex; width:max-content; gap:16px;
  animation:marquee linear infinite;
}
@keyframes marquee{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.marquee-row:hover .track{ animation-play-state:paused; }
.brand-chip{
  height:82px; width:168px; flex-shrink:0;
  background:rgba(255,255,255,.96);
  border-radius:6px;
  display:flex; align-items:center; justify-content:center;
  padding:6px 10px;
}
.brand-chip img{ height:100%; width:100%; object-fit:contain; }
.brands-cta{ margin-top:40px; text-align:center; }
.brands-cta a{ color:var(--orange-2); font-weight:600; display:inline-flex; align-items:center; gap:8px; }
.brands-cta a svg{ width:16px; height:16px; }

/* ---------- Why us ---------- */
.why-grid{
  display:grid; grid-template-columns:.95fr 1.05fr; gap:64px; align-items:center;
}
.why-list{ margin-top:36px; display:flex; flex-direction:column; gap:24px; }
.why-item{ display:flex; gap:18px; min-width:0; }
.why-check{
  width:30px; height:30px; border-radius:50%; flex-shrink:0;
  background:var(--orange); color:var(--white);
  display:grid; place-items:center; margin-top:2px;
}
.why-check svg{ width:16px; height:16px; }
.why-item h4{ font-family:var(--f-body); font-weight:700; font-size:17px; }
.why-item p{ margin-top:4px; font-size:14.5px; color:var(--steel); }

.why-photo{
  position:relative; border-radius:10px; overflow:hidden;
  aspect-ratio:4/5; box-shadow:var(--shadow-lift);
}
.why-photo img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity 1.1s ease; }
.why-photo img.active{ opacity:1; }
.why-badge{
  position:absolute; left:18px; right:18px; bottom:18px;
  background:rgba(14,26,43,.92); backdrop-filter:blur(6px);
  border-radius:8px; padding:18px 20px; color:var(--white);
}
.stars{ display:flex; gap:3px; color:var(--yellow); }
.stars svg{ width:15px; height:15px; }
.why-badge .quote{ margin-top:10px; font-size:14px; font-style:italic; color:rgba(255,255,255,.9); }
.why-badge .src{ margin-top:6px; font-size:12px; color:rgba(255,255,255,.55); }
@media (max-width:900px){ .why-grid{ grid-template-columns:1fr; gap:40px; } }

/* ---------- Contact / quote ---------- */
.contact-section{
  background:var(--ink); color:var(--white);
  position:relative; overflow:hidden;
}
.contact-section::before{
  content:''; position:absolute; top:-20%; right:-10%; width:640px; height:640px;
  background:radial-gradient(circle, rgba(232,89,12,.28), transparent 65%);
  pointer-events:none;
}
.contact-grid{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.contact-section h2{ font-size:clamp(2rem,4vw,2.9rem); line-height:1.05; margin-top:14px; }
.contact-grid > div:first-child p.lede{ margin-top:16px; color:rgba(255,255,255,.7); max-width:440px; font-size:16px; }
.contact-rows{ margin-top:36px; display:flex; flex-direction:column; gap:18px; }
.contact-row{ display:flex; gap:16px; align-items:flex-start; min-width:0; }
.contact-row .ic{
  width:44px; height:44px; border-radius:8px; flex-shrink:0;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14);
  display:grid; place-items:center; transition:background .2s;
}
.contact-row .ic svg{ width:19px; height:19px; }
.contact-row:hover .ic{ background:var(--orange); }
.contact-row > span:last-child{ display:flex; flex-direction:column; padding-top:2px; }
.contact-row .lbl{ display:block; font-family:var(--f-mono); font-size:11px; letter-spacing:.05em; color:rgba(255,255,255,.5); }
.contact-row .val{ display:block; font-weight:600; font-size:16px; margin-top:4px; overflow-wrap:break-word; }

.quote-card{
  background:var(--paper); color:var(--ink);
  border-radius:10px; padding:38px;
  box-shadow:var(--shadow-lift);
}
.quote-card h3{ font-size:24px; font-family:var(--f-body); font-weight:700; }
.field{ margin-top:20px; display:block; }
.field span{ font-size:14px; font-weight:600; }
.field span em{ color:var(--orange); font-style:normal; }
.field input, .field textarea{
  margin-top:8px; width:100%; border-radius:6px; border:1.5px solid var(--line);
  background:var(--white); padding:13px 14px; font-size:14.5px; font-family:inherit;
  transition:border-color .15s;
}
.field input:focus, .field textarea:focus{ outline:none; border-color:var(--orange); }
.field textarea{ resize:vertical; min-height:100px; }
.quote-card .btn{ margin-top:22px; width:100%; }
.quote-note{ margin-top:16px; font-size:12.5px; color:var(--steel); text-align:center; }
.quote-success{ margin-top:26px; text-align:center; padding:30px 18px; background:rgba(232,89,12,.08); border:1px solid rgba(232,89,12,.25); border-radius:8px; }
.quote-success svg{ width:38px; height:38px; color:var(--orange); }
.quote-success h4{ font-family:var(--f-body); font-size:17px; margin-top:12px; }
.quote-success p{ font-size:13.5px; color:var(--steel); margin-top:6px; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }

/* ---------- Reviews ---------- */
.reviews-track{ margin-top:52px; display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.review-card{ background:var(--white); border:1px solid var(--line); border-radius:8px; padding:28px; }
.review-card .stars{ color:var(--orange); }
.review-card p{ margin-top:16px; font-size:15px; line-height:1.6; }
.review-foot{ margin-top:20px; padding-top:16px; border-top:1px solid var(--line); }
.review-foot b{ font-family:var(--f-body); font-weight:700; font-size:14px; }
.review-foot span{ display:block; font-size:12px; color:var(--steel-2); margin-top:2px; }
.dots{ margin-top:30px; display:flex; justify-content:center; gap:8px; }
.dots button{ height:6px; width:22px; border-radius:99px; background:var(--line); border:none; padding:0; transition:all .2s; }
.dots button.active{ background:var(--orange); width:34px; }
@media (max-width:900px){ .reviews-track{ grid-template-columns:1fr; } }

/* ---------- Visit us ---------- */
.visit-section{ background:var(--paper-2); border-top:1px solid var(--line); }
.visit-cards{ margin-top:44px; display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.visit-card{ background:var(--white); border:1px solid var(--line); border-radius:8px; padding:22px; display:flex; gap:14px; align-items:flex-start; min-width:0; }
.visit-card svg{ width:19px; height:19px; color:var(--orange); margin-top:2px; flex-shrink:0; }
.visit-card > div{ min-width:0; }
.visit-card b{ font-family:var(--f-body); font-size:14.5px; display:block; }
.visit-card div.txt{ font-size:13.5px; color:var(--steel); margin-top:3px; line-height:1.5; overflow-wrap:break-word; }
.visit-directions{ margin-top:36px; text-align:center; }
.visit-media{ margin-top:48px; display:grid; grid-template-columns:1fr 1fr 1fr; gap:20px; }
.visit-media > *{ border-radius:10px; overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow-card); height:400px; }
.visit-media iframe{ width:100%; height:100%; border:0; }
.ig-widget{ background:var(--white); padding:0; position:relative; }
.ig-widget iframe{ position:absolute; inset:10px; width:calc(100% - 20px); height:calc(100% - 20px); }
.ig-widget-empty{ text-align:center; color:rgba(14,26,43,.55); font-size:13.5px; line-height:1.6; }
.ig-widget-empty svg{ width:28px; height:28px; margin-bottom:10px; color:var(--orange-2); }
.ig-widget-empty a{ color:var(--orange-2); font-weight:700; }
@media (max-width:560px){
  .visit-cards{ gap:10px; }
  .visit-card{ padding:12px; gap:9px; border-radius:7px; }
  .visit-card svg{ width:15px; height:15px; }
  .visit-card b{ font-size:12px; }
  .visit-card div.txt{ font-size:11px; line-height:1.4; }
  .visit-media{ gap:12px; }
  .visit-media > *{ height:200px; border-radius:8px; }
  .ig-widget{ height:340px; }
}
.gallery{ position:relative; background:var(--ink); }
.gallery img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity .8s ease; }
.gallery img.active{ opacity:1; }
.gallery-count{ position:absolute; top:12px; right:12px; background:rgba(0,0,0,.55); color:#fff; font-family:var(--f-mono); font-size:11px; padding:4px 9px; border-radius:99px; z-index:2; }
.gallery-nav{ position:absolute; top:50%; transform:translateY(-50%); width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.92); display:grid; place-items:center; border:none; z-index:2; }
.gallery-nav svg{ width:16px; height:16px; color:var(--ink); }
.gallery-nav.prev{ left:12px; } .gallery-nav.next{ right:12px; }
.gallery-dots{ position:absolute; bottom:12px; left:0; right:0; display:flex; justify-content:center; gap:5px; z-index:2; }
.gallery-dots span{ width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.5); transition:all .2s; }
.gallery-dots span.active{ background:var(--orange); width:16px; border-radius:3px; }
@media (max-width:900px){ .visit-cards{ grid-template-columns:repeat(2,1fr); } .visit-media{ grid-template-columns:1fr; } }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:var(--white); }
.footer-top{ padding-top:64px; padding-bottom:48px; display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:40px; }
.footer-brand .brand-name{ color:var(--white); }
.footer-brand p{ margin-top:12px; font-size:14px; color:rgba(255,255,255,.55); max-width:280px; }
.footer-col .h{ font-family:var(--f-mono); font-size:11.5px; letter-spacing:.05em; color:var(--orange-2); margin-bottom:14px; }
.footer-col a, .footer-col div{ display:block; font-size:14.5px; color:rgba(255,255,255,.8); margin-bottom:9px; }
.footer-col a:hover{ color:var(--orange-2); }
.footer-bottom{ border-top:1px solid var(--line-dark); padding-top:20px; padding-bottom:96px; font-size:12.5px; color:rgba(255,255,255,.45); display:flex; justify-content:space-between; flex-wrap:wrap; gap:8px; }
@media (max-width:760px){ .footer-top{ grid-template-columns:1fr; gap:30px; } .footer-bottom{ padding-bottom:96px; } }

/* ---------- Mobile call bar ---------- */
.mobile-bar{
  display:none; position:fixed; left:12px; right:12px; bottom:12px; z-index:60;
  border-radius:10px; overflow:hidden; box-shadow:0 14px 30px -10px rgba(0,0,0,.5);
}
.mobile-bar a{
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  padding:15px 0; font-weight:700; font-size:14.5px;
}
.mobile-bar a:first-child{ background:var(--orange); color:#fff; }
.mobile-bar a:last-child{ background:var(--ink); color:#fff; }
.mobile-bar svg{ width:17px; height:17px; }
@media (max-width:640px){ .mobile-bar{ display:flex; } body{ padding-bottom:0; } }

/* ---------- Mobile nav drawer ---------- */
.mnav{
  position:fixed; inset:0; z-index:70; background:var(--ink); color:#fff;
  transform:translateX(100%); transition:transform .3s ease;
  padding:26px 24px; display:flex; flex-direction:column;
}
.mnav.open{ transform:translateX(0); }
.mnav-top{ display:flex; justify-content:flex-end; }
.mnav-top button{ background:none; border:none; color:#fff; padding:8px; }
.mnav-top svg{ width:26px; height:26px; }
.mnav-links{ margin-top:30px; display:flex; flex-direction:column; gap:6px; }
.mnav-links a{ font-family:var(--f-display); font-size:30px; font-weight:700; padding:12px 0; border-bottom:1px solid var(--line-dark); }
.mnav .btn{ margin-top:30px; }

/* ---------- Reveal-on-scroll (single, restrained) ---------- */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }

/* ---------- Destacados page shared bits ---------- */
.page-hero{ background:var(--ink); color:#fff; padding-top:150px; padding-bottom:60px; }
.page-hero .label{ color:var(--orange-2); }
.page-hero h1{ font-size:clamp(2.2rem,5vw,3.4rem); margin-top:14px; }
@media (max-width:640px){ .page-hero{ padding-top:110px; padding-bottom:40px; } }
@media (min-width:901px){
  .page-hero .wrap{
    display:grid;
    grid-template-columns:1fr 480px;
    column-gap:56px;
    align-items:start;
    grid-template-areas:
      "label  widget"
      "h1     widget"
      "lede   widget"
      "cta    widget";
  }
  .page-hero .label{ grid-area:label; }
  .page-hero h1{ grid-area:h1; }
  .page-hero .lede{ grid-area:lede; }
  .page-hero .hero-ctas{ grid-area:cta; }
  .page-hero .ig-widget-mini{ grid-area:widget; width:100%; height:340px; margin-top:6px; align-self:start; }
}
.ig-widget-mini{
  margin-top:24px; width:320px; max-width:100%; height:150px;
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14);
  border-radius:10px; position:relative; overflow:hidden;
}
.ig-widget-mini iframe{ position:absolute; inset:8px; width:calc(100% - 16px); height:calc(100% - 16px); border:0; }
.product-grid{ margin-top:20px; display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.product-card{ background:var(--white); border:1px solid var(--line); border-radius:10px; overflow:hidden; transition:box-shadow .2s, transform .2s; }
.product-card:hover{ box-shadow:var(--shadow-card); transform:translateY(-3px); }
.product-media{ aspect-ratio:4/3; background:var(--paper-2); display:grid; place-items:center; overflow:hidden; position:relative; }
.product-media img{ width:100%; height:100%; object-fit:cover; }
.product-badge{
  position:absolute; top:12px; left:12px; z-index:1;
  background:var(--orange-2); color:#fff; font-family:var(--f-mono);
  font-size:11px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
  padding:5px 10px; border-radius:5px;
}
.product-body{ padding:20px; }
.product-cat{ font-family:var(--f-mono); font-size:11px; color:var(--orange); }
.product-body h3{ font-family:var(--f-body); font-size:17px; font-weight:700; margin-top:8px; }
.product-body p{ font-size:13.5px; color:var(--steel); margin-top:6px; }
.product-foot{ display:flex; justify-content:space-between; align-items:center; margin-top:16px; }
.product-price{ font-family:var(--f-display); font-weight:800; font-size:19px; color:var(--ink); }
@media (max-width:900px){ .product-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .product-grid{ grid-template-columns:1fr; } }
.destacados-note{
  margin-top:48px; padding-top:32px; border-top:1px solid rgba(14,26,43,.1);
  text-align:center; max-width:640px; margin-left:auto; margin-right:auto;
  color:rgba(14,26,43,.6); font-size:15px; line-height:1.6;
}
.destacados-note a{ color:var(--orange-2); font-weight:600; white-space:nowrap; margin-left:4px; }
.product-price:empty{ display:none; }
