:root {
  --primary: #1785c1;
  --primary-dark: #0f5f95;
  --primary-soft: #eaf6fd;
  --accent: #f08b2d;
  --accent-dark: #cf6f17;
  --ink: #1c2730;
  --muted: #667581;
  --line: #dbe5ec;
  --white: #ffffff;
  --bg: #f7fafc;
  --success: #25d366;
  --shadow-sm: 0 10px 25px rgba(15, 95, 149, 0.08);
  --shadow-md: 0 18px 50px rgba(15, 95, 149, 0.12);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(219, 229, 236, 0.8);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-menu a {
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s ease;
}

.nav-menu a:hover {
  color: var(--primary);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--primary-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 12px;
  background: var(--primary-soft);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: var(--primary-dark);
  margin: 5px 0;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15,95,149,0.96), rgba(23,133,193,0.92)),
    url("../Bodega.webp") center/cover no-repeat;
  color: var(--white);
  padding: 72px 0 56px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(240,139,45,0.14), transparent 24%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.14);
  color: var(--white);
}

.section-kicker {
  background: var(--primary-soft);
  color: var(--primary-dark);
}

.section-kicker-light {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-text {
  margin: 0 0 24px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,0.94);
  font-weight: 500;
}

.hero-points li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.hero-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}

.badge-light {
  background: rgba(255,255,255,0.16);
}

.hero-product-image {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  background: var(--white);
  margin-bottom: 18px;
}

.hero-card-info h2 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  color: var(--white);
}

.hero-card-info p {
  margin: 0;
  color: rgba(255,255,255,0.9);
}

/* General sections */
.section {
  padding: 84px 0;
}

.section-light {
  background: var(--bg);
}

.section-white {
  background: var(--white);
}

.section-accent {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.section-heading {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
}

.section-heading p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.section-accent .section-heading p,
.section-accent p,
.section-accent h2 {
  color: var(--white);
}

/* Trust strip */
.trust-strip {
  padding: 22px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-sm);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary-dark);
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.96rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--primary-soft);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.pricing-head {
  padding: 24px 24px 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
}

.pricing-head-alt {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.pricing-head h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.pricing-head p {
  margin: 0;
  color: rgba(255,255,255,0.92);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  text-align: left;
  background: #f3f8fb;
  color: var(--primary-dark);
  font-size: 0.94rem;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

tbody td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}

tbody tr:hover {
  background: #fbfdff;
}

/* Use cases */
.use-cases {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.use-case-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}

.use-case-copy p {
  margin: 0;
  color: rgba(255,255,255,0.9);
}

.use-case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mini-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 18px;
  font-weight: 700;
  text-align: center;
  backdrop-filter: blur(8px);
}

/* FAQ */
.faq-layout {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  border: none;
  background: var(--white);
  cursor: pointer;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
}

.faq-symbol {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--primary);
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.active .faq-symbol {
  transform: rotate(45deg);
}

/* CTA section */
.cta-section {
  background: linear-gradient(180deg, #fff8ef, #ffffff);
}

.cta-box {
  border: 1px solid #f4dcc3;
  background: var(--white);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.cta-box h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-box p {
  margin: 0 auto 24px;
  max-width: 760px;
  color: var(--muted);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-data {
  display: grid;
  gap: 6px;
  color: var(--ink);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-full {
  width: calc(100% - 32px);
  margin: 18px 16px 18px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 1.5px solid var(--primary);
}

/* Footer */
.site-footer {
  background: #10212d;
  color: rgba(255,255,255,0.88);
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 28px;
  padding-bottom: 28px;
}

.footer-logo {
  width: 82px;
  margin-bottom: 14px;
}

.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.05rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 18px 0 24px;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  min-height: 58px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--success);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 18px 35px rgba(37, 211, 102, 0.28);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .use-cases,
  .benefits-grid,
  .trust-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .use-case-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    padding: 12px 16px 18px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 0;
    border-bottom: 1px solid #edf3f7;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .hero {
    padding: 48px 0 38px;
  }

  .hero-card {
    padding: 18px;
  }

  .section {
    padding: 62px 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 22px));
  }

  .brand span {
    font-size: 1rem;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-buttons {
    flex-direction: column;
  }

  .btn,
  .btn-full {
    width: 100%;
  }

  .benefits-grid,
  .trust-grid,
  .use-case-list {
    grid-template-columns: 1fr;
  }

  .cta-box {
    padding: 24px 16px;
  }

  .floating-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
}