  :root {
      --primary-color: #2c5aa0;
      --secondary-color: #1e3a8a;
      --accent-color: #3b82f6;
      --success-color: #10b981;
      --warning-color: #f59e0b;
      --red-primary: #dc2626;
      --red-secondary: #b91c1c;
      --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      --red-gradient: linear-gradient(135deg, #ef4444 0%, var(--red-primary) 50%, var(--red-secondary) 100%);
      --glass-bg: rgba(255, 255, 255, 0.95);
      --glass-border: rgba(255, 255, 255, 0.2);
  }

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: var(--gradient);
      min-height: 100vh;
      overflow-x: hidden;
  }

  /* ANIMACIONES DE FONDO - RESPONSIVE */
  .background-animation {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.1;
  }

  .floating-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
  }

  .shape {
      position: absolute;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      animation: float 8s ease-in-out infinite;
  }

  .shape:nth-child(1) {
      width: clamp(60px, 8vw, 100px);
      height: clamp(60px, 8vw, 100px);
      top: 10%;
      left: 5%;
      animation-delay: 0s;
  }

  .shape:nth-child(2) {
      width: clamp(80px, 12vw, 150px);
      height: clamp(80px, 12vw, 150px);
      top: 70%;
      right: 5%;
      animation-delay: 3s;
  }

  .shape:nth-child(3) {
      width: clamp(50px, 6vw, 80px);
      height: clamp(50px, 6vw, 80px);
      top: 40%;
      left: 80%;
      animation-delay: 6s;
  }

  .shape:nth-child(4) {
      width: clamp(70px, 10vw, 120px);
      height: clamp(70px, 10vw, 120px);
      top: 80%;
      left: 10%;
      animation-delay: 2s;
  }

  .shape:nth-child(5) {
      width: clamp(55px, 7vw, 90px);
      height: clamp(55px, 7vw, 90px);
      top: 20%;
      right: 20%;
      animation-delay: 4s;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0px) rotate(0deg) scale(1);
          opacity: 0.1;
      }

      50% {
          transform: translateY(-30px) rotate(180deg) scale(1.1);
          opacity: 0.2;
      }
  }

  /* NAVBAR - COMPLETAMENTE RESPONSIVE */
  .navbar {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--glass-border);
      padding: clamp(10px, 2vw, 15px) 0;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
  }

  .navbar-brand {
      display: flex;
      align-items: center;
      gap: clamp(8px, 2vw, 15px);
      font-weight: 700;
      font-size: clamp(16px, 3vw, 24px);
      color: var(--primary-color) !important;
      text-decoration: none;
  }

  .navbar-logo {
      width: clamp(35px, 6vw, 50px);
      height: clamp(35px, 6vw, 50px);
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 5px;
      flex-shrink: 0;
  }

  .navbar-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }

  .navbar-nav .nav-link {
      color: var(--primary-color) !important;
      font-weight: 500;
      margin: 0 clamp(5px, 1vw, 10px);
      transition: all 0.3s ease;
      position: relative;
      font-size: clamp(14px, 2vw, 16px);
      padding: clamp(8px, 1.5vw, 12px) clamp(12px, 2vw, 16px) !important;
  }

  .navbar-nav .nav-link:hover {
      color: var(--accent-color) !important;
      transform: translateY(-2px);
  }

  .navbar-toggler {
      border: none !important;
      padding: 4px 8px;
      font-size: clamp(18px, 3vw, 24px);
  }

  .navbar-toggler:focus {
      box-shadow: none !important;
  }

  .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 90, 160, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  /* HERO SECTION - RESPONSIVE */
  .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: clamp(100px, 15vh, 120px) 0 clamp(60px, 10vh, 80px);
      position: relative;
  }

  .hero-content {
      text-align: center;
      color: white;
      z-index: 10;
      width: 100%;
  }

  .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: clamp(8px, 1.5vw, 10px);
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      padding: clamp(8px, 2vw, 12px) clamp(16px, 3vw, 24px);
      margin-bottom: clamp(20px, 4vw, 30px);
      font-size: clamp(12px, 2vw, 14px);
      font-weight: 500;
      animation: slideInUp 1s ease-out;
  }

  .hero-badge i {
      color: var(--success-color);
      font-size: clamp(14px, 2.5vw, 16px);
  }

  .hero-title {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 800;
      margin-bottom: clamp(20px, 4vw, 30px);
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
      animation: slideInUp 1s ease-out 0.2s both;
      line-height: 1.1;
  }

  .hero-subtitle {
      font-size: clamp(1.2rem, 3vw, 1.8rem);
      margin-bottom: clamp(25px, 4vw, 40px);
      opacity: 0.95;
      font-weight: 400;
      animation: slideInUp 1s ease-out 0.4s both;
      line-height: 1.3;
  }

  .hero-description {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      margin-bottom: clamp(30px, 5vw, 50px);
      opacity: 0.9;
      max-width: min(900px, 90vw);
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
      animation: slideInUp 1s ease-out 0.6s both;
      padding: 0 clamp(10px, 2vw, 20px);
  }

  .hero-buttons {
      display: flex;
      gap: clamp(15px, 3vw, 20px);
      justify-content: center;
      flex-wrap: wrap;
      animation: slideInUp 1s ease-out 0.8s both;
      padding: 0 clamp(10px, 2vw, 20px);
  }

  .btn-primary-custom {
      background: var(--red-gradient);
      border: none;
      border-radius: 50px;
      color: white;
      font-size: clamp(14px, 2.5vw, 18px);
      font-weight: 600;
      padding: clamp(15px, 3vw, 20px) clamp(30px, 5vw, 50px);
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: clamp(8px, 1.5vw, 12px);
      box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
      white-space: nowrap;
      min-width: fit-content;
  }

  .btn-primary-custom:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
      color: white;
      text-decoration: none;
  }

  .btn-secondary-custom {
      background: var(--glass-bg);
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      color: var(--primary-color);
      font-size: clamp(14px, 2.5vw, 18px);
      font-weight: 600;
      padding: clamp(13px, 2.8vw, 18px) clamp(30px, 5vw, 50px);
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: clamp(8px, 1.5vw, 12px);
      backdrop-filter: blur(20px);
      white-space: nowrap;
      min-width: fit-content;
  }

  .btn-secondary-custom:hover {
      transform: translateY(-3px);
      background: white;
      border-color: var(--accent-color);
      color: var(--accent-color);
      text-decoration: none;
      box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
  }

  @keyframes slideInUp {
      from {
          opacity: 0;
          transform: translateY(50px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* HOME BENEFITS - RESPONSIVE */
  .home-benefits {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: clamp(15px, 3vw, 20px);
      padding: clamp(30px, 5vw, 50px) clamp(20px, 3vw, 30px);
      margin: clamp(50px, 8vw, 80px) 0;
      animation: slideInUp 1s ease-out 1s both;
  }

  .home-benefit-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(250px, 100vw), 1fr));
      gap: clamp(20px, 4vw, 30px);
  }

  .home-benefit-item {
      text-align: center;
      color: white;
  }

  .home-benefit-icon {
      width: clamp(50px, 8vw, 70px);
      height: clamp(50px, 8vw, 70px);
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto clamp(15px, 3vw, 20px);
      font-size: clamp(20px, 4vw, 28px);
      color: var(--accent-color);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .home-benefit-title {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      font-weight: 600;
      margin-bottom: clamp(8px, 1.5vw, 10px);
  }

  .home-benefit-desc {
      opacity: 0.9;
      font-size: clamp(12px, 2vw, 14px);
      line-height: 1.5;
  }

  /* SERVICES SECTION - RESPONSIVE */
  .services-section {
      padding: clamp(60px, 12vw, 100px) 0;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
  }

  .section-title {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      text-align: center;
      color: white;
      margin-bottom: clamp(15px, 3vw, 20px);
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      line-height: 1.2;
  }

  .section-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: clamp(50px, 8vw, 80px);
      max-width: min(700px, 90vw);
      margin-left: auto;
      margin-right: auto;
      line-height: 1.4;
      padding: 0 clamp(10px, 2vw, 20px);
  }

  .service-card {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border-radius: clamp(20px, 3vw, 24px);
      padding: clamp(30px, 5vw, 40px) clamp(20px, 3vw, 30px);
      text-align: center;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--glass-border);
      transition: all 0.3s ease;
      height: 100%;
      animation: slideInUp 0.6s ease-out;
      margin-bottom: clamp(20px, 4vw, 30px);
  }

  .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  }

  .service-icon {
      width: clamp(60px, 10vw, 80px);
      height: clamp(60px, 10vw, 80px);
      background: var(--gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto clamp(20px, 4vw, 30px);
      font-size: clamp(24px, 4vw, 32px);
      color: white;
      box-shadow: 0 10px 25px rgba(44, 90, 160, 0.3);
  }

  .service-title {
      font-size: clamp(1.2rem, 2.5vw, 1.5rem);
      font-weight: 600;
      color: var(--primary-color);
      margin-bottom: clamp(15px, 3vw, 20px);
      line-height: 1.3;
  }

  .service-description {
      color: #64748b;
      line-height: 1.6;
      font-size: clamp(14px, 2vw, 16px);
      margin-bottom: clamp(20px, 3vw, 25px);
  }

  .service-list {
      list-style: none;
      padding: 0;
      text-align: left;
  }

  .service-list li {
      padding: clamp(4px, 1vw, 5px) 0;
      color: #64748b;
      font-size: clamp(12px, 2vw, 14px);
      display: flex;
      align-items: center;
      gap: clamp(8px, 1.5vw, 10px);
  }

  .service-list li i {
      color: var(--success-color);
      font-size: clamp(10px, 1.5vw, 12px);
      flex-shrink: 0;
  }

  /* STATS SECTION - RESPONSIVE */
  .stats-section {
      padding: clamp(50px, 10vw, 80px) 0;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(15px);
  }

  .stat-card {
      text-align: center;
      color: white;
      animation: slideInUp 0.6s ease-out;
      margin-bottom: clamp(20px, 4vw, 30px);
  }

  .stat-number {
      font-size: clamp(2.5rem, 6vw, 4rem);
      font-weight: 800;
      margin-bottom: clamp(8px, 1.5vw, 10px);
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
  }

  .stat-label {
      font-size: clamp(0.9rem, 2vw, 1.2rem);
      opacity: 0.9;
      font-weight: 500;
      line-height: 1.3;
  }

  /* COVERAGE SECTION - RESPONSIVE */
  .coverage-section {
      padding: clamp(60px, 12vw, 100px) 0;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
  }

  .coverage-map {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border-radius: clamp(20px, 3vw, 24px);
      padding: clamp(30px, 5vw, 50px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--glass-border);
      text-align: center;
      margin-bottom: clamp(30px, 5vw, 50px);
  }

  .coverage-title {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: clamp(20px, 4vw, 30px);
      line-height: 1.2;
  }

  .states-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(180px, 100vw), 1fr));
      gap: clamp(15px, 3vw, 20px);
      margin-top: clamp(25px, 5vw, 40px);
  }

  .state-item {
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: clamp(10px, 2vw, 12px);
      padding: clamp(15px, 3vw, 20px);
      text-align: center;
      transition: all 0.3s ease;
  }

  .state-item:hover {
      background: rgba(59, 130, 246, 0.2);
      transform: translateY(-5px);
  }

  .state-item i {
      font-size: clamp(18px, 3vw, 24px);
      color: var(--accent-color);
      margin-bottom: clamp(8px, 1.5vw, 10px);
  }

  .state-name {
      font-weight: 600;
      color: var(--primary-color);
      font-size: clamp(14px, 2vw, 16px);
  }

  /* TESTIMONIALS - RESPONSIVE */
  .testimonials-section {
      padding: clamp(60px, 12vw, 100px) 0;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(15px);
  }

  .testimonial-card {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border-radius: clamp(15px, 3vw, 20px);
      padding: clamp(25px, 4vw, 40px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border: 1px solid var(--glass-border);
      margin: clamp(15px, 3vw, 20px) 0;
      text-align: center;
  }

  .testimonial-text {
      font-size: clamp(0.95rem, 2vw, 1.1rem);
      color: #64748b;
      line-height: 1.6;
      margin-bottom: clamp(20px, 4vw, 30px);
      font-style: italic;
  }

  .testimonial-author {
      font-weight: 600;
      color: var(--primary-color);
      font-size: clamp(14px, 2vw, 16px);
  }

  .testimonial-rating {
      color: #fbbf24;
      margin-bottom: clamp(12px, 2vw, 15px);
      font-size: clamp(16px, 2.5vw, 20px);
  }

  /* CTA SECTION - RESPONSIVE */
  .cta-section {
      padding: clamp(60px, 12vw, 100px) 0;
      text-align: center;
  }

  .cta-card {
      background: var(--glass-bg);
      backdrop-filter: blur(20px);
      border-radius: clamp(25px, 4vw, 30px);
      padding: clamp(40px, 6vw, 60px) clamp(25px, 4vw, 40px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
      border: 1px solid var(--glass-border);
      max-width: min(800px, 95vw);
      margin: 0 auto;
      animation: slideInUp 0.8s ease-out;
  }

  .cta-title {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: clamp(15px, 3vw, 20px);
      line-height: 1.2;
  }

  .cta-description {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: #64748b;
      margin-bottom: clamp(25px, 5vw, 40px);
      line-height: 1.6;
  }

  .cta-buttons {
      display: flex;
      gap: clamp(15px, 3vw, 20px);
      justify-content: center;
      flex-wrap: wrap;
  }

  /* FOOTER - RESPONSIVE */
  .footer {
      background: rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(20px);
      padding: clamp(40px, 8vw, 60px) 0 clamp(20px, 4vw, 30px);
      color: white;
  }

  .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(250px, 100vw), 1fr));
      gap: clamp(25px, 5vw, 40px);
      margin-bottom: clamp(25px, 5vw, 40px);
  }

  .footer-section h4 {
      font-size: clamp(1.1rem, 2.5vw, 1.3rem);
      font-weight: 600;
      margin-bottom: clamp(15px, 3vw, 20px);
      color: white;
  }

  .footer-section p,
  .footer-section a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      line-height: 1.6;
      margin-bottom: clamp(8px, 1.5vw, 10px);
      font-size: clamp(14px, 2vw, 16px);
  }

  .footer-section a:hover {
      color: var(--accent-color);
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: clamp(20px, 4vw, 30px);
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
  }

  .footer-bottom p {
      font-size: clamp(12px, 2vw, 14px);
      margin-bottom: clamp(5px, 1vw, 10px);
      line-height: 1.4;
  }

  /* RESPONSIVE BREAKPOINTS ESPECÍFICOS */

  /* Mobile Small (320px - 480px) */
  @media (max-width: 480px) {
      .hero-buttons {
          flex-direction: column;
          align-items: center;
          gap: 15px;
      }

      .btn-primary-custom,
      .btn-secondary-custom {
          width: 100%;
          max-width: 280px;
          justify-content: center;
      }

      .home-benefit-grid {
          grid-template-columns: 1fr;
      }

      .states-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .cta-buttons {
          flex-direction: column;
          align-items: center;
      }

      .navbar-brand {
          font-size: 18px;
      }
  }

  /* Mobile Medium (481px - 768px) */
  @media (min-width: 481px) and (max-width: 768px) {
      .home-benefit-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .states-grid {
          grid-template-columns: repeat(3, 1fr);
      }
  }

  /* Tablet (769px - 1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
      .home-benefit-grid {
          grid-template-columns: repeat(4, 1fr);
      }

      .hero-buttons {
          flex-direction: row;
      }
  }

  /* Desktop Small (1025px - 1200px) */
  @media (min-width: 1025px) and (max-width: 1200px) {
      .container {
          max-width: 95%;
      }
  }

  /* Ultra Wide Screens */
  @media (min-width: 1400px) {
      .container {
          max-width: 1320px;
      }
  }

  /* SCROLL ANIMATIONS - RESPONSIVE */
  .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease-out;
  }

  .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
  }

  /* LANDSCAPE MOBILE ADJUSTMENTS */
  @media (max-width: 768px) and (orientation: landscape) {
      .hero-section {
          min-height: 80vh;
          padding: 80px 0 40px;
      }

      .hero-title {
          font-size: clamp(2rem, 5vw, 2.5rem);
      }

      .hero-subtitle {
          font-size: clamp(1rem, 2.5vw, 1.2rem);
      }
  }

  /* HIGH DPI DISPLAYS */
  @media (-webkit-min-device-pixel-ratio: 2),
  (min-resolution: 192dpi) {

      .navbar-logo img,
      .service-icon,
      .home-benefit-icon {
          image-rendering: -webkit-optimize-contrast;
          image-rendering: crisp-edges;
      }
  }

  /* REDUCED MOTION */
  @media (prefers-reduced-motion: reduce) {

      *,
      *::before,
      *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
      }

      .shape {
          animation: none;
      }
  }

  /* DARK MODE SUPPORT */
  @media (prefers-color-scheme: dark) {
      :root {
          --glass-bg: rgba(255, 255, 255, 0.9);
          --glass-border: rgba(255, 255, 255, 0.15);
      }
  }

  /* PRINT STYLES */
  @media print {

      .background-animation,
      .floating-shapes,
      .navbar,
      .hero-buttons,
      .cta-buttons {
          display: none !important;
      }

      body {
          background: white !important;
          color: black !important;
      }

      .hero-section,
      .services-section,
      .stats-section,
      .coverage-section,
      .testimonials-section,
      .cta-section {
          background: white !important;
          color: black !important;
          padding: 20px 0 !important;
      }
  }