:root {
  --navy-950: #0b1f33;
  --navy-900: #102a43;
  --navy-800: #173f5f;
  --terracotta: #b65f41;
  --terracotta-dark: #93452f;
  --cream: #f6f2eb;
  --stone: #e8e0d5;
  --white: #ffffff;
  --ink: #17202a;
  --muted: #5c6670;
  --line: #d9dfe4;
  --green: #167c50;
  --shadow: 0 24px 60px rgba(11, 31, 51, 0.12);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  max-width: 740px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.25rem, 6.9vw, 6.8rem);
  letter-spacing: -0.055em;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

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

.section {
  padding: 112px 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 6px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #de8a6c;
  outline-offset: 4px;
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--terracotta-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.eyebrow-light {
  color: #f2ae95;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 42, 67, 0.09);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-name {
  color: var(--navy-950);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.brand-name strong {
  color: var(--terracotta-dark);
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:not(.nav-cta) {
  position: relative;
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:not(.nav-cta):hover::after,
.main-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  color: var(--white) !important;
  background: var(--navy-900);
  border-radius: 7px;
}

.nav-cta:hover {
  background: var(--navy-800);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 7px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-900);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 84px;
  background: var(--cream);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 100%;
  content: "";
  background: var(--terracotta);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
  align-items: center;
  gap: clamp(44px, 7vw, 92px);
}

.hero-copy {
  padding: 38px 0;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 2rem;
  color: #465360;
  font-size: 1.18rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--terracotta-dark);
}

.button-primary:hover {
  background: #7d3828;
}

.button-secondary {
  color: var(--navy-900);
  background: transparent;
  border-color: #aeb8c1;
}

.button-secondary:hover {
  background: var(--white);
  border-color: var(--navy-900);
}

.hero-facts {
  display: flex;
  margin: 40px 0 0;
  gap: 0;
}

.hero-facts div {
  min-width: 170px;
  padding: 0 26px;
  border-left: 1px solid #c9bfb3;
}

.hero-facts div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts dt {
  margin-bottom: 3px;
  color: #69747d;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-facts dd {
  color: var(--navy-950);
  font-size: 0.98rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.55);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.visual-note {
  position: absolute;
  right: -28px;
  bottom: 42px;
  display: flex;
  width: 166px;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 14px 36px rgba(11, 31, 51, 0.24);
}

.visual-note span {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.15;
}

.trust-strip {
  color: var(--white);
  background: var(--navy-950);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid p {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: center;
  margin: 0;
  gap: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.trust-grid p:first-child {
  border-left: 0;
}

.trust-grid span {
  color: #f2ae95;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.products {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.62fr);
  align-items: end;
  margin-bottom: 46px;
  gap: 48px;
}

.section-heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid #e9e2d9;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  box-shadow: 0 18px 44px rgba(11, 31, 51, 0.1);
  transform: translateY(-4px);
}

.product-shot {
  width: 100%;
  aspect-ratio: 1;
  flex: 0 0 auto;
  background-image: url("catalogo-aponte-shop.png");
  background-repeat: no-repeat;
  background-size: 200% 200%;
}

.product-shot-organizer {
  background-position: left top;
}

.product-shot-bottle {
  background-position: right top;
}

.product-shot-bag {
  background-position: left bottom;
}

.product-shot-lamp {
  background-position: right bottom;
}

.product-info {
  display: flex;
  min-height: 286px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 25px 22px;
}

.product-category {
  margin-bottom: 12px;
  color: var(--terracotta-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.product-info h3 {
  margin-bottom: 12px;
}

.product-info > p:not(.product-category) {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.62;
}

.product-info a {
  margin-top: auto;
  color: var(--navy-900);
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
}

.product-info a span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 150ms ease;
}

.product-info a:hover span {
  transform: translateX(4px);
}

.purchase-process {
  background: var(--cream);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: 90px;
}

.process-intro {
  position: sticky;
  top: 118px;
}

.process-intro p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  border-top: 1px solid #cfc5b9;
}

.process-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  padding: 30px 0;
  gap: 22px;
  border-bottom: 1px solid #cfc5b9;
}

.process-list li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: var(--terracotta-dark);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.process-list h3 {
  margin: 2px 0 7px;
  font-size: 1.42rem;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.about {
  overflow: hidden;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.about-number {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  color: rgba(255, 255, 255, 0.93);
  background: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 12vw, 10rem);
  letter-spacing: -0.08em;
}

.about-number::before,
.about-number::after {
  position: absolute;
  content: "";
}

.about-number::before {
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.about-number::after {
  z-index: -1;
  top: 30px;
  right: -30px;
  width: 100%;
  height: 100%;
  background: var(--navy-900);
}

.about-content p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-content strong {
  color: var(--navy-950);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  margin-top: 32px;
  gap: 9px;
}

.about-tags span {
  padding: 8px 14px;
  color: var(--navy-900);
  background: var(--cream);
  border: 1px solid #e0d7cb;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.company {
  color: var(--white);
  background: var(--navy-950);
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 80px;
}

.company h2 {
  color: var(--white);
}

.company-intro > p:last-child {
  max-width: 400px;
  color: #c7d0d8;
}

.company-data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.company-data div {
  min-height: 126px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.company-data-wide {
  grid-column: 1 / -1;
}

.company-data dt {
  margin-bottom: 9px;
  color: #9eb0bf;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-data dd {
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.5;
}

.company-data a {
  color: #f2ae95;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact {
  background: var(--cream);
}

.contact-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.contact-heading > p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
}

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

.contact-card {
  display: grid;
  grid-template-columns: 70px 1fr;
  align-items: start;
  padding: 34px;
  gap: 22px;
  background: var(--white);
  border-top: 5px solid var(--terracotta);
  box-shadow: 0 16px 38px rgba(11, 31, 51, 0.08);
}

.country-code {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.contact-label {
  margin-bottom: 6px;
  color: var(--terracotta-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.contact-card h3 {
  margin-bottom: 7px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.contact-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-card .button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 6px;
}

.button-whatsapp {
  color: var(--white);
  background: var(--green);
}

.button-whatsapp:hover {
  background: #106441;
}

.legal {
  padding: 88px 0;
  background: var(--white);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: 80px;
}

.legal h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
}

.legal-details {
  border-top: 1px solid var(--line);
}

.legal-details details {
  border-bottom: 1px solid var(--line);
}

.legal-details summary {
  position: relative;
  padding: 24px 48px 24px 0;
  color: var(--navy-950);
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.legal-details summary::-webkit-details-marker {
  display: none;
}

.legal-details summary::after {
  position: absolute;
  top: 22px;
  right: 8px;
  content: "+";
  color: var(--terracotta-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

.legal-details details[open] summary::after {
  content: "−";
}

.legal-details details p {
  max-width: 700px;
  padding: 0 48px 24px 0;
  color: var(--muted);
}

.site-footer {
  padding: 46px 0 28px;
  color: #b8c4ce;
  background: #071726;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 34px;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.brand-footer .brand-mark {
  background: var(--terracotta-dark);
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-name strong {
  color: #f2ae95;
}

.footer-top p {
  margin: 0;
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 26px;
  gap: 30px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.77rem;
  letter-spacing: 0.02em;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 48px;
  }

  .visual-note {
    right: -12px;
  }

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

  .company-grid {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 84px 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 24px 20px 30px;
    gap: 4px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 32px rgba(11, 31, 51, 0.13);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 10px;
    font-size: 1rem;
  }

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

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 52px 0 68px;
  }

  .hero-grid,
  .section-heading,
  .process-layout,
  .about-grid,
  .company-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 16px 0 0;
  }

  .hero-visual {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .visual-note {
    right: 14px;
    bottom: 14px;
  }

  .section-heading,
  .process-layout,
  .about-grid,
  .company-grid,
  .legal-grid {
    gap: 42px;
  }

  .section-heading {
    align-items: start;
  }

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

  .process-intro {
    position: static;
  }

  .about-number {
    width: min(74%, 380px);
    margin-left: 2px;
  }

  .company-data {
    grid-template-columns: 1fr;
  }

  .company-data-wide {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero::before {
    width: 5px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    flex-direction: column;
    gap: 14px;
  }

  .hero-facts div,
  .hero-facts div:first-child {
    padding: 0 0 0 14px;
    border-left: 1px solid #c9bfb3;
  }

  .visual-note {
    width: 146px;
    min-height: 96px;
    padding: 16px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 12px 0;
  }

  .trust-grid p,
  .trust-grid p:first-child {
    min-height: 54px;
    justify-content: flex-start;
    padding-left: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .trust-grid p:first-child {
    border-top: 0;
  }

  .product-card {
    min-height: auto;
  }

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

  .product-info {
    min-height: 250px;
    padding: 26px 24px;
  }

  .process-list li {
    grid-template-columns: 46px 1fr;
    gap: 15px;
  }

  .process-list li > span {
    width: 40px;
    height: 40px;
  }

  .about-number {
    width: calc(100% - 28px);
  }

  .company-data div {
    min-height: 106px;
  }

  .contact-card {
    grid-template-columns: 58px 1fr;
    padding: 26px 22px;
    gap: 16px;
  }

  .country-code {
    width: 54px;
    height: 54px;
  }

  .legal {
    padding: 68px 0;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
