@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@300;400;500;600&display=swap");

:root {
  --ink: #101418;
  --muted: #4a515a;
  --accent: #049dbf;
  --accent-soft: rgba(4, 157, 191, 0.12);
  --sand: #f7f4ee;
  --glow: #e9eef0;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(16, 20, 24, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

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

body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #f2f7fb 0%, #ffffff 45%, #e8f3f7 100%);
  line-height: 1.6;
}

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

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

.page {
  overflow: hidden;
}

.site-hero {
  padding: 32px 6vw 80px;
  background: linear-gradient(135deg, rgba(16, 20, 24, 0.04), rgba(4, 157, 191, 0.12));
  border-bottom: 1px solid rgba(16, 20, 24, 0.08);
}



.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 26px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 14px 30px rgba(4, 157, 191, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(4, 157, 191, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(4, 157, 191, 0.4);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(16, 20, 24, 0.06);
  color: var(--ink);
  box-shadow: none;
}

.btn-light {
  background: var(--white);
  color: #0f2e5a;
  box-shadow: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.hero-stats strong {
  font-size: 1.4rem;
  display: block;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero-carousel {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #f1f4f6;
  padding: 16px;
}

.hero-track {
  display: grid;
  grid-template-columns: repeat(4, 100%);
  transition: transform 0.6s ease;
}

.hero-slide {
  display: grid;
  gap: 18px;
  align-items: center;
  text-align: center;
  padding: 8px 12px 12px;
  min-height: 280px;
  align-content: start;
  justify-items: center;
}

.hero-slide img {
  border-radius: var(--radius-md);
  padding: 10px;
  max-height: 260px;
  object-fit: contain;
  margin: 0 auto;
}

.hero-card-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.hero-card-info p {
  color: var(--muted);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(16, 20, 24, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

#hero-slide-1:checked ~ .hero-carousel .hero-track {
  transform: translateX(0);
}

#hero-slide-2:checked ~ .hero-carousel .hero-track {
  transform: translateX(-100%);
}

#hero-slide-3:checked ~ .hero-carousel .hero-track {
  transform: translateX(-200%);
}

#hero-slide-4:checked ~ .hero-carousel .hero-track {
  transform: translateX(-300%);
}

#hero-slide-1:checked ~ .hero-dots label[for="hero-slide-1"],
#hero-slide-2:checked ~ .hero-dots label[for="hero-slide-2"],
#hero-slide-3:checked ~ .hero-dots label[for="hero-slide-3"],
#hero-slide-4:checked ~ .hero-dots label[for="hero-slide-4"] {
  background: var(--accent);
  width: 24px;
}

#hero-slide-1:focus-visible ~ .hero-dots label[for="hero-slide-1"],
#hero-slide-2:focus-visible ~ .hero-dots label[for="hero-slide-2"],
#hero-slide-3:focus-visible ~ .hero-dots label[for="hero-slide-3"],
#hero-slide-4:focus-visible ~ .hero-dots label[for="hero-slide-4"] {
  outline: 2px solid rgba(4, 157, 191, 0.35);
  outline-offset: 3px;
}



.section {
  padding: 80px 6vw;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.category-grid,
.product-grid,
.benefits-grid,
.catalog-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.category-card,
.product-card,
.benefit-card,
.catalog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: 0 14px 40px rgba(16, 20, 24, 0.08);
  transition: transform 0.3s ease;
}

.category-card:hover,
.product-card:hover,
.benefit-card:hover,
.catalog-card:hover {
  transform: translateY(-6px);
}

.category-card span {
  margin-top: 20px;
  display: inline-flex;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.featured {
  background: var(--sand);
}

.product-card {
  display: grid;
  gap: 16px;
  align-items: center;
}

.product-motion {
  opacity: 0;
  transform: translateY(24px) rotate(-1.5deg);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.product-motion.in-view {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.product-motion:nth-child(1) {
  transition-delay: 0ms;
}

.product-motion:nth-child(2) {
  transition-delay: 120ms;
}

.product-motion:nth-child(3) {
  transition-delay: 240ms;
}

.product-motion:nth-child(4) {
  transition-delay: 360ms;
}

.product-card img {
  border-radius: var(--radius-sm);
  background: var(--glow);
  padding: 12px;
}

.catalog {
  display: grid;
  gap: 48px;
}

.catalog-group h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.catalog-card {
  text-align: center;
  padding: 20px;
}

.catalog-card img {
  height: 140px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.catalog-card h4 {
  font-size: 1rem;
}

.benefits {
  background: linear-gradient(160deg, #ffffff 0%, #f3f1ea 100%);
}

.benefit-card p {
  color: var(--muted);
}

.benefit-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 12px;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.contact {
  background: #0b1d27;
  color: var(--white);
}

.contact .eyebrow {
  color: #8bd8ea;
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
}

.contact-info ul {
  list-style: none;
  margin-top: 16px;
}

.contact-info li {
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form input,
.contact-form textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
}

.contact-form button {
  width: fit-content;
}

.cta-banner {
  padding: 80px 6vw;
}

.cta-shell {
  background: linear-gradient(120deg, #142d5a, #0f5c92);
  color: var(--white);
  border-radius: 22px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 24px 50px rgba(9, 26, 52, 0.25);
}

.cta-shell h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.cta-shell p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.85);
}



.reveal {
  animation: fadeUp 0.7s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tb-whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tb-whatsapp-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
}

.tb-whatsapp-float:hover {
  background: #1fba59;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.tb-whatsapp-float:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 2px;
}

@media (max-width: 900px) {
  .hero-slide {
    padding: 16px;
  }
}

@media (max-width: 600px) {
  .site-hero {
    padding-top: 24px;
  }

  .hero-card {
    padding: 18px;
  }

  .section {
    padding: 64px 6vw;
  }

}

@media (prefers-reduced-motion: reduce) {
  .product-motion {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

