/* ------------------------- */
/* RESET & GLOBAL STYLES */
/* ------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  color: #333;
  background-color: #ffffff;
}




.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

.whatsapp-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------- */
/* HEADER & NAVIGATION */
/* ------------------------- */
header {
  background: linear-gradient(145deg, #0e1a25, #101d2e);/* azul oscuro */
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

header.scrolled {
  position: sticky;
  top: 0;
  background-color: linear-gradient(145deg, #0e1a25, #101d2e);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  
  


}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  margin-right: 60px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.6);
}

.logo img {
  height: 120px; /* Ajusta la altura a lo que necesites */
  width: auto;
  filter: drop-shadow(2px 2px 2px rgb(255, 255, 255));
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  font-size: 18px;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(145deg, #0077c2, #005a98); /* degradado azul vibrante */
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.2),
    inset 0 0 5px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}



.nav-links li a:hover {
  color: #ffffff;
  background: linear-gradient(145deg, #0090ff, #006bbd);
  border: 1px solid rgba(0, 119, 194, 0.6);
  box-shadow:
    0 0 12px rgba(0, 119, 194, 0.5),
    0 0 20px rgba(0, 119, 194, 0.4),
    inset 0 0 8px rgba(255, 255, 255, 0.2);
  transform: scale(1.08);
}

.divider {
  border: none;
  height: 4px;
  background: linear-gradient(to right, #004080, #00bfff);
  margin-bottom: 30px;
}

/* ------------------------- */
/*Servicios */
/* ------------------------- */

  


.titulo-servicios {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #003366;
}
.servicios-contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.servicios-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem;
}

.servicios-lista {
  flex: 1;
  min-width: 250px;
  color: white; /* <- AÑADIDO */
}

.servicios-lista ul {
  list-style: none;
  padding: 0;
}

.servicios-lista li {
  padding: 1rem;
  margin: 0.5rem 0;
  background: #0e1a25;
  cursor: pointer;
  border-left: 5px solid #0077c2;
  transition: background 0.3s;
}

.servicios-lista li:hover {
  background: #0077c2;
}

.servicio-detalle {
  flex: 2;
  min-width: 300px;
  background: #0e1a25;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgb(255, 255, 255);
  color: white; /* <- AÑADIDO */
}

.servicio-detalle img {
  width: 50%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}


#detalle-servicio {
  background-color: #0B1823;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: white;
}

.servicio-logo img {
  width: 250px;
  max-width: 90%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.servicio-texto h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.servicio-texto p {
  font-size: 1.1em;
  margin: 0 auto;
  max-width: 600px;
  color: #d0d0d0;
}



/* Contenedor general */
.seccion-contacto {
  display: flex;
  justify-content: center;
  padding: 40px;
  background-color: #f2f7fa;
}

.contenedor-contacto {
  display: flex;
  gap: 40px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

/* Formulario */
.contacto-formulario {
  flex: 1;
  min-width: 280px;
}

.contacto-formulario h2 {
  margin-bottom: 20px;
  color: #002f4b;
}

.contacto-formulario form {
  display: flex;
  flex-direction: column;
}

.contacto-formulario input,
.contacto-formulario textarea {
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contacto-formulario button {
  background-color: #002f4b;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

/* Mapa */
.mapa-global {
  flex: 1;
  position: relative;
  min-width: 280px;
  background-color: #002f4b;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.mapa-global img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* Marcadores */
.pin {
  position: absolute;
  background-color: #0d1b2a;
  color: white;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: bold;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.pin.colombia {
  top: 48%;
  left: 22  ;
}

.pin.espana {
  top: 35%;
  left: 42%;
}

.pin.usa {
  top: 28%;
  left: 18%;
}






footer {
  text-align: center;
  background-color: #001f33;
  color: white;
  padding: 15px 0;
  margin-top: 40px;
}








/* Ocultar menú móvil por defecto */
.menu-movil {
  display: none;
}

/* Estilo de botón hamburguesa */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
}

/* Estilo menú normal en pantallas grandes */
@media (min-width: 769px) {
  .menu-movil {
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
  }

  .menu-movil .nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .menu-movil .nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    transition: background 0.3s;
  }

  .menu-movil .nav-links li a:hover {
    background-color: rgba(255,255,255,0.1);
    border-radius: 5px;
  }
}

/* Estilo hamburguesa para móviles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

.menu-movil {
  display: none;
  flex-direction: column;
  background: rgba(14, 22, 40, 0.95); /* Fondo oscuro con transparencia */
  backdrop-filter: blur(10px); /* Efecto borroso elegante */
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  z-index: 999;
  text-align: center;
  padding: 20px 0;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

  .menu-movil.active {
    display: flex;
  }

  .menu-movil .nav-links {
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
  }

.menu-movil .nav-links li a {
  color: #ffffff;
  padding: 15px 25px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
  border-radius: 8px;
  display: block;
}

.menu-movil .nav-links li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #4fc3f7;
}
}