:root {
      --red-main: #eb3e3e;
      --red-dark: #b21f2b;
      --bg-light: #f9fafb;
      --text-main: #111827;
    }

    /* RESET */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
      color: var(--text-main);
      background-color: var(--bg-light);
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* NAVBAR FIJA BLANCA */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 50;
      background: #ffffff;
      border-bottom: 1px solid #e5e7eb;
    }

    .navbar-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0.6rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

        
    .navbar-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.25rem;
    }

    .navbar-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      margin: 4px 0;
      background: #4b5563;
      transition: transform 0.2s, opacity 0.2s, background 0.2s;
    }

  
    .navbar-toggle.is-open span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .navbar-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }

    .navbar-toggle.is-open span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .navbar-menu.is-open {
      display: flex;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .navbar-logo-img {
      height: 36px;
      width: auto;
    }

    .navbar-menu {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      font-size: 0.95rem;
    }

    .navbar-menu a {
      color: #4b5563;
      transition: color 0.2s;
    }

    .navbar-menu a:hover {
      color: var(--red-main);
    }

    .navbar-cta {
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      background: var(--red-main);
      color: #ffffff;
      font-size: 0.9rem;
      font-weight: 600;
      border: none;
      cursor: pointer;
      box-shadow: 0 6px 18px rgba(235, 62, 62, 0.35);
      transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
    }

    .navbar-cta:hover {
      background: var(--red-dark);
      box-shadow: 0 10px 24px rgba(235, 62, 62, 0.5);
      transform: translateY(-1px);
    }

    .page-offset {
      height: 64px;
    }


.hero {
  position: relative;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  text-align: center;
  color: var(--text-main);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, #e5e7eb 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.hero-content {
  max-width: 900px;
  padding: 3.5rem 1.5rem 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}

.hero-brandline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #6b7280;
}

.hero-brandline img {
  height: 28px;
  width: auto;
}

.hero-brandline span {
  font-weight: 500;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw + 1rem, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111827;
}

