/* Fuentes cargadas desde <head> en index.html (evita bloqueo por @import) */

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --bg-color: #222822;
  --hero-bg: #2b332a;
  --header-height: 4.5rem;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --accent-color: #ffffff;
  --placeholder-bg: rgba(255, 255, 255, 0.05);
  --gallery-card-bg: #2d3a30;
  --features-box-bg: rgba(0, 0, 0, 0.25);
  --box-bg: rgba(255, 255, 255, 0.03);

  /* Typography */
  --font-heading: 'NeueHelvenaExpanded', sans-serif;
  --font-body: 'NeueHelvenaExpanded', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  /* Sizes */
  --container-max-width: 1200px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  background-color: #222822;
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-loading {
  overflow: hidden;
}

/* ==========================================================================
   PAGE LOADER
   ========================================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222822;
  background-image: linear-gradient(165deg, #374639 0%, #222822 55%, #1a1f1a 100%);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.85s;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  padding: 2rem;
  animation: loader-enter 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-loader__logo {
  width: 50px;
  height: auto;
  opacity: 0;
  animation:
    loader-logo-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards,
    loader-logo-float 3s ease-in-out 1.05s infinite;
}

.page-loader__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  line-height: 1;
}

.page-loader__prefix {
  font-family: var(--font-heading);
  font-size: clamp(0.65rem, 2.8vw, 0.85rem);
  font-weight: 100;
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0;
  animation: loader-text-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.page-loader__name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 12vw, 3.25rem);
  font-weight: 100;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0;
  animation: loader-text-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.page-loader__progress {
  width: min(200px, 52vw);
  height: 1px;
  margin-top: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 1px;
  overflow: hidden;
  opacity: 0;
  animation: loader-text-in 0.6s ease 0.65s forwards;
}

.page-loader__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.35) 0%, #ffffff 50%, rgba(255, 255, 255, 0.35) 100%);
  border-radius: 1px;
  animation: loader-progress 1.35s cubic-bezier(0.4, 0, 0.2, 1) 0.75s forwards;
}

@keyframes loader-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-logo-in {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loader-logo-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes loader-text-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-progress {
  to {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader,
  .page-loader__inner,
  .page-loader__logo,
  .page-loader__prefix,
  .page-loader__name,
  .page-loader__progress,
  .page-loader__progress-bar {
    animation: none;
    transition: none;
  }

  .page-loader__logo,
  .page-loader__prefix,
  .page-loader__name,
  .page-loader__progress {
    opacity: 1;
    transform: none;
  }

  .page-loader__progress-bar {
    width: 100%;
  }

  .page-loader.is-hidden {
    transition: opacity 0.2s;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: normal;
}

a {
  color: var(--text-primary);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

ul {
  list-style: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

/* ==========================================================================
   SITE HEADER (fixed, transparent)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-right: 1rem;
  background-color: rgb(255 255 255 / 2%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  padding: 0 var(--spacing-md);
  opacity: 0.95;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.site-header__brand:hover {
  opacity: 1;
}

.site-header__logo {
  width: 32px;
  height: auto;
}

.site-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0 0.25rem;
}

.site-nav__list li {
  display: flex;
  align-items: center;
}

.site-nav__list li + li::before {
  content: '·';
  margin: 0 0.45rem;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  pointer-events: none;
}

.site-nav__link {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 200;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  padding: 0.35rem 0.15rem;
  border-radius: 4px;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-nav__link:hover {
  color: #ffffff;
  opacity: 1;
}

.site-nav__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .site-header {
    padding-right: var(--spacing-md);
  }

  .site-nav__link {
    font-size: 0.8125rem;
    letter-spacing: 0.12em;
    padding: 0.4rem 0.25rem;
  }

  .site-nav__list li + li::before {
    margin: 0 0.65rem;
  }
}

/* ==========================================================================
   HERO BLOCK
   ========================================================================== */
