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

    :root {
      --red: #c0392b;
      --red-dark: #96281b;
      --red-light: #e74c3c;
      --gold: #f39c12;
      --gold-light: #f1c40f;
      --dark: #0d0d0d;
      --dark2: #1a1a1a;
      --dark3: #252525;
      --gray: #666;
      --light: #f5f5f0;
      --white: #ffffff;
      --green: #27ae60;
      --font-head: 'Oswald', sans-serif;
      --font-body: 'Lato', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--dark);
      color: var(--white);
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

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

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* ── URGENCY BAR ── */
    .urgency-bar {
      background: var(--red);
      text-align: center;
      padding: 10px 16px;
      font-family: var(--font-head);
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      font-weight: 600;
      animation: pulse-bar 2s ease-in-out infinite;
    }

    @keyframes pulse-bar {

      0%,
      100% {
        background: var(--red);
      }

      50% {
        background: var(--red-dark);
      }
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(160deg, #1a0000 0%, var(--dark2) 50%, #0d1a00 100%);
      position: relative;
      overflow: hidden;
      padding: 60px 20px 80px;
      text-align: center;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(192, 57, 43, 0.18) 0%, transparent 70%);
    }

    .logo-wrap {
      margin-bottom: 28px;
      position: relative;
    }

    .logo-wrap img {
      max-width: 220px;
      margin: 0 auto;
    }

    .hero h1 {
      font-family: var(--font-head);
      font-size: clamp(2rem, 5vw, 3.6rem);
      font-weight: 700;
      line-height: 1.1;
      text-transform: uppercase;
      position: relative;
    }

    .hero h1 span {
      color: var(--gold);
    }

    .hero-sub {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: #ccc;
      margin: 18px auto 32px;
      max-width: 620px;
      line-height: 1.6;
      position: relative;
    }

    .badges-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 36px;
      position: relative;
    }

    .badge {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50px;
      padding: 8px 18px;
      font-family: var(--font-head);
      font-size: 0.85rem;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .badge-icon {
      font-size: 1.1rem;
    }

    .cta-btn {
      display: inline-block;
      background: linear-gradient(135deg, var(--gold) 0%, var(--red) 100%);
      color: var(--white);
      font-family: var(--font-head);
      font-size: clamp(1.1rem, 3vw, 1.5rem);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 18px 44px;
      border-radius: 6px;
      position: relative;
      box-shadow: 0 8px 30px rgba(192, 57, 43, 0.5);
      transition: transform 0.15s ease, box-shadow 0.15s ease;
      animation: bounce-cta 3s ease-in-out infinite;
    }

    @keyframes bounce-cta {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-5px);
      }
    }

    .cta-btn:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 14px 40px rgba(192, 57, 43, 0.65);
      animation: none;
    }

    .cta-sub {
      font-size: 0.8rem;
      color: #ccc;
      margin-top: 12px;
    }

    /* ── BENEFITS STRIP ── */
    .benefits-strip {
      background: var(--dark2);
      border-top: 3px solid var(--red);
      border-bottom: 3px solid var(--red);
      padding: 40px 20px;
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }

    .benefit-item {
      padding: 10px;
    }

    .benefit-icon {
      font-size: 2.4rem;
      margin-bottom: 10px;
      display: block;
    }

    .benefit-item h3 {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 600;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* ── SECTION WRAPPER ── */
    .section {
      padding: 70px 20px;
    }

    .section-inner {
      max-width: 900px;
      margin: 0 auto;
    }

    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.5rem, 4vw, 2.4rem);
      text-transform: uppercase;
      text-align: center;
      margin-bottom: 40px;
      font-weight: 700;
    }

    .section-title span {
      color: var(--gold);
    }

    .accent-line {
      width: 70px;
      height: 4px;
      background: linear-gradient(90deg, var(--red), var(--gold));
      margin: 14px auto 0;
      border-radius: 2px;
    }

    /* ── INGREDIENTS ── */
    .ingredients-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }

    .ingredient-card {
      background: var(--dark3);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 24px 20px;
      text-align: center;
      transition: border-color 0.3s, transform 0.3s;
    }

    .ingredient-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }

    .ingredient-emoji {
      font-size: 2.8rem;
      margin-bottom: 12px;
      display: block;
    }

    .ingredient-card h4 {
      font-family: var(--font-head);
      font-size: 1.1rem;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .ingredient-card p {
      font-size: 0.88rem;
      color: #ddd;
      line-height: 1.6;
    }

    /* ── BEFORE/AFTER ── */
    .compare-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    @media (max-width: 540px) {
      .compare-grid {
        grid-template-columns: 1fr;
      }
    }

    .compare-card {
      border-radius: 10px;
      padding: 28px 20px;
      text-align: center;
    }

    .compare-before {
      background: linear-gradient(135deg, #2a0000, #1a0000);
      border: 2px solid #7a0000;
    }

    .compare-after {
      background: linear-gradient(135deg, #002a00, #001a00);
      border: 2px solid var(--green);
    }

    .compare-label {
      font-family: var(--font-head);
      font-size: 1rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 16px;
      opacity: 0.7;
    }

    .compare-stat {
      font-family: var(--font-head);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
    }

    .compare-stat-label {
      font-size: 0.85rem;
      color: #ddd;
      margin-top: 4px;
    }

    /* ── PRICING ── */
    .pricing-section {
      background: var(--dark);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      max-width: 860px;
      margin: 0 auto;
    }

    .pricing-card {
      background: var(--dark2);
      border: 2px solid rgba(255, 255, 255, 0.08);
      border-radius: 14px;
      padding: 32px 24px;
      text-align: center;
      position: relative;
      transition: transform 0.3s, border-color 0.3s;
    }

    .pricing-card:hover {
      transform: translateY(-6px);
    }

    .pricing-card.popular {
      border-color: var(--gold);
      transform: scale(1.04);
    }

    .pricing-card.popular:hover {
      transform: scale(1.04) translateY(-6px);
    }

    .popular-badge {
      position: absolute;
      top: -14px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(90deg, var(--gold), var(--red));
      color: var(--white);
      font-family: var(--font-head);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 18px;
      border-radius: 50px;
      white-space: nowrap;
    }

    .kit-name {
      font-family: var(--font-head);
      font-size: 1.3rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }

    .kit-units {
      font-size: 0.88rem;
      color: #aaa;
      margin-bottom: 20px;
    }

    .kit-units strong {
      color: #ccc;
    }

    .price-old {
      font-size: 0.9rem;
      color: #999;
      text-decoration: line-through;
      margin-bottom: 4px;
    }

    .price-parcel {
      font-family: var(--font-head);
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1;
    }

    .price-parcel small {
      font-size: 1rem;
      color: #ccc;
    }

    .price-vista {
      font-size: 0.9rem;
      color: var(--green);
      margin: 6px 0 22px;
    }

    .kit-features {
      list-style: none;
      margin-bottom: 24px;
      text-align: left;
    }

    .kit-features li {
      font-size: 0.87rem;
      color: #ddd;
      padding: 5px 0;
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .kit-features li::before {
      content: '✔';
      color: var(--green);
      flex-shrink: 0;
      margin-top: 1px;
    }

    .btn-kit {
      display: block;
      width: 100%;
      background: linear-gradient(135deg, var(--gold), var(--red));
      color: var(--white);
      font-family: var(--font-head);
      font-size: 1.1rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 14px;
      border-radius: 6px;
      transition: opacity 0.2s, transform 0.2s;
      box-shadow: 0 4px 18px rgba(192, 57, 43, 0.35);
    }

    .btn-kit:hover {
      opacity: 0.9;
      transform: translateY(-2px);
    }

    /* ── ADVERTORIAL LINKS ── */
    .advertorial-section {
      background: var(--dark3);
    }

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

    .advertorial-card {
      background: var(--dark2);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: border-color 0.2s, transform 0.2s;
      text-decoration: none;
      color: inherit;
    }

    .advertorial-card:hover {
      border-color: var(--gold);
      transform: translateX(4px);
    }

    .adv-icon {
      font-size: 2rem;
      flex-shrink: 0;
    }

    .adv-title {
      font-family: var(--font-head);
      font-size: 0.95rem;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .adv-desc {
      font-size: 0.8rem;
      color: #aaa;
    }

    /* ── GUARANTEE ── */
    .guarantee-section {
      background: linear-gradient(160deg, #001500 0%, #0d0d0d 100%);
      border-top: 3px solid var(--green);
    }

    .guarantee-box {
      background: rgba(39, 174, 96, 0.08);
      border: 2px solid var(--green);
      border-radius: 14px;
      padding: 40px 32px;
      text-align: center;
      max-width: 640px;
      margin: 0 auto;
    }

    .guarantee-box .shield {
      font-size: 4rem;
      margin-bottom: 16px;
      display: block;
    }

    .guarantee-box h3 {
      font-family: var(--font-head);
      font-size: 1.8rem;
      color: var(--green);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .guarantee-box p {
      color: #ddd;
      line-height: 1.7;
      font-size: 0.95rem;
    }

    /* ── FAQ ── */
    .faq-section {
      background: var(--dark2);
    }

    .faq-list {
      max-width: 720px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.07);
      padding: 18px 0;
    }

    .faq-question {
      font-family: var(--font-head);
      font-size: 1.05rem;
      color: var(--gold);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .faq-answer {
      font-size: 0.92rem;
      color: #ddd;
      line-height: 1.7;
      margin-top: 12px;
      display: none;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-arrow {
      transition: transform 0.3s;
    }

    .faq-item.open .faq-arrow {
      transform: rotate(180deg);
    }

    /* ── FOOTER (estilo Mega Descontos Online) ── */
    footer {
      background: #0a0a0a;
      border-top: 3px solid var(--red);
      padding: 50px 20px 30px;
    }

    .footer-inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 32px;
      margin-bottom: 40px;
    }

    .footer-logo img {
      max-width: 180px;
      margin-bottom: 14px;
    }

    .footer-logo p {
      font-size: 0.83rem;
      color: #999;
      line-height: 1.6;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 14px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      background: var(--dark3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      transition: background 0.2s;
    }

    .footer-social a:hover {
      background: var(--red);
    }

    .footer-col h4 {
      font-family: var(--font-head);
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--gold);
      margin-bottom: 14px;
    }

    .footer-col ul {
      list-style: none;
    }

    .footer-col ul li {
      margin-bottom: 8px;
    }

    .footer-col ul li a {
      font-size: 0.85rem;
      color: #999;
      transition: color 0.2s;
    }

    .footer-col ul li a:hover {
      color: var(--white);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding-top: 22px;
      font-size: 0.78rem;
      color: #888;
      line-height: 1.7;
    }

    .footer-bottom a {
      color: #999;
    }

    .footer-bottom a:hover {
      color: var(--white);
    }

    .footer-disclaimer {
      background: rgba(255, 255, 255, 0.03);
      border-left: 3px solid var(--gold);
      padding: 12px 16px;
      margin-bottom: 18px;
      font-size: 0.78rem;
      color: #888;
      line-height: 1.6;
    }

    .footer-copy {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    /* ── FLOATING CTA ── */
    .floating-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(90deg, var(--red-dark), var(--red));
      padding: 14px 20px;
      text-align: center;
      z-index: 100;
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .floating-cta p {
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .floating-cta a {
      background: var(--gold);
      color: var(--dark);
      font-family: var(--font-head);
      font-size: 0.95rem;
      font-weight: 700;
      text-transform: uppercase;
      padding: 10px 24px;
      border-radius: 5px;
      white-space: nowrap;
      transition: opacity 0.2s;
    }

    .floating-cta a:hover {
      opacity: 0.9;
    }

    @media (max-width: 480px) {
      .floating-cta {
        flex-direction: column;
        gap: 10px;
        padding: 12px 16px;
      }

      .floating-cta p {
        font-size: 0.85rem;
      }
    }

    /* ── TRUST SEALS ── */
    .trust-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 28px;
    }

    .trust-seal {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      padding: 10px 18px;
      font-size: 0.82rem;
      display: flex;
      align-items: center;
      gap: 8px;
      color: #ccc;
    }

    .trust-seal span:first-child {
      font-size: 1.2rem;
    }

    /* ── RESPONSIVE HELPERS ── */
    @media (max-width: 640px) {
      .hero {
        padding: 40px 16px 60px;
      }
    }

    @media (max-width: 480px) {
      .pricing-card.popular {
        transform: scale(1);
      }
    }

    /* ── MEDIA MENTIONS ── */
    .media-section {
      background: var(--dark);
      padding: 50px 20px;
    }

    .media-section .section-title {
      margin-bottom: 28px;
    }

    .media-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      opacity: 0.5;
    }

    .media-logo {
      font-family: var(--font-head);
      font-size: 1.1rem;
      letter-spacing: 2px;
      color: #ccc;
      padding: 8px 18px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 5px;
    }

    /* Bottom spacing for floating bar */
    .pb-float {
      padding-bottom: 70px;
    }

    /* ── STATE REVIEW PAGES (cluster) ── */
    .review-hero {
      background: linear-gradient(160deg, #1a0000 0%, var(--dark2) 50%, #0d1a00 100%);
      padding: 36px 20px 56px;
      text-align: center;
      border-bottom: 3px solid var(--red);
    }

    .review-hero .logo-wrap {
      max-width: 200px;
      margin: 0 auto 18px;
    }

    .review-hero h1 {
      font-family: var(--font-head);
      font-size: clamp(1.6rem, 4.5vw, 2.8rem);
      line-height: 1.15;
      text-transform: uppercase;
      font-weight: 700;
      max-width: 900px;
      margin: 0 auto 14px;
    }

    .review-hero h1 span {
      color: var(--gold);
    }

    .review-hero .hero-sub {
      max-width: 640px;
      margin: 0 auto 22px;
      text-align: center;
      color: #ccc;
      font-size: clamp(0.98rem, 2vw, 1.15rem);
      line-height: 1.65;
    }

    .breadcrumb {
      font-size: 0.82rem;
      color: #999;
      margin-bottom: 22px;
      line-height: 1.5;
    }

    .breadcrumb a {
      color: var(--gold);
    }

    .breadcrumb a:hover {
      text-decoration: underline;
    }

    .breadcrumb span[aria-current="page"] {
      color: #ccc;
    }

    .review-prose {
      max-width: 720px;
      margin: 0 auto;
      color: #ddd;
      font-size: 0.98rem;
      line-height: 1.75;
    }

    .review-prose p {
      margin-bottom: 1.1em;
    }

    .review-prose h2 {
      font-family: var(--font-head);
      font-size: clamp(1.25rem, 3vw, 1.7rem);
      text-transform: uppercase;
      color: var(--white);
      margin: 1.8em 0 0.7em;
      line-height: 1.25;
    }

    .review-prose h2 span {
      color: var(--gold);
    }

    .review-prose h3 {
      font-family: var(--font-head);
      font-size: 1.1rem;
      text-transform: uppercase;
      color: var(--gold);
      margin: 1.5em 0 0.6em;
    }

    .review-prose ul,
    .review-prose ol {
      margin: 0 0 1.2em 1.2em;
    }

    .review-prose li {
      margin-bottom: 0.45em;
    }

    .review-prose strong {
      color: var(--white);
    }

    .review-prose a {
      color: var(--gold);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .state-callout {
      background: var(--dark2);
      border: 1px solid rgba(243, 156, 18, 0.25);
      border-radius: 12px;
      padding: 20px 22px;
      margin: 1.4em 0;
    }

    .state-callout p {
      margin: 0;
      color: #ccc;
      font-size: 0.93rem;
    }

    .state-callout strong {
      color: var(--gold);
    }

    .city-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      list-style: none;
      margin: 0 0 1.4em;
      padding: 0;
    }

    .city-list li {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      padding: 6px 14px;
      font-size: 0.82rem;
      color: #ccc;
      margin: 0;
    }

    .related-states {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 14px;
      margin-top: 18px;
    }

    .related-states a {
      display: block;
      background: var(--dark3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 16px 18px;
      transition: border-color 0.25s, transform 0.25s;
    }

    .related-states a:hover {
      border-color: var(--gold);
      transform: translateY(-3px);
    }

    .related-states .rel-label {
      display: block;
      font-size: 0.72rem;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #888;
      margin-bottom: 6px;
      font-family: ui-monospace, monospace;
    }

    .related-states .rel-title {
      font-family: var(--font-head);
      font-size: 1.05rem;
      text-transform: uppercase;
      color: var(--gold);
      line-height: 1.3;
    }

    .related-states .rel-desc {
      display: block;
      font-size: 0.85rem;
      color: #bbb;
      margin-top: 6px;
      line-height: 1.5;
    }

    .home-states {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 16px;
    }

    .home-states a.state-card {
      display: block;
      background: var(--dark3);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      padding: 22px 20px;
      transition: border-color 0.25s, transform 0.25s;
    }

    .home-states a.state-card:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }

    .home-states .state-uf {
      font-family: var(--font-head);
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      color: var(--red-light);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .home-states .state-name {
      font-family: var(--font-head);
      font-size: 1.15rem;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 8px;
    }

    .home-states .state-desc {
      font-size: 0.88rem;
      color: #bbb;
      line-height: 1.55;
    }

    .home-states .state-cta {
      display: inline-block;
      margin-top: 12px;
      font-family: var(--font-head);
      font-size: 0.85rem;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.4px;
    }
