:root {
  --orange: #f36b21;
  --orange-dark: #d84e0b;
  --orange-soft: #fff1e9;
  --ink: #17212b;
  --ink-soft: #53606c;
  --line: #e5e8eb;
  --paper: #ffffff;
  --cloud: #f7f8f9;
  --green: #22c55e;
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --shadow: 0 24px 70px rgba(23, 33, 43, 0.12);
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  background: var(--orange);
  z-index: 1001;
}

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

svg {
  display: block;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(229, 232, 235, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: block;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(243, 107, 33, 0.34);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.button-outline {
  color: var(--orange-dark);
  border-color: var(--orange);
  background: transparent;
}

.button-outline:hover {
  color: white;
  background: var(--orange);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 92px;
  background:
    radial-gradient(circle at 8% 12%, rgba(243, 107, 33, 0.11), transparent 27%),
    linear-gradient(180deg, #fff 0%, #fbfbfc 100%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -145px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(243, 107, 33, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(243, 107, 33, 0.035), 0 0 0 110px rgba(243, 107, 33, 0.025);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.3vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.button-primary {
  color: white;
  background: var(--orange);
  box-shadow: 0 15px 30px rgba(216, 78, 11, 0.22);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 36px rgba(216, 78, 11, 0.28);
}

.button svg {
  width: 21px;
  fill: currentColor;
}

.text-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  border-bottom: 1px solid var(--ink);
}

.text-link span {
  margin-left: 5px;
  color: var(--orange);
}

.hero-points {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin: 38px 0 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-points span {
  color: var(--orange);
  margin-right: 5px;
}

.hero-visual {
  position: relative;
  min-height: 545px;
  display: grid;
  place-items: center;
  padding: 28px 28px 68px 62px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 40px;
  left: 34px;
  background: var(--orange);
  border-radius: 12px 80px 12px 80px;
  transform: rotate(3deg);
}

.photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 44px;
  text-align: center;
  color: #6f7882;
  border: 2px dashed #c9cfd4;
  border-radius: 12px 60px 12px 60px;
  background: linear-gradient(145deg, #f0f2f4, #fafafa);
  box-shadow: var(--shadow);
}

.photo-placeholder svg {
  width: 52px;
  margin-bottom: 17px;
  fill: #a0a8af;
}

.photo-placeholder strong {
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 1rem;
}

.photo-placeholder span {
  max-width: 290px;
  font-size: 0.8rem;
}

.location-card {
  position: absolute;
  z-index: 2;
  right: -8px;
  bottom: 18px;
  min-width: 270px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 50px rgba(23, 33, 43, 0.2);
}

.location-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.25rem;
}

.location-card div {
  display: grid;
  line-height: 1.35;
}

.location-card small,
.location-card span:last-child {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.location-card strong {
  margin-block: 2px;
  font-size: 0.88rem;
}

.section {
  padding: 112px 0;
}

.products {
  background: white;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.section-heading > p {
  margin-bottom: 3px;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.product-card:hover {
  transform: translateY(-7px);
  border-color: rgba(243, 107, 33, 0.4);
  box-shadow: 0 25px 55px rgba(23, 33, 43, 0.09);
}

.featured-card {
  border-color: var(--orange-soft);
  background: var(--orange-soft);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 27px;
  color: #a4aab0;
  font-size: 0.76rem;
  font-weight: 800;
}

.product-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 58px;
  color: var(--orange);
  background: white;
  border: 1px solid rgba(243, 107, 33, 0.19);
  border-radius: 18px 6px 18px 6px;
}

.product-icon svg {
  width: 36px;
  fill: currentColor;
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.product-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.availability-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 18px;
  padding: 26px 30px;
  color: white;
  background: var(--ink);
  border-radius: var(--radius-sm);
}

.availability-callout > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.availability-callout p {
  margin: 0;
  font-size: 0.9rem;
}

.availability-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.button-dark {
  flex: 0 0 auto;
  color: var(--ink);
  background: white;
}

.about {
  background: var(--cloud);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.about-visual {
  padding: 22px 0 22px 22px;
  border-left: 7px solid var(--orange);
}

.dark-placeholder {
  min-height: 520px;
  border-color: #59646e;
  color: #aab2b9;
  background: linear-gradient(145deg, #25323c, #101820);
  box-shadow: none;
}

.dark-placeholder strong {
  color: white;
}

.dark-placeholder svg {
  fill: #74808a;
}

.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 35px;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.about-list {
  display: grid;
}

.about-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  padding: 20px 0;
  border-top: 1px solid #dce0e4;
}

.about-list > div:last-child {
  border-bottom: 1px solid #dce0e4;
}

.about-list > div > span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
}

.about-list h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.about-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.contact {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--orange);
}

.contact::before {
  content: "";
  position: absolute;
  top: -240px;
  left: -150px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.04), 0 0 0 120px rgba(255, 255, 255, 0.03);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 80px;
  align-items: center;
}

.light-eyebrow {
  color: white;
  opacity: 0.78;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin: 23px 0 30px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

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

.contact-phone {
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.contact-card {
  padding: 38px;
  color: var(--ink);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 26px 70px rgba(121, 44, 5, 0.23);
}

.contact-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.contact-item > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 14px 5px 14px 5px;
  font-size: 1.1rem;
  font-weight: 800;
}

.contact-item small {
  display: block;
  margin-bottom: 5px;
  color: var(--orange-dark);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item strong,
.contact-item .email {
  display: block;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.contact-item p {
  margin: 4px 0 9px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.contact-item div > a:not(.email) {
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-divider {
  height: 1px;
  margin: 26px 0;
  background: var(--line);
}

.site-footer {
  padding: 32px 0;
  color: #bac0c5;
  background: #101820;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand .brand-copy strong {
  color: white;
}

.footer-brand .brand-copy small,
.footer-inner p,
.footer-inner > a {
  color: #9ca5ad;
  font-size: 0.76rem;
}

.footer-inner p {
  margin: 0;
}

.footer-inner > a:hover {
  color: white;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 19px;
  color: white;
  background: #1faf5b;
  border: 3px solid white;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(15, 90, 47, 0.3);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  background: #159447;
}

.floating-whatsapp svg {
  width: 25px;
  fill: currentColor;
}

@media (max-width: 960px) {
  .desktop-nav {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

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

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    max-width: 690px;
    width: 100%;
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .product-card:last-child {
    grid-column: 1 / -1;
  }

  .about-visual {
    max-width: 650px;
    width: 100%;
  }

  .contact-grid {
    gap: 48px;
  }
}

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

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 74px;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.73rem;
  }

  .brand-copy small {
    display: none;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

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

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .hero-points {
    display: grid;
    gap: 10px;
  }

  .hero-visual {
    min-height: 420px;
    padding: 18px 16px 64px 28px;
  }

  .hero-visual::before {
    left: 14px;
    border-radius: 10px 48px 10px 48px;
  }

  .photo-placeholder {
    min-height: 330px;
    padding: 25px;
    border-radius: 10px 42px 10px 42px;
  }

  .location-card {
    right: 0;
    bottom: 4px;
    left: 12px;
    min-width: 0;
  }

  .section {
    padding: 78px 0;
  }

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

  .product-card:last-child {
    grid-column: auto;
  }

  .product-card {
    min-height: 290px;
  }

  .product-icon {
    margin-bottom: 40px;
  }

  .availability-callout {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .availability-callout > div {
    align-items: flex-start;
  }

  .availability-dot {
    margin-top: 7px;
  }

  .about-visual {
    padding: 12px 0 12px 12px;
  }

  .dark-placeholder {
    min-height: 390px;
  }

  .contact-card {
    padding: 28px 22px;
  }

  .contact-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .contact-item > span {
    width: 42px;
    height: 42px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 58px;
    padding: 0;
    justify-content: center;
  }

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

@media (max-width: 360px) {
  .header-cta {
    display: none;
  }
}

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

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