.hero-block {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #222822;
  background-image: linear-gradient(180deg, #374639 0%, #222822 100%);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  padding: var(--header-height) 0 0;
  position: relative;
  scroll-margin-top: 0;
}

.hero-section__content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 100%;
  min-height: calc(100dvh - var(--header-height));
  padding: 0 var(--spacing-md);
  gap: 6.3rem;
  overflow: hidden;
}

.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  margin: 0;
  padding-top: 0;
}

.hero-brand__mark {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.hero-brand__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  line-height: 1;
  margin: 0;
}

.hero-brand__prefix {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 4vw, 30px);
  font-weight: 100;
  letter-spacing: 0.85em;
  text-indent: 0.85em;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
  max-width: 100%;
}


.hero-brand__name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 14vw, 82px);
  font-weight: 100;
  letter-spacing: 0;
  text-indent: 0;
  text-transform: uppercase;
  color: var(--text-primary);
  max-width: 100%;
}

.hero-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.72rem;
  margin-top: 0;
  width: 100%;
}

.hero-tagline {
  font-size: 0.875rem;
  font-weight: 100;
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-transform: none;
  max-width: none;
  margin: 0;
  white-space: nowrap;
}

.scroll-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  animation: hero-scroll-bounce 2.5s ease-in-out infinite;
  padding: 0;
  line-height: 0;
}

.scroll-arrow__icon {
  width: 4.8rem;
  height: 3.3rem;
  display: block;
}

@keyframes hero-scroll-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(6px); }
  60% { transform: translateY(3px); }
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.logo-mark {
  width: 40px;
  margin-bottom: var(--spacing-sm);
}

.logo-text {
  width: 280px;
}


/* ==========================================================================
   SECTION HEADINGS
   ========================================================================== */
.section-heading {
  margin-bottom: var(--spacing-lg);
}

.section-heading .subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
}

.section-heading .title {
  font-size: 2rem;
  margin-top: var(--spacing-xs);
  letter-spacing: 2px;
}

/* ==========================================================================
   CAN PRODUCT SECTION
   ========================================================================== */
.product-can-section {
  padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.product-can-section .section-heading {
  margin-bottom: var(--spacing-md);
  padding: 0 var(--spacing-md);
}

.product-can-section .section-heading .subtitle {
  font-weight: 200;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.product-can-section .section-heading .title {
  font-weight: 400;
  letter-spacing: 2px;
  margin-top: 0.35rem;
  color: #ffffff;
}

@media (min-width: 768px) {
  .product-can-section .section-heading .subtitle {
    font-size: 30px;
  }

  .product-can-section .section-heading .title {
    font-size: 35px;
  }
}

.can-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .can-showcase {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
  }
}

.can-features {
  width: 100%;
  max-width: 300px;
  order: 2;
}

@media (min-width: 768px) {
  .can-features {
    flex: 0 0 280px;
    max-width: 280px;
    order: 0;
    align-self: center;
  }
}

.can-features ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.65;
  text-align: left;
  color: #ffffff;
  background-color: #2a332a;
  padding: 1.85rem 2rem 1.9rem 2.15rem;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.can-features li {
  letter-spacing: 0.02em;
}

.can-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
}

.can-image::before {
  content: '';
  position: absolute;
  bottom: 18%;
  left: 50%;
  width: min(140px, 38vw);
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 72%);
  filter: blur(5px);
  z-index: 0;
  pointer-events: none;
  animation: can-shadow-pulse 4s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

.can-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(420px, 70vw);
  height: min(420px, 70vw);
  transform: translate(-50%, -50%) scale(1.5);
  transform-origin: center center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 70, 57, 1) 0%, rgb(34 40 34 / 0%) 70%);
  z-index: 0;
  pointer-events: none;
  animation: can-glow-pulse 4s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

@media (min-width: 768px) {
  .can-image {
    flex: 1 1 320px;
    order: 0;
  }
}

@keyframes can-levitate {
  0%, 100% {
    transform: scale(1.5) rotate(-10deg) translateY(0);
  }
  50% {
    transform: scale(1.499) rotate(-10deg) translateY(-14px);
  }
}

