 
    /* Reset y Base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: #374151;
      background-color: #f9fafb;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    /* Header Styles */
    header {
      background-color: white;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    /* WhatsApp Button */
    .whatsapp-button {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      background-color: #25D366;
      color: white;
      padding: 1rem 1.5rem;
      border-radius: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
      z-index: 100;
    }

    .whatsapp-button:hover {
      background-color: #128C7E;
      transform: scale(1.05);
    }

    .whatsapp-button svg {
      width: 1.5rem;
      height: 1.5rem;
    }

    /* Header Content */
    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .logo img {
      width: 3rem;
      height: 3rem;
      border-radius: 0.5rem;
      object-fit: cover;
    }

    .logo h1 {
      font-size: 1.5rem;
      font-weight: 700;
      color: #233367;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      color: #233367;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: #3b82f6;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 0.5rem;
      border-radius: 0.5rem;
      background-color: #f3f4f6;
      transition: background-color 0.3s ease;
    }

    .menu-toggle:hover {
      background-color: #e5e7eb;
    }

    /* Mobile Menu */
    .mobile-menu {
      display: none;
      background-color: white;
      border-radius: 0.5rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      margin-top: 0.5rem;
    }

    .mobile-menu.active {
      display: block;
      animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .mobile-menu a {
      display: block;
      padding: 1rem 1.5rem;
      color: #4b5563;
      text-decoration: none;
      border-bottom: 1px solid #f3f4f6;
      transition: background-color 0.3s ease;
    }

    .mobile-menu a:hover {
      background-color: #f9fafb;
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 500px;
      overflow: hidden;
      background-color: #233367
    }

    .slider {
      position: relative;
      width: 100%;
      height: 110%;
    }

    .slide {
      position: absolute;
      top: auto;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 110%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 110%;
      background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-content {
      text-align: center;
      color: white;
      padding: 2rem;
    }

    .hero-content h1 {
      font-size: 2.5rem;
      font-weight: 800;
      margin-bottom: 1rem;
      animation: fadeIn 1s ease;
    }

    .hero-content p {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      animation: fadeIn 1s ease 0.2s both;
    }

    .btn {
      background-color: #233367;
      color: white;
      padding: 0.75rem 2rem;
      border: none;
      border-radius: 9999px;
      font-size: 1.125rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      animation: fadeIn 1s ease 0.4s both;
    }

    .btn:hover {
      background-color: #2563eb;
      transform: scale(1.05);
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .btn a{
      color: white;
      text-decoration: none;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .indicators {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 0.5rem;
    }

    .indicator {
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
      background-color:#233367 ;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .indicator.active {
      width: 1.5rem;
      background-color: white;
    }

    .indicator:hover {
      background-color: rgba(255, 255, 255, 0.8);
    }

    /* Secciones Comunes */
    section {
      padding: 4rem 0;
    }

    section h2 {
      font-size: 2rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 2.5rem;
      color: #1f2937;
    }

    /* ¿Por qué nos eligen? */
    .por-que {
      background-color: white;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .card {
      background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
      padding: 2rem;
      border-radius: 0.75rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .icon {
      width: 4rem;
      height: 4rem;
      background-color: #3b82f6;
      border-radius: 9999px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }

    .icon svg {
      width: 2rem;
      height: 2rem;
      color: white;
    }

    .card h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 1rem;
      color: #1f2937;
    }

    .card p {
      color: #4b5563;
      line-height: 1.6;
    }

    /* Modelos Destacados */
    .modelos {
      background-color: #f9fafb;
    }

    .modelos-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto 2rem;
    }

    .modelo {
      background-color: white;
      border-radius: 0.75rem;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
    }

    .modelo:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .modelo img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .modelo h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin: 1.25rem 1.25rem 0.75rem;
      color: #1f2937;
    }

    .modelo p {
      color: #4b5563;
      padding: 0 1.25rem;
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    .info {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      padding: 0 1.25rem 1.25rem;
    }

    .info span {
      background-color: #eff6ff;
      color: #2563eb;
      padding: 0.25rem 0.75rem;
      border-radius: 9999px;
      font-size: 0.875rem;
      font-weight: 500;
    }

    .modelos .btn {
      display: block;
      margin: 2rem auto 0;
    }

    /* Contacto */
    .contacto {
      background-color: white;
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .info-box {
      background:#233367 ;
      padding: 2rem;
      border-radius: 0.75rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .info-box h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: #eef0f3;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .info-box h3 svg {
      width: 1.5rem;
      height: 1.5rem;
      color: #e5e7eb;
    }

    .info-box p {
      margin-bottom: 0.75rem;
      color: #ffffff;
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .info-box p strong {
      min-width: 100px;
    }

    .info-box p svg {
      width: 1.25rem;
      height: 1.25rem;
      color: white;
      margin-top: 0.25rem;
    }

    /* Footer */
    footer {
      background-color:#233367 ;
      color: white;
      text-align: center;
      padding: 2rem 0;
    }

    footer p {
      color: #d1d5db;
      font-size: 0.875rem;
    }
    footer a {
      color: #d1d5db;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .header-content {
        flex-direction: column;
        gap: 1rem;
      }

      nav {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .hero {
        height: 300px;
      }

      .hero-content h1 {
        font-size: 2rem;
      }

      .hero-content p {
        font-size: 1.125rem;
      }

      section {
        padding: 3rem 0;
      }

      section h2 {
        font-size: 1.75rem;
      }

      .info-box h3, p{
        font-size:0.8rem ;
      }
    }

    @media (max-width: 480px) {
      .whatsapp-button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
      }

      .whatsapp-button span {
        display: none;
      }

      .hero {
        height: 250px;
      }

      .hero-content h1 {
        font-size: 1.75rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      .btn {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
      }
    }
  