@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #4f4f4f;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  background: #eee;
  padding: 1px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 100;
}

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

.menu_hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.menu {
  display: flex;
  list-style: none;
  gap: 25px;
}

.menu li {
  position: relative;
}

.menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  line-height: 65px;
  text-decoration: none;
  color: #1f1f1f;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
}

.menu a:hover {
  background: #133392;
  color: #fff;
}

/* Submenú */
.dropdown {
  position: relative;
}

/* Submenú estilo base */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 15px 0;
  list-style: none;
  border-radius: 5px;
  min-width: 200px;
  box-shadow: 3px 10px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: #2c2c2c;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: #133392;
  color: #fff;
}

/* Mostrar submenu en escritorio con hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.img-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.columna-img {
  flex: 1 1 50%;
}

.columna-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items:flex-end;
  justify-content: center;
   padding-bottom: 60px;
}

.contenedor {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.redes {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.redes a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #333;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.redes a:hover {
  transform: scale(1.1) translateY(-5px);
}

.redes a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.apptiktok { background: #000000; }
.appgmail { background: #D44638; }
.appinstagram { background: #E1306C; }
.appfacebook { background: #3b5998; }

footer {
  text-align: center;
  padding: 20px;
  font-size: 16px;
  color: #000000;
  font-weight: bolder;
}
.btn-cotizar {
  background-color: #0066cc;
  color: white;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 0 auto;
  display: flex;
  position: relative;
}

.btn-cotizar:hover {
  background-color: #004a99;
}

@media (max-width: 768px) {

  .img-container {
    flex-direction: column;
  }

  .columna-img {
    flex: 1 1 100%;
  }

  .overlay {
    bottom: 15px;
  }

  

  /* Menú hamburguesa */
  .menu_hamburger {
    display: flex;
    margin-left: auto;
    align-items: center;
  }

  .menu {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 10px;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    border-radius: 8px;
  }

  .menu.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    background-color: #fff;
    box-shadow: none;
    padding: 0;
    display: none;
  }

  .dropdown-menu.active {
    display: block;
  }

  .dropdown-toggle {
    width: 100%;
    text-align: center;
  }
}
