:root {
  --orange: #f57c1f;
  --orange-dark: #d66411;
  --orange-soft: #fff3e8;
  --blue: #1f3f6b;
  --blue-dark: #122741;
  --blue-soft: #e7edf5;
  --slate: #1c2533;
  --text: #1d232f;
  --muted: #5a6472;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 32, 60, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 124, 31, 0.12), transparent 45%),
    radial-gradient(circle at 70% 10%, rgba(31, 63, 107, 0.14), transparent 40%),
    linear-gradient(180deg, #f8f9fb 0%, #f1f4f8 30%, #ffffff 100%);
  line-height: 1.6;
}

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

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

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--blue-dark);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  color: var(--muted);
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 63, 107, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.logo img {
  width: 56px;
  height: 56px;
  transform: scale(1.25);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--blue);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 20px rgba(31, 63, 107, 0.15);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--orange-dark);
}

.btn-outline {
  border-color: var(--blue);
  color: var(--blue);
  background: transparent;
}

.btn-ghost {
  border-color: rgba(31, 63, 107, 0.35);
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.7);
}

.hero {
  padding: 6rem 0 5rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1rem 6% 10% 6%;
  border-radius: 5px;
  background: linear-gradient(135deg, rgba(31, 63, 107, 0.08), rgba(245, 124, 31, 0.12));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-content p {
  margin-top: 1rem;
  max-width: 480px;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-highlights {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-visual {
  position: relative;
}

.image-card {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(31, 63, 107, 0.12);
  box-shadow: var(--shadow);
  background: var(--white);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  bottom: -1.2rem;
  left: 1.5rem;
  background: var(--blue-dark);
  color: var(--white);
  padding: 0.65rem 1.25rem;
  border-radius: 5px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(15, 32, 60, 0.2);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-block;
  margin-bottom: 1rem;
}

.section {
  padding: 5rem 0;
}

.section.problem {
  background: var(--white);
}

.section.solution {
  background: var(--blue-soft);
}

.section.ecommerce {
  background: var(--white);
}

.section.shelves {
  background: var(--orange-soft);
}

.section.containers {
  background: var(--white);
}

.section.differentials {
  background: var(--blue-soft);
}

.section.partnerships {
  background: var(--white);
}

.section-header {
  max-width: 520px;
}

.section-header p {
  margin-top: 0.8rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.card,
.feature,
.stat-card {
  background: var(--white);
  border-radius: 5px;
  padding: 1.6rem;
  border: 1px solid rgba(31, 63, 107, 0.12);
  box-shadow: 0 14px 28px rgba(15, 32, 60, 0.08);
}

.card h3,
.feature h3,
.stat-card h3 {
  margin-bottom: 0.5rem;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.clean-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.8rem;
}

.clean-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text);
  font-weight: 500;
}

.clean-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  background: var(--orange);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.45rem;
}

.highlight-box {
  margin-top: 1.5rem;
  background: rgba(245, 124, 31, 0.12);
  border-left: 4px solid var(--orange);
  padding: 1rem 1.2rem;
  border-radius: 5px;
  font-weight: 600;
  color: var(--blue-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.pill {
  background: rgba(31, 63, 107, 0.08);
  color: var(--blue-dark);
  border-radius: 5px;
  padding: 0.45rem 1rem;
  font-weight: 600;
  font-size: 0.86rem;
}

.pill.large {
  font-size: 1rem;
  padding: 0.65rem 1.4rem;
  background: var(--white);
  border: 1px solid rgba(31, 63, 107, 0.15);
}

.pill-grid {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.media {
  display: grid;
  gap: 1rem;
}

.image-stack {
  display: grid;
  gap: 1.2rem;
}

.image-card.small {
  max-width: 85%;
  justify-self: end;
}

.partnerships-cards {
  display: grid;
  gap: 1.5rem;
}

.final-cta {
  padding-bottom: 6rem;
}

.cta-box {
  background: var(--blue-dark);
  color: var(--white);
  padding: 3rem;
  border-radius: 5px;
  text-align: center;
  box-shadow: var(--shadow);
}

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

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  margin: 1rem auto 2rem;
  max-width: 540px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta-box .btn-outline {
  border-color: var(--white);
  color: var(--white);
}

.cta-box .btn-ghost {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: transparent;
}

.site-footer {
  background: #0f1e33;
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 0 3rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand img {
  width: 72px;
  height: 72px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  gap: 0.4rem;
  text-align: right;
}

.floating-actions {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  gap: 0.75rem;
  z-index: 40;
}

.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.92rem;
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(15, 32, 60, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.fab:hover,
.fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(15, 32, 60, 0.28);
}

.fab-top {
  background: var(--blue-dark);
}

.fab-whatsapp {
  background: #25d366;
  color: #0b2b17;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero {
    padding-top: 5rem;
  }

  .floating-badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .cards-4,
  .cards-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .site-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .cards-4,
  .cards-5 {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
    text-align: left;
  }

  .cta-row {
    justify-content: flex-start;
  }

  .footer-links {
    text-align: left;
  }

  .floating-actions {
    right: 1rem;
    bottom: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
