/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Contenedor */
.container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 2%;
}

.container-contacto {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: #eef3f8;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


/* Header */
.header {
  background: #fff;
  color: #fff;
  padding: 15px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .container_nav {
  display: flex;
  justify-content: start;
  align-items: center;
}

.header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav a {
  color: #003580;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
}

.nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: url('../img/hero.jpg') no-repeat center center/cover;
  color: #003580;
  text-align: center;

}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
}

.btn {
  margin-top: auto;
  display: inline-block;
  padding: 10px 20px;
  background: #003580;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #003356;
}

/* Servicios */
.servicios {
  padding: 20px 20px;
  background: #f9f9f9;
}

.servicios h2 {
  text-align: center;
  margin-bottom: 30px;
  background: #003580;
  color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  width: 96%;
  margin: auto;
}



.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  border: 2px solid #003580;
  /* Borde de 2 píxeles de grosor, estilo sólido, color gris oscuro */
  border-radius: 8px;
  /* Esquinas redondeadas */
  display: flex;
  flex-direction: column;
}

/* Nosotros */
.nosotros {
  padding: 60px 20px;
  text-align: center;
  background: #003580;
  color: #fff;

}

/* Contacto */
.contacto {
  padding: 60px 20px;
  background: #eef3f8;
}

.contacto form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.contacto input,
.contacto textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contacto button {
  background: #003580;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
}

.contacto button:hover {
  background: #003580;
}

.btn-whatsapp {
  display: inline-block;
  background: #25d366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}



/* Responsivo */
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
  }

  .nav {
    margin-top: 10px;
  }

  .hero h2 {
    font-size: 1.6rem;
  }
}


.featured {
  border: 2px solid #003580;
  transform: scale(1.05);
}

.brands-strip {
  margin: 40px 0;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
}

.brands-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
}

.brands-container img {
  height: 40px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.brands-container img:hover {
  opacity: 1;
  transform: scale(1.1);
}



.cintillo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  /* espacio entre logos */
  padding: 20px;
  background-color: #f9f9f9;
  /* fondo gris claro */
  flex-wrap: wrap;
  /* para que se acomoden en pantallas pequeñas */
}

.cintillo img {
  max-height: 60px;
  /* ajusta el tamaño de los logos */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cintillo img:hover {
  transform: scale(1.1);
  /* efecto al pasar el mouse */
}

.cintillo-pequeno {
  display: flex;
  justify-content: center;
  /* Centra horizontalmente */
  align-items: center;
  /* Centra verticalmente */
  flex-wrap: wrap;
  /* Ajusta en varias filas si hay muchos logos */
  gap: 20px;
  /* Espacio entre logos */
  padding: 10px;
  background: #fff;
  /* Fondo blanco */
}

.cintillo-pequeno img {
  max-height: 35px;
  /* Altura reducida */
  max-width: 100px;
  /* Para logos más anchos */
  object-fit: contain;
  /* Mantiene proporciones */
}

/* Dropdown empleados */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    border-radius: 6px;
    z-index: 1000;
}

.dropdown-content a {
    color: #000;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: #0074A2; /* azul Altikasa */
}
