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

      html,
      body {
        width: 100%;
        overflow-x: hidden;
      }

      :root {
        --primary-blue: #0077b6;
        --secondary-blue: #00b4d8;
        --dark-bg: #0a1128;
        --light-bg: #f8f9fa;
        --text-dark: #1a1a2e;
        --text-light: #ffffff;
      }

      body {
        font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
          sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        overflow-x: hidden;
      }

      /* Header */
      header {
        background: rgba(10, 17, 40, 0.95);
        backdrop-filter: blur(10px);
        padding: 0.6rem 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      }

      nav {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 5%;
      }

      .logo-container {
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .logo {
        height: 120px;
        filter: drop-shadow(0 2px 4px rgba(0, 180, 216, 0.3));
      }

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

      .nav-links a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        font-size: 2rem;
        letter-spacing: 0.3px;
        transition: all 0.3s;
        position: relative;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--secondary-blue);
        transition: width 0.3s;
      }

      .nav-links a:hover::after {
        width: 100%;
      }

      /* Hero Section */
      .hero {
        background: linear-gradient(135deg, var(--dark-bg) 0%, #001d3d 100%);
        padding: 200px 5% 120px;
        position: relative;
        overflow: hidden;
        width: 100%;
      }

      /* Imagen de fondo del hero - reemplaza 'hero-bg.jpg' con tu imagen */
      .hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.15;
        z-index: 0;
      }

      .hero::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(
          circle,
          rgba(0, 180, 216, 0.15) 0%,
          transparent 70%
        );
        animation: float 20s infinite;
      }

      .hero::after {
        content: "";
        position: absolute;
        bottom: -50%;
        left: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(
          circle,
          rgba(0, 119, 182, 0.15) 0%,
          transparent 70%
        );
        animation: float 15s infinite reverse;
      }

      @keyframes float {
        0%,
        100% {
          transform: translate(0, 0);
        }
        50% {
          transform: translate(50px, 50px);
        }
      }

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

      .hero-text h1 {
        font-size: 4rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        color: var(--text-light);
        line-height: 1.1;
        background: linear-gradient(135deg, #ffffff 0%, #00b4d8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .hero-text p {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 2.5rem;
        line-height: 1.8;
      }

      .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
      }

      .stat-item {
        text-align: center;
      }

      .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--secondary-blue);
        display: block;
      }

      .stat-label {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .cta-buttons {
        display: flex;
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        color: white;
        padding: 1.2rem 2.5rem;
        border-radius: 12px;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s;
        box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
      }

      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
      }

      .btn-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.8rem;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        color: white;
        padding: 1.2rem 2.5rem;
        border-radius: 12px;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 600;
        border: 2px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s;
      }

      .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.4);
      }

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

      .wifi-animation {
        position: relative;
        width: 300px;
        height: 300px;
      }

      .wifi-ring {
        position: absolute;
        border: 3px solid var(--secondary-blue);
        border-radius: 50%;
        opacity: 0;
        animation: wifiPulse 3s infinite;
      }

      .wifi-ring:nth-child(1) {
        width: 150px;
        height: 150px;
        top: 75px;
        left: 75px;
        animation-delay: 0s;
      }

      .wifi-ring:nth-child(2) {
        width: 220px;
        height: 220px;
        top: 40px;
        left: 40px;
        animation-delay: 0.5s;
      }

      .wifi-ring:nth-child(3) {
        width: 290px;
        height: 290px;
        top: 5px;
        left: 5px;
        animation-delay: 1s;
      }

      .wifi-center {
        position: absolute;
        width: 80px;
        height: 80px;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        border-radius: 50%;
        top: 110px;
        left: 110px;
        box-shadow: 0 0 40px rgba(0, 180, 216, 0.6);
      }

      @keyframes wifiPulse {
        0% {
          opacity: 0;
          transform: scale(0.5);
        }
        50% {
          opacity: 0.8;
        }
        100% {
          opacity: 0;
          transform: scale(1.2);
        }
      }

      /* Benefits Section */
      .benefits {
        padding: 120px 5%;
        background: var(--light-bg);
        position: relative;
        width: 100%;
      }

      /* Imagen decorativa en benefits - reemplaza 'benefits-image.jpg' con tu imagen */
      .benefits-bg {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 40%;
        height: 70%;
        object-fit: cover;
        opacity: 0.1;
        border-radius: 20px 0 0 20px;
      }

      .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 4rem;
      }

      .section-title {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--text-dark);
      }

      .section-subtitle {
        font-size: 1.2rem;
        color: #666;
        line-height: 1.8;
      }

      .benefits-grid {
        max-width: 100%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
      }

      .benefit-card {
        background: white;
        padding: 2.5rem;
        border-radius: 20px;
        box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        transition: all 0.4s;
        border: 1px solid rgba(0, 180, 216, 0.1);
      }

      .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 50px rgba(0, 180, 216, 0.15);
      }

      .benefit-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        box-shadow: 0 5px 20px rgba(0, 119, 182, 0.3);
      }

      .benefit-icon svg {
        width: 35px;
        height: 35px;
        stroke: white;
        fill: none;
        stroke-width: 2;
      }

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

      .benefit-card p {
        color: #666;
        line-height: 1.7;
        font-size: 1rem;
      }

      /* Plans Section */
      .plans {
        padding: 120px 5%;
        background: linear-gradient(135deg, var(--dark-bg) 0%, #001845 100%);
        position: relative;
        overflow: hidden;
        width: 100%;
      }

      .plans::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(0,180,216,0.05)"/></svg>')
          repeat;
        opacity: 0.5;
      }

      .plans-grid {
        max-width: 100%;
        margin: 3rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 2rem;
        position: relative;
        z-index: 1;
      }

      .plan-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        padding: 3rem 2.5rem;
        border-radius: 24px;
        border: 2px solid rgba(0, 180, 216, 0.2);
        transition: all 0.4s;
        position: relative;
        overflow: hidden;
      }

      .plan-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(
          90deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        transform: scaleX(0);
        transition: transform 0.4s;
      }

      .plan-card:hover {
        transform: translateY(-10px);
        border-color: var(--secondary-blue);
        box-shadow: 0 20px 60px rgba(0, 180, 216, 0.3);
      }

      .plan-card:hover::before {
        transform: scaleX(1);
      }

      .plan-header {
        text-align: center;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .plan-speed {
        font-size: 4rem;
        font-weight: 800;
        background: linear-gradient(135deg, #ffffff, var(--secondary-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
      }

      .plan-label {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 0.5rem;
      }

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

      .plan-features li {
        padding: 1rem 0;
        color: rgba(255, 255, 255, 0.8);
        display: flex;
        align-items: center;
        gap: 1rem;
        font-size: 1rem;
      }

      .plan-features li::before {
        content: "";
        width: 24px;
        height: 24px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
      }

      .plan-cta {
        width: 100%;
        padding: 1rem;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        text-decoration: none;
        display: block;
        text-align: center;
      }

      .plan-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(0, 180, 216, 0.4);
      }

      /* Coverage Section */
      .coverage {
        padding: 120px 5%;
        background: white;
        width: 100%;
      }

      .coverage-container {
        max-width: 100%;
        margin: 0 auto;
      }

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

      .coverage-item {
        background: linear-gradient(
          135deg,
          rgba(0, 119, 182, 0.05),
          rgba(0, 180, 216, 0.05)
        );
        padding: 1.8rem;
        border-radius: 16px;
        border: 2px solid rgba(0, 180, 216, 0.1);
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 1rem;
      }

      .coverage-item:hover {
        transform: translateX(10px);
        border-color: var(--secondary-blue);
        box-shadow: 0 5px 20px rgba(0, 180, 216, 0.15);
      }

      .coverage-icon {
        width: 40px;
        height: 40px;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .coverage-icon svg {
        width: 24px;
        height: 24px;
        stroke: white;
        fill: none;
        stroke-width: 2;
      }

      .coverage-name {
        font-weight: 600;
        color: var(--text-dark);
        font-size: 1.05rem;
      }

      /* Contact Section */
      .contact {
        padding: 120px 5%;
        background: linear-gradient(
          135deg,
          var(--primary-blue) 0%,
          var(--secondary-blue) 100%
        );
        color: white;
        width: 100%;
      }

      .contact-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
      }

      .contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin: 3rem 0;
      }

      .contact-card {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        padding: 2.5rem;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s;
      }

      .contact-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
      }

      .contact-card-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
      }

      .contact-card-icon svg {
        width: 30px;
        height: 30px;
        stroke: white;
        fill: none;
        stroke-width: 2;
      }

      .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-weight: 600;
      }

      .contact-card p {
        font-size: 1.1rem;
        opacity: 0.9;
        line-height: 1.6;
      }

      /* Footer */
      footer {
        background: var(--dark-bg);
        color: rgba(255, 255, 255, 0.8);
        padding: 3rem 5%;
        text-align: center;
        width: 100%;
      }

      footer p {
        margin: 0.5rem 0;
      }

      /* Phone Float Button */
      .phone-float {
        position: fixed;
        width: 65px;
        height: 65px;
        bottom: 110px;
        right: 30px;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 30px rgba(0, 119, 182, 0.4);
        z-index: 1001;
        text-decoration: none;
        transition: all 0.3s;
      }

      .phone-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 40px rgba(0, 119, 182, 0.6);
      }

      .phone-float svg {
        width: 30px;
        height: 30px;
        fill: white;
      }

      .float-label {
        position: absolute;
        right: 75px;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
      }

      .phone-float:hover .float-label,
      .whatsapp-float:hover .float-label {
        opacity: 1;
      }

      /* Image Carousel */
      .carousel-section {
        padding: 100px 5%;
        background: white;
        overflow: hidden;
        width: 100%;
      }

      .carousel-container {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
      }

      .carousel-wrapper {
        position: relative;
        overflow: hidden;
        border-radius: 24px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
      }

      .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
      }

      .carousel-slide {
        min-width: 100%;
        height: 600px;
        position: relative;
      }

      .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .carousel-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        padding: 3rem 2rem 2rem;
        color: white;
      }

      .carousel-caption h3 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
      }

      .carousel-caption p {
        font-size: 1.1rem;
        opacity: 0.9;
      }

      .carousel-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        z-index: 10;
      }

      .carousel-nav:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
      }

      .carousel-nav.prev {
        left: 20px;
      }

      .carousel-nav.next {
        right: 20px;
      }

      .carousel-nav svg {
        width: 24px;
        height: 24px;
        stroke: var(--primary-blue);
      }

      .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 2rem;
      }

      .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(0, 119, 182, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s;
      }

      .carousel-dot.active {
        background: var(--primary-blue);
        width: 30px;
        border-radius: 6px;
      }

      /* Referral Section */
      .referral {
        padding: 100px 5%;
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        position: relative;
        overflow: hidden;
        width: 100%;
      }

      .referral::before {
        content: "";
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(
          circle,
          rgba(0, 180, 216, 0.1),
          transparent
        );
        border-radius: 50%;
      }

      .referral-content {
        max-width: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 1;
      }

      .referral-card {
        background: white;
        border-radius: 24px;
        padding: 4rem;
        box-shadow: 0 20px 60px rgba(0, 119, 182, 0.1);
        border: 2px solid rgba(0, 180, 216, 0.2);
      }

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

      .referral-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
      }

      .referral-icon svg {
        width: 45px;
        height: 45px;
        stroke: white;
        fill: none;
        stroke-width: 2;
      }

      .referral-title {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        color: var(--text-dark);
      }

      .referral-subtitle {
        font-size: 1.3rem;
        color: #666;
      }

      .referral-steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .referral-step {
        text-align: center;
        position: relative;
      }

      .step-number {
        width: 60px;
        height: 60px;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 800;
        color: white;
        margin: 0 auto 1.5rem;
      }

      .referral-step h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        color: var(--text-dark);
      }

      .referral-step p {
        color: #666;
        line-height: 1.7;
      }

      /* Existing Customers Section */
      .existing-customers {
        padding: 100px 5%;
        background: linear-gradient(135deg, var(--dark-bg) 0%, #001845 100%);
        color: white;
        width: 100%;
      }

      .existing-customers-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
      }

      .customer-actions {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
      }

      .customer-card {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        padding: 3rem 2rem;
        border-radius: 20px;
        border: 2px solid rgba(0, 180, 216, 0.2);
        transition: all 0.4s;
        text-decoration: none;
        display: block;
      }

      .customer-card:hover {
        transform: translateY(-10px);
        border-color: var(--secondary-blue);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 60px rgba(0, 180, 216, 0.3);
      }

      .customer-card-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
      }

      .customer-card-icon svg {
        width: 40px;
        height: 40px;
        stroke: white;
        fill: none;
        stroke-width: 2;
      }

      .customer-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: white;
      }

      .customer-card p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 1.5rem;
        line-height: 1.6;
      }

      .customer-card-button {
        display: inline-block;
        background: linear-gradient(
          135deg,
          var(--primary-blue),
          var(--secondary-blue)
        );
        color: white;
        padding: 0.8rem 2rem;
        border-radius: 10px;
        font-weight: 600;
        transition: all 0.3s;
      }

      .customer-card:hover .customer-card-button {
        transform: scale(1.05);
      }

      /* WhatsApp Float Button */
      .whatsapp-float {
        position: fixed;
        width: 65px;
        height: 65px;
        bottom: 30px;
        right: 30px;
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 30px rgba(37, 211, 102, 0.4);
        z-index: 1001;
        text-decoration: none;
        transition: all 0.3s;
      }

      .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
      }

      .whatsapp-float svg {
        width: 35px;
        height: 35px;
        fill: white;
      }

      /* Responsive */
      @media (max-width: 1024px) {
        .hero-content {
          grid-template-columns: 1fr;
          text-align: center;
          padding: 0 5%;
        }

        .hero-visual {
          display: none;
        }

        .hero-text h1 {
          font-size: 3rem;
        }

        .cta-buttons {
          justify-content: center;
        }

        .benefits-grid {
          grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }

        .plans-grid {
          grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }

        .coverage-grid {
          grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }
      }

      @media (max-width: 768px) {
        header {
          padding: 1rem 0;
        }

        nav {
          padding: 0 4%;
        }

        .nav-links {
          display: none;
        }

        .hero {
          padding: 160px 4% 80px;
        }

        .hero-text h1 {
          font-size: 2.2rem;
        }

        .hero-text p {
          font-size: 1.1rem;
        }

        .section-title {
          font-size: 2rem;
        }

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

        .benefits,
        .plans,
        .coverage,
        .contact,
        .carousel-section,
        .referral,
        .existing-customers {
          padding: 60px 4%;
        }

        .cta-buttons {
          flex-direction: column;
          gap: 1rem;
        }

        .btn-primary,
        .btn-secondary {
          width: 100%;
          justify-content: center;
        }

        .hero-stats {
          grid-template-columns: 1fr;
          gap: 1.5rem;
        }

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

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

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

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

        .customer-actions {
          grid-template-columns: 1fr;
        }

        .referral-steps {
          grid-template-columns: 1fr;
        }

        .referral-card {
          padding: 2rem;
        }

        .referral-title {
          font-size: 2rem;
        }

        .carousel-slide {
          height: 400px;
        }

        .carousel-caption h3 {
          font-size: 1.5rem;
        }

        .carousel-caption {
          padding: 2rem 1rem 1rem;
        }

        .carousel-nav {
          width: 40px;
          height: 40px;
        }

        .carousel-nav.prev {
          left: 10px;
        }

        .carousel-nav.next {
          right: 10px;
        }

        .whatsapp-float,
        .phone-float {
          width: 55px;
          height: 55px;
          right: 20px;
        }

        .phone-float {
          bottom: 90px;
        }

        .whatsapp-float svg,
        .phone-float svg {
          width: 28px;
          height: 28px;
        }
      }

      @media (max-width: 480px) {
        .hero-text h1 {
          font-size: 1.8rem;
        }

        .hero-text p {
          font-size: 1rem;
        }

        .section-title {
          font-size: 1.6rem;
        }

        .stat-number {
          font-size: 2rem;
        }

        .plan-speed {
          font-size: 3rem;
        }

        .benefit-card,
        .plan-card {
          padding: 1.5rem;
        }

        .referral-title {
          font-size: 1.6rem;
        }

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

        .carousel-slide {
          height: 300px;
        }
      }