.hero-text p {
  font-size: 1.05rem;
  max-width: 40rem;
  color: #4b5563;
  margin: 0 auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.hero-badge {
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  color: #6b7280;
  background: #ffffff;
}


    .btn-primary {
      padding: 0.8rem 1.6rem;
      border-radius: 999px;
      border: none;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      background: var(--red-main);
      color: #ffffff;
      box-shadow: 0 10px 25px rgba(235, 62, 62, 0.45);
      transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(235, 62, 62, 0.6);
      background: var(--red-dark);
    }

    .btn-secondary {
      padding: 0.8rem 1.6rem;
      border-radius: 999px;
      border: 1px solid var(--red-dark);
      font-weight: 500;
      font-size: 0.95rem;
      cursor: pointer;
      background: transparent;
      color: var(--red-dark);
      transition: background 0.15s, color 0.15s, border-color 0.15s;
    }

    .btn-secondary:hover {
      background: rgba(248, 250, 252, 0.08);
      border-color: #fee2e2;
    }

    
    section {
      padding: 2rem 1.5rem;
    }

    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-title {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
      text-align: center;
      color: var(--text-main);
    }

    .section-subtitle {
      font-size: 1rem;
      color: #6b7280;
      text-align: center;
      max-width: 32rem;
      margin: 0.25rem auto 2rem;
    }

    
    .feature-block {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
      margin-bottom: 3rem;
    }

    .feature-block.reverse {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    }

    .feature-text h3 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
      color: var(--text-main);
    }

    .feature-text p {
      font-size: 0.98rem;
      color: #4b5563;
      margin-bottom: 0.75rem;
    }

    .feature-text ul {
      margin-left: 1.2rem;
      font-size: 0.95rem;
      color: #4b5563;
    }

    .feature-text li {
      margin-bottom: 0.25rem;
    }

    .feature-tag {
      display: inline-block;
      font-size: 0.75rem;
      padding: 0.15rem 0.5rem;
      border-radius: 999px;
      background: #fef2f2;
      color: var(--red-dark);
      margin-bottom: 0.35rem;
      border: 1px solid #fecaca;
    }

    .feature-image {
      border-radius: 1.25rem;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
      background: #ffffff;
      min-height: 220px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #4b5563;
      font-size: 0.95rem;
      padding: 1rem;
      text-align: center;
      border: 1px solid #f3f4f6;
    }

    .contact-section {
      background: #fef2f2;
      color: var(--text-main);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
    }

    .contact-section .section-title {
      color: var(--text-main);
    }

    .contact-section .section-subtitle {
      color: #6b7280;
    }

    .contact-list {
      list-style: none;
      margin-top: 1rem;
      font-size: 0.96rem;
    }

    .contact-list li {
      margin-bottom: 0.5rem;
    }

    .contact-highlight {
      margin-top: 1rem;
      font-size: 0.9rem;
      color: var(--red-dark);
    }

    .whatsapp-box {
      background: #ffffff;
      border-radius: 1.3rem;
      padding: 1.4rem 1.4rem 1.6rem;
      border: 1px solid #fecaca;
      box-shadow: 0 16px 36px rgba(248, 113, 113, 0.25);
    }

    .whatsapp-box h3 {
      font-size: 1.15rem;
      margin-bottom: 0.5rem;
      color: var(--text-main);
    }

    .whatsapp-box p {
      font-size: 0.93rem;
      color: #4b5563;
      margin-bottom: 0.9rem;
    }

    .whatsapp-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.7rem 1.3rem;
      border-radius: 999px;
      font-weight: 600;
      background: var(--red-main);
      color: #ffffff;
      font-size: 0.95rem;
      box-shadow: 0 10px 24px rgba(235, 62, 62, 0.5);
    }

    .whatsapp-link span {
      font-size: 1.1rem;
    }

    footer {
      background: #7f1d1d;
      color: #fee2e2;
      padding: 2rem 1.5rem 1.5rem;
      font-size: 0.85rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
      gap: 2rem;
      align-items: flex-start;
    }

    .footer-brand h4 {
      color: #ffffff;
      font-size: 1rem;
      margin-bottom: 0.3rem;
    }

    .footer-brand p {
      max-width: 20rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: flex-end;
    }

    .footer-links a {
      color: #fecaca;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 1.5rem auto 0;
      border-top: 1px solid #fca5a5;
      padding-top: 0.8rem;
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .cookies-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: #7f1d1d;
      color: #fee2e2;
      padding: 0.8rem 1.2rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      justify-content: center;
      font-size: 0.85rem;
      z-index: 40;
    }

    .cookies-banner button {
      padding: 0.4rem 0.9rem;
      border-radius: 999px;
      border: none;
      cursor: pointer;
      font-size: 0.8rem;
      font-weight: 600;
      background: #fecaca;
      color: #7f1d1d;
    }

    @media (max-width: 900px) {
  .hero-content,
  .contact-layout,
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-block,
  .feature-block.reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-block.reverse .feature-text {
    order: 1;
  }

  .feature-block.reverse .feature-image {
    order: 2;
  }

  .hero-text {
    text-align: left;
  }

  .hero-buttons {
    justify-content: center; 
  }

  .footer-links {
    justify-content: flex-start;
  }
}

    @media (max-width: 640px) {
      .navbar-inner {
        padding-inline: 1rem;
      }

      .navbar-toggle {
        display: block;
      }

      .navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        border-bottom: 1px solid #e5e7eb;
        padding: 0.75rem 1rem 1rem;
        display: none;
        flex-direction: column;
        gap: 0.75rem;
      }

      .navbar-menu a,
      .navbar-menu .navbar-cta {
        width: 100%;
        text-align: left;
      }

      .navbar-cta {
        justify-content: center;
      }

      .hero-content {
        padding-inline: 1rem;
      }

      section {
        padding-inline: 1rem;
      }

      .cookies-banner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