@keyframes can-levitate-shadow {
  0%, 100% {
    filter: drop-shadow(5px 10px 14px rgba(20, 26, 22, 0.65));
  }
  50% {
    filter: drop-shadow(3px 5px 8px rgba(20, 26, 22, 0.35));
  }
}

@keyframes can-shadow-pulse {
  0%, 100% {
    opacity: 0.85;
    transform: translateX(-50%) scale(1);
    filter: blur(5px);
  }
  50% {
    opacity: 0.42;
    transform: translateX(-50%) scale(0.74);
    filter: blur(7px);
  }
}

@keyframes can-glow-pulse {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -51%) scale(1.47);
  }
}

.can-image picture {
  display: contents;
}

.can-image .product-img {
  position: relative;
  z-index: 1;
  max-width: min(300px, 55vw);
  transform: scale(1.5) rotate(-10deg);
  filter: drop-shadow(5px 10px 14px rgba(20, 26, 22, 0.65));
  animation:
    can-levitate 4s cubic-bezier(0.42, 0, 0.58, 1) infinite,
    can-levitate-shadow 4s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  will-change: transform, filter;
}

@media (prefers-reduced-motion: reduce) {
  .can-image .product-img,
  .can-image::before,
  .can-image::after {
    animation: none;
  }

  .can-image .product-img {
    filter: drop-shadow(4px 4px 10px #222823);
  }
}

.can-availability {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0.85rem;
  order: 3;
  font-size: 0.8rem;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
  .can-availability {
    flex: 0 0 200px;
    align-items: baseline;
    text-align: right;
    order: 0;
    align-self: center;
  }
}

.comercios-img {
  width: 200px;
  max-width: 100%;
  opacity: 1;
}

/* ==========================================================================
   POWDER PRODUCT SECTION
   ========================================================================== */
.product-powder-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl) var(--spacing-md);
}

@media (min-width: 768px) {
  .product-powder-section {
    flex-direction: row;
    justify-content: center;
    gap: 25px;
  }
}

.powder-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: visible;
}

@media (min-width: 768px) {
  .powder-image {
    justify-content: flex-end;
  }
}

.powder-image__stack {
  position: relative;
  width: min(380px, 78vw);
  aspect-ratio: 350 / 420;
  overflow: visible;
}

.powder-image__stack picture {
  display: contents;
}

.powder-image .product-img {
  max-width: min(300px, 62vw);
  height: auto;
  cursor: pointer;
  transition:
    transform 0.55s cubic-bezier(0.34, 1.12, 0.64, 1),
    filter 0.45s ease,
    opacity 0.45s ease;
  outline: none;
}

.powder-image .product-img--back {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transform: scale(1.3) rotate(0deg);
  transform-origin: center center;
}

.powder-image .product-img--front {
  position: absolute;
  bottom: -40px;
  right: -40px;
  z-index: 2;
  transform: scale(1.3) rotate(0deg);
  transform-origin: center center;
}

.powder-image .product-img.is-raised {
  z-index: 3;
  filter: drop-shadow(0 18px 36px rgba(10, 16, 12, 0.48));
}

.powder-image .product-img--back.is-raised {
  transform: scale(1.36) translateY(-8px);
}

.powder-image .product-img--front.is-raised {
  transform: scale(1.36) translateY(-8px);
}

.powder-image__stack:has(.product-img.is-raised) .product-img:not(.is-raised) {
  opacity: 0.86;
  filter: brightness(0.88);
}

@media (hover: hover) {
  .powder-image .product-img:hover,
  .powder-image .product-img:focus-visible {
    z-index: 3;
    filter: drop-shadow(0 18px 36px rgba(10, 16, 12, 0.48));
  }

  .powder-image .product-img--back:hover,
  .powder-image .product-img--back:focus-visible {
    transform: scale(1.36) translateY(-8px);
  }

  .powder-image .product-img--front:hover,
  .powder-image .product-img--front:focus-visible {
    transform: scale(1.36) translateY(-8px);
  }

  .powder-image__stack:has(.product-img:hover) .product-img:not(:hover),
  .powder-image__stack:has(.product-img:focus-visible) .product-img:not(:focus-visible) {
    opacity: 0.86;
    filter: brightness(0.88);
  }
}

