html,
body {
    background-color: black;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

button:focus {
    outline: none !important;
}

.bg-black {
    background-color: black;
}

#scrollUp {
    position: fixed;
    right: 15px;
    bottom: 25px;
    display: none;
    width: 50px;
    height: 50px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    line-height: 50px;
    border-radius: .25rem !important;
    background: #387FE9;
}

#scrollUp:hover {
    filter: brightness(50%);
}

#showAdv {
    background-color: white;
    border-top: 1px solid rgb(24, 48, 89);
    z-index: 99999999;
}

#showAdv_container {
    overflow-y: scroll;
    max-height: 300px;
}

#showAdv p {
    font-family: nunito;
    font-size: 1rem;
    line-height: 1.3rem;
    color: rgb(24, 48, 89);
}

#showAdv .btn-primary {
    border-radius: 0;
    background-color: #1d365e;
}

#showAdv .btn-primary:focus,#showAdv .btn-primary:hover{
    box-shadow: none;
    background-color: #1d365e;
}

#showAdv .btn-primary:active
{
    outline: none !important;
    box-shadow: none !important;
    color: #1d365e !important;
    background-color: white !important;
}

#showAdv .btn-secondary {
    border-radius: 0;
    background-color: #444;
}

#showAdv .btn-secondary:focus,#showAdv .btn-secondary:hover{
    box-shadow: none;
    background-color: #444;
}

#showAdv .btn-secondary:active
{
    outline: none !important;
    box-shadow: none !important;
    color: #444 !important;
    background-color: white !important;
}

#showAdv a {
    color: #1d365e;
    font-weight: bold;
}

@media (min-width: 576px) {
    #showAdv_container {
        overflow-y: auto;
    }
}

/* ====== Contacto (Netlify Forms) ====== */
.contact-wrap {max-width: 760px; margin: 0 auto; padding: 1rem;}
.contact-wrap h1 {font-size: 1.8rem; margin-bottom: .5rem;}
.contact-wrap p.lead {opacity: .8; margin-bottom: 1rem;}

.contact-form {display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;}
.contact-form .full {grid-column: 1 / -1;}
.contact-form label {font-size: .95rem; display:block; margin-bottom:.3rem;}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: .7rem; border: 1px solid #d1d5db; border-radius: 6px; box-sizing: border-box; font-size: 1rem;
}
.contact-form button {
  padding: .8rem 1rem; border-radius: 8px; border: 0; background:#0b6b4b; color:#fff; cursor:pointer
}
@media (max-width: 740px){ .contact-form {grid-template-columns: 1fr;} }

/* ======== BOTÓN WHATSAPP FLOTANTE ======== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: float-in 0.4s ease-out forwards; /* 👈 añadimos aquí la animación */
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

@keyframes float-in {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 16px;
    right: 16px;
  }
}

/* ======== MENSAJE FLOTANTE WHATSAPP ======== */
.whatsapp-msg {
  position: fixed;
  bottom: 90px;
  right: 25px;
  background: #ffffff;
  color: #0b1a39;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  animation: float-in 0.4s ease-out forwards;
}

/* Ocultar el mensaje en pantallas pequeñas */
@media (max-width: 768px) {
  .whatsapp-msg {
    display: none;
  }
}

/* ======== ESTILO ECO2 CONSULTING – Banner de cookies ======== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(11, 26, 57, 0.96);
  color: #ffffff;
  padding: 18px 24px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 6px 16px rgba(0,0,0,0.35);
  z-index: 2147483647;
  display: none;
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.cookie-content p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.4;
  color: #ffffff;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid #ffffff;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cookie-btn.accept {
  background: #ffffff;
  color: #0b1a39;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* Modal de Configuración */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 10001;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  color: #333;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-content h3 {
  margin-top: 0;
  color: #2c3e50;
}

.cookie-options {
  margin: 20px 0;
}

.cookie-option {
  display: block;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-option input {
  margin-right: 10px;
}

.cookie-option span {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
}
/* banner de cookies end */
/*# sourceMappingURL=../maps/style.css.map */