    :root {
      --yellow: #FFD400;
      --yellow-light: #FFE566;
      --yellow-dark: #CC9900;
      --purple: #6C3BFF;
      --purple-light: #8B5FFF;
      --purple-dark: #4A1FCC;
      --black: #111111;
      --black-2: #1A1A2E;
      --black-3: #16213E;
      --white: #FFFFFF;
      --gray: #888888;
      --gray-light: #CCCCCC;
      --card-bg: rgba(255, 255, 255, 0.04);
      --card-border: rgba(255, 212, 0, 0.15);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--black);
      color: var(--white);
      overflow-x: hidden;
      line-height: 1.6;
    }

    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--black);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--purple);
      border-radius: 3px;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Montserrat', sans-serif;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0.5rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(17, 17, 17, 0.95);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(108, 59, 255, 0.2);
      transition: all 0.3s;
      min-height: 70px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex-shrink: 0;
    }

    .nav-logo img {
      height: 160px;
      width: auto;
      margin: -45px -8px;
      display: block;
      transition: height 0.3s;
    }

    @media (min-width: 1200px) {
      .nav-logo img {
        height: 180px;
        margin: -45px;
      }
    }

    @media (max-width: 900px) {
      nav {
        padding: 0.5rem 1.25rem;
      }

      .nav-logo img {
        height: 85px;
        margin: -18px -5px;
      }
    }

    @media (max-width: 600px) {
      nav {
        padding: 0.5rem 1rem;
      }

      .nav-logo img {
        height: 70px;
        margin: -15px -4px;
      }
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: var(--gray-light);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
    }

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

    .nav-cta {
      background: var(--yellow);
      color: var(--black);
      padding: 0.5rem 1.25rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.875rem;
      text-decoration: none;
      transition: all 0.2s;
    }

    .nav-cta:hover {
      background: var(--yellow-light);
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: all 0.3s;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 60% at 75% 50%, rgba(108, 59, 255, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255, 212, 0, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #111111 0%, #0D0D1A 100%);
    }

    .hero-grid {
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(108, 59, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 59, 255, 0.06) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 4rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 4rem;
    }

    .hero-text .tag {
      display: inline-block;
      background: rgba(108, 59, 255, 0.2);
      border: 1px solid rgba(108, 59, 255, 0.4);
      color: var(--purple-light);
      padding: 0.375rem 1rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .hero-text h1 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      line-height: 1.05;
      margin-bottom: 1rem;
    }

    .hero-text h1 .highlight {
      color: var(--yellow);
      position: relative;
      display: inline-block;
    }

    .hero-text .slogan {
      font-size: clamp(1.1rem, 2vw, 1.4rem);
      color: var(--gray-light);
      margin-bottom: 2rem;
      font-weight: 300;
    }

    .hero-text .slogan strong {
      color: var(--white);
      font-weight: 600;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--yellow);
      color: var(--black);
      padding: 0.875rem 2rem;
      border-radius: 50px;
      font-weight: 800;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.2s;
      font-family: 'Montserrat', sans-serif;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      background: var(--yellow-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(255, 212, 0, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      padding: 0.875rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.2s;
      border: 1.5px solid rgba(255, 255, 255, 0.2);
      font-family: 'Montserrat', sans-serif;
      cursor: pointer;
    }

    .btn-secondary:hover {
      border-color: var(--yellow);
      color: var(--yellow);
      transform: translateY(-2px);
    }

    .btn-whatsapp {
      background: #25D366;
      color: var(--white);
      padding: 0.875rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.2s;
      font-family: 'Montserrat', sans-serif;
    }

    .btn-whatsapp:hover {
      background: #1ebe5a;
      transform: translateY(-2px);
    }

    .hero-mascot {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .mascot-glow {
      position: absolute;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(108, 59, 255, 0.35) 0%, transparent 70%);
      border-radius: 50%;
      animation: pulse 3s ease-in-out infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 0.8;
      }

      50% {
        transform: scale(1.1);
        opacity: 1;
      }
    }

    .mascot-img {
      width: 420px;
      height: auto;
      position: relative;
      z-index: 2;
      animation: float 4s ease-in-out infinite;
      filter: drop-shadow(0 0 30px rgba(255, 212, 0, 0.3));
    }

    @keyframes float {

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

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

    .hero-stats {
      display: flex;
      gap: 2rem;
      margin-top: 2.5rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .stat {
      text-align: left;
    }

    .stat .num {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.75rem;
      font-weight: 900;
      color: var(--yellow);
      display: block;
    }

    .stat .label {
      font-size: 0.8rem;
      color: var(--gray);
    }

    section {
      padding: 5rem 2rem;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-tag {
      display: inline-block;
      background: rgba(108, 59, 255, 0.15);
      border: 1px solid rgba(108, 59, 255, 0.3);
      color: var(--purple-light);
      padding: 0.3rem 0.875rem;
      border-radius: 50px;
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-title {
      font-size: clamp(1.75rem, 3.5vw, 2.75rem);
      font-weight: 900;
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .section-title .accent {
      color: var(--yellow);
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--gray-light);
      max-width: 600px;
      font-weight: 300;
    }

    .benefits-section {
      background: linear-gradient(180deg, #111111 0%, #0D0D1A 100%);
    }

    .benefits-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .benefit-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 212, 0, 0.1);
      border-radius: 16px;
      padding: 2rem 1.5rem;
      text-align: center;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .benefit-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--purple), var(--yellow));
      opacity: 0;
      transition: opacity 0.3s;
    }

    .benefit-card:hover::before {
      opacity: 1;
    }

    .benefit-card:hover {
      border-color: rgba(255, 212, 0, 0.3);
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.06);
    }

    .benefit-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, rgba(108, 59, 255, 0.2), rgba(255, 212, 0, 0.1));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      font-size: 1.75rem;
    }

    .benefit-card h3 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--white);
    }

    .benefit-card p {
      font-size: 0.875rem;
      color: var(--gray);
      line-height: 1.5;
    }

    .plans-section {
      background: #0D0D1A;
    }

    .plans-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .plans-header .section-subtitle {
      margin: 0 auto;
    }

    .plans-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.5rem;
      align-items: stretch;
    }

    .plan-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 20px;
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .plan-card.popular {
      border-color: var(--yellow);
      background: rgba(255, 212, 0, 0.05);
    }

    .plan-card.popular::after {
      content: '⭐ MÁS POPULAR';
      position: absolute;
      top: 1rem;
      right: -2.5rem;
      background: var(--yellow);
      color: var(--black);
      font-size: 0.65rem;
      font-weight: 800;
      padding: 0.25rem 3rem;
      transform: rotate(35deg);
      letter-spacing: 0.5px;
    }

    .plan-card:hover {
      transform: translateY(-6px);
      border-color: var(--purple-light);
      box-shadow: 0 20px 40px rgba(108, 59, 255, 0.2);
    }

    .plan-badge {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--purple-light);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 0.75rem;
    }

    .plan-speed {
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      font-weight: 900;
      color: var(--yellow);
      line-height: 1;
      margin-bottom: 0.25rem;
    }

    .plan-speed span {
      font-size: 1.25rem;
      color: var(--gray);
    }

    .plan-name {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1.5rem;
    }

    .plan-price {
      font-family: 'Montserrat', sans-serif;
      font-size: 2rem;
      font-weight: 900;
      color: var(--white);
      margin-bottom: 0.25rem;
    }

    .plan-price .currency {
      font-size: 1.1rem;
      color: var(--gray);
      font-weight: 400;
    }

    .plan-price .period {
      font-size: 0.875rem;
      color: var(--gray);
      font-weight: 400;
    }

    .plan-features {
      list-style: none;
      margin: 1.5rem 0 2rem;
      flex: 1;
    }

    .plan-features li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--gray-light);
      padding: 0.4rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }

    .plan-features li:last-child {
      border-bottom: none;
    }

    .plan-features .check {
      color: var(--yellow);
      font-size: 0.9rem;
    }

    .plan-cta {
      display: block;
      width: 100%;
      padding: 0.875rem;
      border-radius: 50px;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 0.925rem;
      text-align: center;
      text-decoration: none;
      transition: all 0.2s;
      cursor: pointer;
      border: none;
    }

    .plan-cta-default {
      background: rgba(108, 59, 255, 0.15);
      color: var(--purple-light);
      border: 1.5px solid rgba(108, 59, 255, 0.4);
    }

    .plan-cta-default:hover {
      background: var(--purple);
      color: var(--white);
    }

    .plan-cta-popular {
      background: var(--yellow);
      color: var(--black);
    }

    .plan-cta-popular:hover {
      background: var(--yellow-light);
      transform: translateY(-1px);
    }

    .section-note {
      font-size: 0.8rem;
      color: var(--gray);
    }

    .section-note-centered {
      text-align: center;
      margin-top: 2rem;
    }

    .section-subtitle-spaced {
      margin-bottom: 2rem;
    }

    .section-subtitle-spaced-lg {
      margin-bottom: 2.5rem;
    }

    .coverage-section {
      background: #111111;
    }

    .coverage-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .coverage-form {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(108, 59, 255, 0.2);
      border-radius: 20px;
      padding: 2.5rem;
    }

    .coverage-form h3 {
      font-size: 1.375rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
    }

    .coverage-form p {
      color: var(--gray);
      font-size: 0.9rem;
      margin-bottom: 1.75rem;
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--gray-light);
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .form-input {
      width: 100%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      padding: 0.875rem 1rem;
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 0.9rem;
      transition: border-color 0.2s;
      outline: none;
    }

    .form-input::placeholder {
      color: rgba(255, 255, 255, 0.25);
    }

    .form-input:focus {
      border-color: var(--purple);
    }

    .coverage-zones h3 {
      font-size: 1.375rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
    }

    .zones-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .zone-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: var(--gray-light);
    }

    .zone-dot {
      width: 8px;
      height: 8px;
      background: var(--yellow);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .coverage-note {
      margin-top: 1.5rem;
    }

    .btn-block {
      width: 100%;
      justify-content: center;
    }

    .btn-offset-sm {
      margin-top: 0.5rem;
    }

    .why-section {
      background: linear-gradient(135deg, #0D0D1A 0%, #111111 100%);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      margin-top: 3rem;
    }

    .why-items {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .why-item {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
    }

    .why-icon {
      width: 48px;
      height: 48px;
      background: rgba(108, 59, 255, 0.15);
      border: 1px solid rgba(108, 59, 255, 0.3);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .why-text h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.375rem;
      color: var(--white);
    }

    .why-text p {
      font-size: 0.875rem;
      color: var(--gray);
      line-height: 1.6;
    }

    .why-visual {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .why-card-big {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(108, 59, 255, 0.25);
      border-radius: 24px;
      padding: 2rem;
      width: 280px;
      text-align: center;
    }

    .why-card-big .speed-display {
      font-family: 'Montserrat', sans-serif;
      font-size: 3.5rem;
      font-weight: 900;
      color: var(--yellow);
    }

    .why-card-big .speed-label {
      color: var(--gray);
      font-size: 0.875rem;
      margin-bottom: 1.5rem;
    }

    .speed-bars {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      text-align: left;
    }

    .speed-bar-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.8rem;
    }

    .speed-bar-row .bar-label {
      color: var(--gray);
      width: 60px;
      font-size: 0.75rem;
    }

    .speed-bar-track {
      flex: 1;
      height: 6px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 3px;
      overflow: hidden;
    }

    .speed-bar-fill {
      height: 100%;
      border-radius: 3px;
      background: linear-gradient(90deg, var(--purple), var(--yellow));
    }

    .speed-bar-fill-full {
      width: 100%;
    }

    .speed-bar-fill-latency {
      width: 10%;
      background: linear-gradient(90deg, #25D366, #1ebe5a);
    }

    .speed-bar-fill-uptime {
      width: 99.9%;
      background: linear-gradient(90deg, #25D366, #1ebe5a);
    }

    .speed-bar-val {
      color: var(--yellow);
      font-weight: 700;
      width: 35px;
      text-align: right;
      font-size: 0.75rem;
    }

    .speed-bar-val-positive {
      color: #25D366;
    }

    .testimonials-section {
      background: #0D0D1A;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .testimonials-header .section-subtitle {
      margin: 0 auto;
    }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 16px;
      padding: 2rem;
      transition: all 0.3s;
    }

    .testimonial-card:hover {
      border-color: rgba(255, 212, 0, 0.25);
      transform: translateY(-3px);
    }

    .stars {
      color: var(--yellow);
      font-size: 1rem;
      margin-bottom: 1rem;
      letter-spacing: 2px;
    }

    .testimonial-text {
      font-size: 0.9rem;
      color: var(--gray-light);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .author-avatar {
      width: 42px;
      height: 42px;
      background: linear-gradient(135deg, var(--purple), var(--purple-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--white);
      flex-shrink: 0;
    }

    .author-name {
      font-weight: 600;
      font-size: 0.9rem;
    }

    .author-location {
      font-size: 0.75rem;
      color: var(--gray);
    }

    .support-section {
      background: #111111;
    }

    .support-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .support-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-bottom: 3rem;
    }

    .support-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      text-decoration: none;
      transition: all 0.3s;
      display: block;
      color: var(--white);
    }

    .support-card:hover {
      transform: translateY(-4px);
      border-color: var(--purple-light);
      background: rgba(108, 59, 255, 0.07);
    }

    .support-card .icon {
      font-size: 2.25rem;
      margin-bottom: 1rem;
      display: block;
    }

    .support-card h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .support-card p {
      font-size: 0.8rem;
      color: var(--gray);
    }

    .faq-container {
      max-width: 700px;
      margin: 0 auto;
    }

    .faq-title {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .faq-item {
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 12px;
      margin-bottom: 0.75rem;
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      background: rgba(255, 255, 255, 0.03);
      border: none;
      padding: 1.125rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 0.9rem;
      font-weight: 500;
      text-align: left;
      transition: background 0.2s;
    }

    .faq-question:hover {
      background: rgba(255, 255, 255, 0.05);
    }

    .faq-toggle {
      color: var(--yellow);
      font-size: 1.25rem;
      flex-shrink: 0;
      transition: transform 0.3s;
    }

    .faq-answer {
      display: none;
      padding: 0 1.5rem 1.25rem;
      font-size: 0.875rem;
      color: var(--gray-light);
      line-height: 1.7;
    }

    .faq-item.open .faq-toggle {
      transform: rotate(45deg);
    }

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

    .legal-section {
      background: #0D0D1A;
    }

    .legal-banner {
      background: rgba(108, 59, 255, 0.08);
      border: 1px solid rgba(108, 59, 255, 0.25);
      border-radius: 20px;
      padding: 2.5rem;
      margin-bottom: 3rem;
    }

    .legal-banner h3 {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 0.75rem;
      color: var(--yellow);
    }

    .legal-banner p {
      font-size: 0.875rem;
      color: var(--gray-light);
      line-height: 1.7;
    }

    .legal-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    .legal-card {
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 14px;
      padding: 1.75rem;
    }

    .legal-card h4 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--yellow);
      margin-bottom: 0.5rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .legal-card p {
      font-size: 0.8rem;
      color: var(--gray);
      line-height: 1.6;
    }

    .legal-card a {
      color: var(--purple-light);
      text-decoration: none;
      font-size: 0.8rem;
      display: inline-block;
      margin-top: 0.5rem;
    }

    .legal-card a:hover {
      color: var(--yellow);
      text-decoration: underline;
    }

    .legal-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .legal-link {
      font-size: 0.8rem;
      color: var(--purple-light);
      text-decoration: none;
      transition: color 0.2s;
    }

    .legal-link:hover {
      color: var(--yellow);
    }

    .legal-label {
      font-size: 0.8rem;
      color: var(--gray);
    }

    .contact-section {
      background: #111111;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }

    .contact-info h3 {
      font-size: 1.375rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .contact-info p {
      color: var(--gray-light);
      font-size: 0.9rem;
      margin-bottom: 2rem;
      line-height: 1.7;
    }

    .contact-detail {
      display: flex;
      align-items: center;
      gap: 0.875rem;
      margin-bottom: 1rem;
      font-size: 0.9rem;
    }

    .contact-detail .icon {
      width: 40px;
      height: 40px;
      background: rgba(108, 59, 255, 0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .contact-meta-label {
      font-size: 0.875rem;
      color: var(--gray-light);
    }

    .contact-meta-value,
    .contact-meta-link,
    .contact-meta-link-accent {
      font-weight: 600;
      text-decoration: none;
    }

    .contact-meta-value,
    .contact-meta-link {
      color: var(--white);
    }

    .contact-meta-link-accent {
      color: var(--yellow);
    }

    .contact-cta-row {
      margin-top: 2rem;
    }

    .contact-cta-inline {
      display: inline-flex;
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.07);
      border-radius: 20px;
      padding: 2.5rem;
    }

    .contact-form-title {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 1.75rem;
    }

    .form-textarea {
      resize: vertical;
    }

    .form-disclaimer {
      font-size: 0.75rem;
      color: var(--gray);
      margin-bottom: 1rem;
    }

    .form-disclaimer-link {
      color: var(--purple-light);
      text-decoration: none;
    }

    footer {
      background: #0A0A0A;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 3rem 2rem 1.5rem;
    }

    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 2.5rem;
    }

    .footer-brand .logo {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--yellow);
      margin-bottom: 0.75rem;
      display: block;
    }

    .footer-brand .logo span {
      color: var(--purple-light);
    }

    .footer-brand p {
      font-size: 0.8rem;
      color: var(--gray);
      line-height: 1.6;
      margin-bottom: 1.25rem;
    }

    .footer-title {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--gray);
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-links a {
      color: var(--gray-light);
      text-decoration: none;
      font-size: 0.85rem;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--yellow);
    }

    .footer-whatsapp {
      font-size: 0.875rem;
      padding: 0.625rem 1.25rem;
    }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.75rem;
      color: var(--gray);
    }

    .footer-bottom .legal-row {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
    }

    .footer-bottom a {
      color: var(--gray);
      text-decoration: none;
    }

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

    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      background: #25D366;
      color: white;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      transition: all 0.3s;
      animation: bounce 2s ease-in-out infinite;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
      animation: none;
    }

    @keyframes bounce {

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

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

    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(108, 59, 255, 0.3), rgba(255, 212, 0, 0.3), transparent);
      margin: 0;
    }

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

      .hamburger {
        display: flex;
      }

      .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .hero-mascot {
        order: -1;
      }

      .mascot-img {
        width: 220px;
      }

      .mascot-glow {
        width: 280px;
        height: 280px;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-stats {
        justify-content: center;
      }

      .coverage-inner {
        grid-template-columns: 1fr;
      }

      .why-grid {
        grid-template-columns: 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 600px) {
      section {
        padding: 3.5rem 1.25rem;
      }

      .plans-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .why-visual {
        display: none;
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }