

/* ======= #dc0c14 rojo ======= */
    /* ======= #e44c54 rojo transparente ======= */
    /* ======= #0444b4 azul ======= */
    /* ======= #4bac6a verde ======= */
    /* ======= #d3e5e0 verde claro ======= */
    
    
    /* ======= Estilos generales ======= */
    body {
      font-family: "Poppins", sans-serif;
      color: #333;
      scroll-behavior: smooth;
    }

    /* ======= Navbar ======= */
    .navbar {
      background-color: #003366; /* Azul oscuro */
    }

    .navbar-brand,
    .nav-link {
      color: white !important;
      font-weight: 500;
    }

    .nav-link:hover {
      color: #00cc66 !important; /* Verde */
    }

    /* ======= Sección Inicio ======= */
    #delante{
      background-color: #003366;
      height: 200px;
      width: 100%;
      opacity: 0.5;
      z-index:2;
      position: absolute;
    }

    #inicio {
      position: relative;
      /*background-image: url('./assets/portada.webp');*/
      background: linear-gradient(135deg, #0444b4 60%, #e44c54);     
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      color: white;
      text-align: center;
      padding: 120px 20px;
    }

    #inicio h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    #inicio p {
      font-size: 1.2rem;
      margin-top: 20px;
    }

    /* ======= Sección Servicios ======= */
    #servicios {
      padding: 80px 20px;
      background-color: #d3e5e0;
    }

    .service-card {
      border: none;
      border-radius: 15px;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .service-icon {
      font-size: 40px;
      color: #003366;
    }

    /* ======= Sección Contacto ======= */
    #contacto {
      background-color: #003366;
      color: white;
      padding: 80px 20px;
    }

    #contacto .form-control {
      border-radius: 10px;
      border: none;
    }

    #contacto button {
      background-color: #00cc66;
      border: none;
      border-radius: 10px;
      padding: 10px 25px;
      font-weight: 600;
    }

    #contacto button:hover {
      background-color: #ff3333; /* Rojo */
    }

    

    /* ======= Footer ======= */
    footer {
      background-color: #001a33;
      color: white;
      text-align: center;
      padding: 15px 0;
    }

    .footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  font-family: Arial, sans-serif;
}

.footer .social {
  margin-bottom: 10px;
}

.footer .social a {
  margin: 0 12px;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  transition: 0.3s;
}

.footer .social a:hover {
  color: #00aaff;
}

.copy {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}

/* ======= Botón flotante de WhatsApp ======= */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
}