@media (max-width: 767px) {
  .powder-image .product-img--back.is-raised {
    top: -10px;
    left: -20px;
    transform: scale(1.26) translateY(-6px);
  }

  .powder-image .product-img--front.is-raised {
    bottom: -48px;
    right: -48px;
    transform: scale(1.26) translateY(-6px);
  }
}

@media (max-width: 767px) and (hover: hover) {
  .powder-image .product-img--back:hover,
  .powder-image .product-img--back:focus-visible {
    top: -10px;
    left: -20px;
    transform: scale(1.26) translateY(-6px);
  }

  .powder-image .product-img--front:hover,
  .powder-image .product-img--front:focus-visible {
    bottom: -48px;
    right: -48px;
    transform: scale(1.26) translateY(-6px);
  }
}

/* ==========================================================================
   MOBILE LAYOUT (mockup — disposition & typography only)
   ========================================================================== */
@media (max-width: 767px) {
  .product-powder-section {
    overflow-x: clip;
  }

  .powder-image__stack {
    width: min(300px, 85vw);
  }

  .product-can-section {
    overflow-x: clip;
  }

  .hero-section__content {
    gap: 4.5rem;
    padding: 0 1.25rem;
  }

  .hero-brand {
    gap: 1.25rem;
  }

  .hero-brand__mark {
    width: 40px;
    margin-bottom: 6px;
  }

  .hero-brand__prefix {
    font-size: 25px;
    letter-spacing: 0.55em;
    text-indent: 0.55em;
    white-space: nowrap;
    padding: 0;
  }

  .hero-brand__name {
    font-size: clamp(2.75rem, 15vw, 3.5rem);
  }

  .hero-tagline {
    font-size: 14px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    max-width: none;
  }

  .scroll-arrow__icon {
    width: 3.5rem;
    height: 2.4rem;
  }

  .product-can-section {
    padding: 3rem 0 2.5rem;
  }

  .product-can-section .section-heading {
    margin-bottom: 1.75rem;
    padding: 0 1.25rem;
  }

  .product-can-section .section-heading .subtitle {
    font-size: 20px;
    line-height: 1.45;
    font-weight: 200;
  }

  .product-can-section .section-heading .title {
    font-size: 20px;
    letter-spacing: 0;
    margin-top: 0.5rem;
    font-weight: 400;
  }

  .can-showcase {
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    padding: 0 1.25rem;
  }

  .can-image {
    order: 1;
    width: 100%;
  }

  .can-image .product-img {
    max-width: min(190px, 58vw);
    top: 50px;
  }

  .can-features {
    order: 2;
    width: 100%;
    max-width: min(340px, 92vw);
    margin: 0 auto;
  }

  .can-features ul {
    font-size: 0.8125rem;
    line-height: 1.55;
    padding: 1.5rem 1.65rem 1.55rem 1.75rem;
  }

  .can-availability {
    order: 3;
    align-items: center;
    text-align: center;
    width: 100%;
    font-size: 0.75rem;
  }

  .comercios-img {
    width: min(200px, 75vw);
    margin: 0 auto;
  }

  .product-powder-section {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 3rem 1.5rem 2.75rem;
  }

  .powder-image {
    order: 0;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.25rem;
  }

  .powder-image__stack {
    width: min(320px, 88vw);
    aspect-ratio: 350 / 400;
  }

  .powder-image .product-img {
    max-width: min(280px, 72vw);
  }

  .powder-image .product-img--back {
    top: -10px;
    left: -20px;
    transform: scale(1.2);
  }

  .powder-image .product-img--front {
    bottom: -48px;
    right: -48px;
    transform: scale(1.2);
  }

  .powder-content {
    order: 1;
    width: 100%;
    max-width: min(360px, 94vw);
    align-items: center !important;
    text-align: left;
    gap: 2.25rem;
  }

  .powder-content__inner {
    width: 100%;
    align-items: flex-start;
    text-align: left;
    gap: 0.15rem;
  }

  .powder-content .subtitle {
    font-size: 0.9375rem;
    font-weight: 200;
    margin-bottom: 0.35rem;
  }

  .powder-content .title {
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.05;
  }

  .powder-content .description {
    font-size: 26px;
    font-weight: 100;
    line-height: 1.05;
    margin-top: 0;
  }

  .powder-content__actions {
    justify-content: center;
    margin-top: 0;
    width: 100%;
  }

  .powder-content .btn-primary {
    font-size: 1rem;
    font-weight: 200;
    padding: 0.75rem 2.25rem;
    border-radius: 12px;
  }

  .contact-section {
    padding: 3rem 1.25rem 2.5rem;
  }

  .contact-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 2rem;
    width: 100%;
  }

  .contact-item {
    flex: none;
    width: 100%;
    max-width: 280px;
    min-width: 0;
    gap: 0.75rem;
  }

  .icon-box {
    width: 72px;
    height: 72px;
    border-radius: 12px;
  }

  .icon-box svg {
    width: 24px;
    height: 24px;
  }

  .contact-item p {
    font-size: 0.8125rem;
    line-height: 1.4;
    word-break: break-word;
  }

  .contact-item p a {
    letter-spacing: 0;
  }

  .contact-handle .handle-suffix {
    letter-spacing: -0.1em;
  }

  .site-footer {
    margin-top: 2.5rem;
    padding: 2rem 1.25rem 2.5rem;
  }

  .logo-text {
    width: min(220px, 65vw);
  }
}

