/* Basic Styles */

    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      background-color: #F5F5F5;
      color: #333;
    }

    header {
      background: linear-gradient(135deg, #003366, rgb(81, 106, 180));
      color: white;
      text-align: center;
      padding: 2rem 1rem;
    }
    header img {
      height: 80px;
      vertical-align: middle;
    }
    header h1 {
      font-family: 'Montserrat', sans-serif;
      margin: 0.5rem 0 0;
    }
    nav {
      margin-top: 1rem;
    }
    nav a {
      color: white;
      margin: 0 1rem;
      text-decoration: none;
      font-weight: bold;
    }

    header {
      background: linear-gradient(135deg, #003366, rgb(81, 106, 180));
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0.8rem 1.5rem;
    }

    .logo img {
      height: 70px;
      width: auto;
    }

    .menu ul {
      list-style: none;
      display: flex;
      gap: 2rem;
      margin: 0;
      padding: 0;
    }

    .menu a {
      text-decoration: none;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      color: #ffffff;
      transition: color 0.3s ease;
    }

    .menu a:hover {
      color: #00A86B;
    }

    /* Ícono hamburguesa */
    .hamburger {
      display: none;
      font-size: 28px;
      cursor: pointer;
      color: #ffffff;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .menu ul {
        flex-direction: column;
        gap: 1rem;
        background-color: rgb(81, 106, 180);
        position: absolute;
        top: 110px;
        right: 35px;
        padding: 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        border-radius: 8px;
        display: none;
      }

      .menu ul.show {
        display: flex;
      }

      .hamburger {
        display: block;
      }

      .logo img {
        height: 60px;
      }
    }

    .hero {
      text-align: center;
      margin-top: 2rem;
    }
    .hero img {
      width: 90%;
      max-width: 1000px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    .services {
      max-width: 1000px;
      margin: 3rem auto;
      padding: 0 1rem;
    }
    .services h2 {
      text-align: center;
      font-family: 'Montserrat', sans-serif;
      color: #003366;
      margin-bottom: 2rem;
    }
    .service-card {
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      transition: transform 0.2s ease;
    }
    .service-card:hover {
      transform: translateY(-5px);
    }
    .service-card h3 {
      color: #003366;
      margin-top: 0;
    }
    footer {
      background: linear-gradient(135deg, #003366, rgb(81, 106, 180));
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: 3rem;
    }

    .hero-container {
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .hero-banner {
      width: 100%;
      max-width: 1000px;
      opacity: 0;
      transform: translateY(30px) rotate(0deg);
      animation: fadeSlideIn 1.5s ease-out forwards, spinGlobe 6s linear forwards;
      transition: transform 0.3s ease-out;
    }

    .overlay-text {
      position: absolute;
      top: 10%;
      left: 50%;
      transform: translateX(-50%);
      color: white;
      text-shadow: 0 2px 6px rgba(0,0,0,0.6);
      opacity: 0;
      animation: fadeInText 2.5s ease-out forwards;
      transition: transform 0.2s ease-out;
    }

    .overlay-text h2 {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.6rem;
      margin: 0;
    }

    .overlay-text p {
      font-size: 2.0rem;
      margin-top: 0.5rem;
    }

/* Whatsapp */
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      right: 20px;
      background-color: #25D366; /* color oficial WhatsApp */
      border-radius: 50%;
      text-align: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.3);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .whatsapp-float:hover {
      background-color: #1ebe5d;
      transform: scale(1.1);
    }

    .whatsapp-float svg {
      width: 32px;
      height: 32px;
    }

    /* Social Media */
    .social-media {
      text-align: center;
      margin: 2rem 0;
    }

    .social-media h2 {
      font-family: 'Montserrat', sans-serif;
      color: #003366;
      margin-bottom: 1rem;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
    }

    .social-icons a {
      background-color: #003366;
      border-radius: 50%;
      padding: 0.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .social-icons a:hover {
      background-color: #00A86B;
      transform: scale(1.1);
    }

    /* Animaciones */
    @keyframes fadeSlideIn {
      from {
        opacity: 0;
        transform: translateY(30px) rotate(0deg);
      }
      to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
      }
    }

    @keyframes fadeInText {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    /* Giro inicial del globo */
    @keyframes spinGlobe {
      from {
        transform: translateY(30px) rotate(0deg);
      }
      to {
        transform: translateY(0) rotate(360deg);
      }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .hero-banner {
        content: url('..//images/cover-five.jpg');
      }
      .overlay-text h2 {
        font-size: 2.4rem;
      }
      .overlay-text p {
        font-size: 1.6rem;
      }
    }