    :root {
      --bg: #fff8f3;
      --bg-soft: #fff1e8;
      --surface: #ffffff;
      --surface-2: #fffaf7;
      --text: #1b1a19;
      --muted: #6d625d;
      --line: rgba(32, 20, 12, 0.08);

      --primary: #e85d3f;
      --primary-2: #ff8a3d;
      --primary-dark: #8d3c2b;
      --accent: #ffbe0b;
      --dark: #1f2937;
      --dark-2: #111827;

      --success: #17b26a;
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;

      --shadow-lg: 0 30px 80px rgba(23, 17, 14, 0.12);
      --shadow-md: 0 18px 40px rgba(23, 17, 14, 0.1);
      --shadow-sm: 0 10px 24px rgba(23, 17, 14, 0.08);

      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Inter", sans-serif;
      color: var(--text);
      background: radial-gradient(
          circle at top left,
          rgba(255, 190, 11, 0.1),
          transparent 28%
        ),
        radial-gradient(
          circle at top right,
          rgba(232, 93, 63, 0.1),
          transparent 24%
        ),
        linear-gradient(180deg, #fffaf6 0%, #fff7f1 100%);
    }

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

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

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

    /* TOPBAR */
    .topbar {
      background: linear-gradient(90deg, #0f172a, #17253a);
      color: rgba(255, 255, 255, 0.88);
      font-size: 14px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .topbar-inner {
      min-height: 46px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .topbar p {
      margin: 0;
    }

    .topbar a {
      color: #fff;
      font-weight: 700;
    }

    /* HEADER */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 248, 243, 0.86);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

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

.brand img, .brand-footer img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 920px) {
  .brand,.brand-footer img {
    width: 180px;
    max-width: 180px;
    min-width: 140px;
  }
}

@media (max-width: 640px) {
  .brand,.brand-footer img {
    width: 150px;
    max-width: 150px;
    min-width: 120px;
  }
}

    .brand-mark {
      width: 46px;
      height: 46px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: white;
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 0.04em;
      box-shadow: 0 12px 24px rgba(232, 93, 63, 0.28);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
    }

    .brand-text strong {
      font-family: "Poppins", sans-serif;
      font-size: 20px;
      letter-spacing: -0.02em;
    }

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

    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .nav a {
      color: #433833;
      font-weight: 600;
      font-size: 15px;
    }

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

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    /* BUTTONS */
    .btn {
      border: 0;
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 700;
      font-size: 14px;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
        color 0.2s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn-lg {
      padding: 15px 24px;
      font-size: 15px;
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 16px 28px rgba(232, 93, 63, 0.24);
    }

    .btn-primary:hover {
      box-shadow: 0 20px 34px rgba(232, 93, 63, 0.28);
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.75);
      color: #2d2420;
      border: 1px solid rgba(30, 18, 12, 0.08);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.85);
      color: #2d2420;
      border: 1px solid rgba(30, 18, 12, 0.08);
      box-shadow: var(--shadow-sm);
    }

    .btn-light {
      background: white;
      color: var(--dark-2);
      box-shadow: var(--shadow-sm);
    }

    .btn-outline-light {
      color: white;
      border: 1px solid rgba(255, 255, 255, 0.26);
      background: rgba(255, 255, 255, 0.06);
    }

    /* BADGES */
    .eyebrow,
    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid rgba(25, 16, 10, 0.06);
      color: #5f4b42;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
      backdrop-filter: blur(10px);
    }

    .section-kicker-light {
      background: rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.96);
      border-color: rgba(255, 255, 255, 0.16);
    }

    .eyebrow-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: inline-block;
    }

    /* HERO */
    .hero {
      padding: 56px 0 36px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr 0.98fr;
      gap: 42px;
      align-items: center;
    }

    .hero-title {
      margin: 0;
      font-family: "Poppins", sans-serif;
      font-size: clamp(2.35rem, 4vw, 3.65rem);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -0.035em;
      max-width: 680px;
    }

    .hero-subtitle {
      margin: 16px 0 0;
      font-size: 1.16rem;
      line-height: 1.55;
      color: var(--primary-dark);
      font-weight: 600;
      max-width: 670px;
    }

    .hero-text {
      margin: 18px 0 0;
      font-size: 18px;
      line-height: 1.78;
      color: var(--muted);
      max-width: 640px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .hero-rubros {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .hero-rubros span {
      background: rgba(255, 255, 255, 0.88);
      padding: 10px 14px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 700;
      color: #453934;
      border: 1px solid rgba(32, 20, 12, 0.05);
      box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
    }

    .hero-points {
      margin-top: 32px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .hero-point {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.74);
      border: 1px solid rgba(32, 20, 12, 0.06);
      box-shadow: var(--shadow-sm);
    }

    .hero-point strong {
      display: block;
      font-size: 15px;
      margin-bottom: 8px;
    }

    .hero-point span {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .hero-visual {
      position: relative;
      min-height: 560px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-card-main {
      width: 100%;
      max-width: 560px;
    }

    .screen {
      padding: 16px;
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid rgba(32, 20, 12, 0.08);
      box-shadow: var(--shadow-lg);
      backdrop-filter: blur(14px);
    }

    .screen-top {
      display: flex;
      gap: 8px;
      margin-bottom: 14px;
    }

    .screen-top span {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(31, 41, 55, 0.14);
    }

    .dashboard {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 16px;
    }

    .dashboard-left,
    .dashboard-right {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .dash-block,
    .dash-mini,
    .kitchen-ticket,
    .kpi-box {
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(32, 20, 12, 0.06);
      box-shadow: var(--shadow-sm);
    }

    .dash-block {
      padding: 22px;
    }

    .dash-block small,
    .dash-mini small,
    .kitchen-ticket small,
    .kpi-box small,
    .metric small {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 8px;
    }

    .dash-block strong,
    .dash-mini strong,
    .kitchen-ticket strong,
    .kpi-box strong,
    .metric strong {
      display: block;
      font-size: 28px;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .dash-block span,
    .metric span {
      display: block;
      margin-top: 6px;
      color: #7a6b63;
      font-size: 13px;
    }

    .dash-block-accent {
      background: linear-gradient(135deg, #fff5ea, #fff);
      border-color: rgba(232, 93, 63, 0.12);
    }

    .dash-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .dash-mini {
      padding: 18px;
    }

    .dash-list {
      padding: 14px;
      border-radius: 24px;
      background: #fff;
      border: 1px solid rgba(32, 20, 12, 0.06);
      box-shadow: var(--shadow-sm);
    }

    .dash-list-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 8px;
      border-bottom: 1px solid rgba(32, 20, 12, 0.06);
    }

    .dash-list-item:last-child {
      border-bottom: 0;
    }

    .dash-list-item span {
      color: var(--muted);
    }

    .kitchen-ticket {
      padding: 20px;
      min-height: 220px;
    }

    .kitchen-ticket ul {
      padding-left: 18px;
      margin: 14px 0 16px;
      color: var(--muted);
      line-height: 1.7;
    }

    .kpi-box {
      padding: 20px;
    }

    .tag,
    .chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 700;
    }

    .tag-hot {
      background: rgba(23, 178, 106, 0.12);
      color: #0f8a51;
    }

    .chip {
      background: rgba(232, 93, 63, 0.12);
      color: #9b321b;
      margin-bottom: 10px;
    }

    .chip-gold {
      background: rgba(255, 190, 11, 0.16);
      color: #8a6700;
    }

    .floating-card {
      position: absolute;
      padding: 16px 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(32, 20, 12, 0.06);
      box-shadow: var(--shadow-md);
      max-width: 220px;
    }

    .floating-card strong {
      display: block;
      font-size: 14px;
      line-height: 1.5;
      color: #322822;
    }

    .floating-card-a {
      top: 42px;
      right: 0;
    }

    .floating-card-b {
      bottom: 42px;
      left: 0;
    }

    /* SECTIONS */
    .section {
      padding: 92px 0;
    }

    .section-soft {
      background: radial-gradient(
          circle at top right,
          rgba(255, 190, 11, 0.1),
          transparent 22%
        ),
        linear-gradient(180deg, #fff4eb 0%, #fff8f3 100%);
      border-top: 1px solid rgba(32, 20, 12, 0.05);
      border-bottom: 1px solid rgba(32, 20, 12, 0.05);
    }

    .section-dark {
      background: radial-gradient(
          circle at top left,
          rgba(255, 190, 11, 0.1),
          transparent 20%
        ),
        linear-gradient(180deg, #131c28 0%, #101722 100%);
      color: white;
    }

    .section-heading {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 42px;
    }

    .section-heading h2 {
      margin: 0;
      font-family: "Poppins", sans-serif;
      font-size: clamp(2rem, 3.4vw, 3.1rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    .section-heading p {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
    }

    .section-heading-dark p,
    .section-heading-dark .section-kicker {
      color: rgba(255, 255, 255, 0.82);
    }

    .section-heading-dark .section-kicker {
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.08);
    }

    /* CARDS */
    .cards-grid,
    .module-grid,
    .benefits-grid {
      display: grid;
      gap: 22px;
    }

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

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

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

    .rubro-card,
    .module-card,
    .benefit-card {
      border-radius: 26px;
      padding: 24px;
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid rgba(32, 20, 12, 0.06);
      box-shadow: var(--shadow-sm);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
    }

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

    .rubro-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      background: linear-gradient(135deg, #fff3ea, #fff);
      box-shadow: inset 0 0 0 1px rgba(232, 93, 63, 0.08);
      margin-bottom: 16px;
    }

    .rubro-card h3,
    .module-card h3,
    .benefit-card strong {
      margin: 0 0 10px;
      font-size: 20px;
      letter-spacing: -0.02em;
    }

    .rubro-card p,
    .module-card p,
    .benefit-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
      font-size: 15px;
    }

    .rubro-card a {
      display: inline-block;
      margin-top: 18px;
      font-weight: 700;
      color: var(--primary);
    }

    /* VALUE */
    .value-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 34px;
      align-items: center;
    }

    .value-copy h2 {
      margin: 0;
      font-family: "Poppins", sans-serif;
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
    }

    .value-copy p {
      margin-top: 18px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 24px 0 0;
      display: grid;
      gap: 14px;
    }

    .check-list li {
      position: relative;
      padding-left: 32px;
      color: #433833;
      line-height: 1.6;
      font-weight: 500;
    }

    .check-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      width: 22px;
      height: 22px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(232, 93, 63, 0.12);
      color: var(--primary);
      font-size: 13px;
      font-weight: 800;
    }

    .value-panel-inner {
      border-radius: 32px;
      padding: 26px;
      background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92),
        rgba(255, 255, 255, 0.78)
      );
      border: 1px solid rgba(32, 20, 12, 0.06);
      box-shadow: var(--shadow-lg);
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .metric {
      padding: 22px;
      border-radius: 24px;
      background: white;
      border: 1px solid rgba(32, 20, 12, 0.06);
    }

    /* BENEFITS */
    .benefit-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: none;
    }

    .benefit-card p {
      color: rgba(255, 255, 255, 0.76);
    }

    /* CTA */
    .cta-section {
      padding-top: 30px;
    }

    .cta-box {
      border-radius: 34px;
      padding: 36px;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      color: white;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 26px;
      box-shadow: 0 28px 54px rgba(232, 93, 63, 0.26);
    }

    .cta-box h2 {
      margin: 0;
      font-family: "Poppins", sans-serif;
      font-size: clamp(2rem, 3vw, 3rem);
      line-height: 1.04;
      letter-spacing: -0.03em;
    }

    .cta-box p {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, 0.92);
      line-height: 1.7;
      max-width: 680px;
    }

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

    /* FAQ */
    .faq-wrap {
      max-width: 980px;
    }

    .faq-list {
      display: grid;
      gap: 16px;
    }

    .faq-item {
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.84);
      border: 1px solid rgba(32, 20, 12, 0.06);
      box-shadow: var(--shadow-sm);
      padding: 8px 20px;
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 0;
      font-size: 18px;
      font-weight: 700;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item p {
      margin: 0 0 18px;
      color: var(--muted);
      line-height: 1.8;
    }

    /* FOOTER */
    .site-footer {
      padding: 34px 0 18px;
      border-top: 1px solid rgba(32, 20, 12, 0.06);
      background: rgba(255, 255, 255, 0.54);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.7fr 0.7fr;
      gap: 28px;
      padding-bottom: 22px;
    }

    .brand-footer {
      margin-bottom: 14px;
    }

    .footer-text {
      max-width: 440px;
      color: var(--muted);
      line-height: 1.75;
    }

    .site-footer h4 {
      margin: 0 0 14px;
      font-size: 16px;
    }

    .site-footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .site-footer li a {
      color: var(--muted);
    }

    .footer-bottom {
      padding-top: 18px;
      border-top: 1px solid rgba(32, 20, 12, 0.06);
    }

    .footer-bottom p {
      margin: 0;
      color: #7a6d66;
      font-size: 14px;
    }

    /* WHATSAPP FLOAT */
    .whatsapp-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: #25d366;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
      z-index: 999;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      font-size: 34px;
    }

    .whatsapp-float:hover {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26);
    }

    .whatsapp-float i {
      line-height: 1;
      display: block;
    }

    /* RESPONSIVE */
    @media (max-width: 1180px) {
      .hero-grid,
      .value-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cards-grid,
      .module-grid,
      .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-visual {
        min-height: auto;
        padding-top: 10px;
      }

      .floating-card-a {
        top: 16px;
        right: 12px;
      }

      .floating-card-b {
        bottom: 16px;
        left: 12px;
      }

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

    @media (max-width: 920px) {
      .nav,
      .header-actions .btn-ghost {
        display: none;
      }

      .hero-points,
      .value-panel-inner,
      .dashboard {
        grid-template-columns: 1fr;
      }

      .topbar-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 10px 0;
      }
    }

    @media (max-width: 640px) {
      .section,
      .hero {
        padding: 72px 0;
      }

      .header-inner {
        min-height: 74px;
      }

      .cards-grid,
      .module-grid,
      .benefits-grid {
        grid-template-columns: 1fr;
      }

      .brand-text strong {
        font-size: 18px;
      }

      .hero-title {
        font-size: 2.3rem;
        line-height: 1.1;
      }

      .hero-subtitle {
        font-size: 1rem;
      }

      .hero-text,
      .section-heading p,
      .value-copy p {
        font-size: 16px;
      }

      .cta-box,
      .screen,
      .rubro-card,
      .module-card,
      .benefit-card,
      .faq-item {
        border-radius: 22px;
      }

      .floating-card {
        position: static;
        max-width: 100%;
        margin-top: 14px;
      }

      .hero-visual {
        display: block;
      }

      .whatsapp-float {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
        font-size: 30px;
      }
    }



