:root {
  --background: #f8fafc;
  --foreground: #202a35;
  --muted: #667085;
  --muted-bg: #f2f6f8;
  --border: #dde5ea;
  --primary: #1f78c8;
  --primary-dark: #155c9c;
  --secondary: #20b56b;
  --secondary-dark: #158451;
  --card: #ffffff;
  --soft-blue: #eaf4ff;
  --soft-green: #eaf8f1;
  --shadow: 0 16px 40px rgba(32, 42, 53, 0.1);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--foreground);
  background: var(--background);
  font-family: "Plus Jakarta Sans", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(31, 120, 200, 0.45);
  outline-offset: 3px;
}

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

p {
  margin: 0;
  color: var(--muted);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.1;
}

h1 {
  max-width: 700px;
  font-size: clamp(38px, 5vw, 60px);
}

h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
}

h3 {
  font-size: 21px;
  font-weight: 700;
}

.container {
  width: min(100% - 32px, 1280px);
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--primary);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
  padding: 0 clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(221, 229, 234, 0.86);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--primary);
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.button-primary,
.header-cta,
.product-button {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 12px 26px rgba(31, 120, 200, 0.22);
}

.button-primary:hover,
.header-cta:hover,
.product-button:hover {
  background: var(--primary-dark);
}

.button-outline {
  color: var(--foreground);
  background: #ffffff;
  border-color: var(--border);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(234, 244, 255, 0.92), rgba(255, 255, 255, 0.78) 52%, rgba(234, 248, 241, 0.9)),
    #ffffff;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(31, 120, 200, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 120, 200, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  min-height: auto;
  padding: clamp(44px, 6vw, 76px) 0;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.pill,
.section-kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(31, 120, 200, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.pill,
.section-kicker {
  padding: 9px 13px;
}

.hero-copy p {
  max-width: 650px;
  font-size: 20px;
  line-height: 1.8;
}

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

.hero-showcase {
  position: relative;
}

.hero-image {
  overflow: visible;
  width: min(100%, 520px);
  margin-left: auto;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(31, 120, 200, 0.18));
}

.section {
  padding: clamp(58px, 8vw, 92px) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin-top: 14px;
  margin-bottom: 14px;
}

.section-heading p {
  font-size: 17px;
}

.benefits-section {
  background: #f8fafc;
}

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

.benefit-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 12px 30px rgba(32, 42, 53, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.benefit-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(31, 120, 200, 0.1);
  font-weight: 800;
}

.benefit-card h3 {
  margin-bottom: 10px;
}

.catalog-section {
  padding-bottom: clamp(58px, 8vw, 92px);
  background: var(--muted-bg);
}

.catalog-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 82px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 15% 20%, rgba(31, 120, 200, 0.16), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(32, 181, 107, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 246, 248, 0.96)),
    #ffffff;
  text-align: center;
}

.catalog-hero-inner {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.catalog-hero p {
  max-width: 650px;
  font-size: 17px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 34px;
}

.product-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 12px 30px rgba(32, 42, 53, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-media {
  display: flex;
  height: 285px;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  margin: 14px 14px 0;
  padding: 18px 16px 12px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 80%, rgba(32, 181, 107, 0.18), transparent 34%),
    linear-gradient(135deg, #eef7ff, #f7fbf9);
}

.product-media img {
  width: auto;
  max-width: 92%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: 0;
  filter: drop-shadow(0 18px 18px rgba(32, 42, 53, 0.18));
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

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

.price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.price-row strong {
  color: var(--primary);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.price-row span {
  color: var(--muted);
  font-weight: 800;
}

.product-content ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.product-content li {
  position: relative;
  padding-left: 24px;
  color: #465363;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.product-content li::before {
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--secondary);
  content: "";
}

.product-button {
  width: 100%;
  margin-top: auto;
}

.process-section {
  background: #ffffff;
}

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

.process-grid article {
  position: relative;
  text-align: center;
}

.process-grid span {
  display: inline-grid;
  width: 76px;
  height: 76px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(31, 120, 200, 0.1);
  font-size: 34px;
  font-weight: 800;
}

.process-grid h3 {
  margin-bottom: 10px;
}

.testimonials-section {
  background:
    linear-gradient(
      180deg,
      #f8fafc 0%,
      #eef6ff 100%
    );
}

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

.testimonial-grid article {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(32, 42, 53, 0.07);
}

.stars {
  margin-bottom: 14px;
  color: #f5b400;
  letter-spacing: 0;
  font-weight: 800;
}

.testimonial-grid p {
  margin-bottom: 18px;
}

.testimonial-grid strong {
  color: var(--foreground);
}

.faq-section {
  background: #f8fafc;
}

.faq-list {
  display: grid;
  max-width: 850px;
  margin: 0 auto;
  gap: 14px;
}

details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(32, 42, 53, 0.04);
}

summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 800;
}

details p {
  padding: 0 24px 22px;
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #20b56b;
  box-shadow: 0 16px 34px rgba(32, 181, 107, 0.32);
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0;
  color: var(--muted);
  font-size: 14px;
}

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

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-showcase {
    order: -1;
  }

  .hero-image {
    margin-right: auto;
    margin-left: auto;
  }

  .benefit-grid,
  .product-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .site-header {
    height: 66px;
    padding: 0 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero-inner {
    padding-top: 26px;
  }

  .hero-image img {
    max-height: 320px;
  }

  h1 {
    font-size: 40px;
  }

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

  .product-media {
    height: 250px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

.logo {
    height: 150px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-left: 300px;
}