.powder-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}

.powder-content__inner {
  width: max-content;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.powder-content .subtitle {
  font-weight: 200;
  color: #ffffff;
  margin-bottom: 0.15rem;
}

.powder-content .title {
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
}

.powder-content .description {
  font-weight: 100;
  line-height: 1.1;
  color: #ffffff;
  text-transform: lowercase;
  margin: 0;
}

@media (min-width: 768px) {
  .powder-content .subtitle {
    font-size: 1rem;
  }

  .powder-content .title {
    font-size: 38px;
  }

  .powder-content .description {
    font-size: 35px;
  }
}

.powder-content__actions {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .powder-content__actions {
    justify-content: flex-end;
  }
}

.powder-content .btn-primary {
  flex-shrink: 0;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 0px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.7rem 1.85rem;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #ffffff;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

.powder-content .btn-primary:hover {
  background: rgba(255, 255, 255, 0.16);
  opacity: 1;
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
  padding: var(--spacing-xl) var(--spacing-md);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  text-align: center;
}

.gallery-link {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--gallery-card-bg) 0%, var(--bg-color) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.gallery-link:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.gallery-title {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   SOCIAL & CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: calc(var(--spacing-xl) * 1.3) var(--spacing-md);
}

.contact-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3.25rem 5.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  text-align: center;
  min-width: 182px;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  background-color: #2a332a;
  border: 0.1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  transition: background-color 0.3s ease;
}

.icon-box:hover {
  background-color: #323d34;
  opacity: 1;
}

.icon-box svg {
  width: 31px;
  height: 31px;
  color: #ffffff;
  opacity: 1;
}

.contact-item p {
  margin: 0;
  font-size: 1.04rem;
  font-weight: 200;
  line-height: 1.4;
}

.contact-item p a {
  color: #ffffff;
  letter-spacing: 0;
  text-decoration: none;
}

.contact-handle .handle-suffix {
  letter-spacing: -0.08em;
}

.contact-item p a:hover {
  opacity: 0.75;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: var(--spacing-lg) 0;
  margin-top: var(--spacing-xl);
  background: linear-gradient(180deg, #222822 0%, #2f3a31 55%, #374639 100%);
}

.site-footer .logo-container {
  margin-bottom: 0;
}

.logo-container--footer .logo-mark--muted {
  opacity: 0.5;
}

#producto-lata,
#producto-polvo,
#contacto {
  scroll-margin-top: calc(var(--header-height) + 0.75rem);
}
