
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
  }
  

  .navbar {
    background-color: #e93111;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
  .navbar .logo {
    display: flex;
    align-items: center;
  }
  
  .navbar .logo img {
    height: 50px;
    margin-right: 1rem;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  .nav-links li a:hover {
    color: #0b83b3;
  }
  
  .menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
  }
  
  .hero {
    height: 100vh;
    background-image: url('https://via.placeholder.com/1500x600');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
    margin-top: 70px;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeIn 2s ease-in-out;
  }
  
  .hero-text p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    background-color: #0f92a3;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
    text-decoration: none;
  }
  
  .btn:hover {
    background-color: #dfd10e;
  }
  
  .carousel-container {
    width: 100%;
    height: 72vh; 
    overflow: hidden;
    position: relative;
    margin-top: 80px;
  }
  
  .carousel {
    display: flex;
    transition: transform 1s ease-in-out;
    height: 100%;
    width: 100%;
  }
  
  .carousel-images {
    display: flex;
    width: 100%;
    height: 100%;
  }
  
  .carousel-image {
    flex: 0 0 100%;
    height: 100%;
    position: relative;
  }
  
  .carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  

  .section {
    padding: 4rem 2rem;
    text-align: center;
  }
  
  .highlight {
    background-color: #fef3c7;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
  }
  
  .card:hover {
    transform: translateY(-10px);
  }
  
  footer {
    background-color: #df3011;
    color: white;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
  }
  
  /* Animaciones */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  

  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 100%;
      right: 0;
      background: #db180a;
      flex-direction: column;
      display: none;
      width: 100%;
      padding: 1rem 0;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
      color: white;
    }
  }
  