/* === IMPORTACIÓN DE FUENTES HELVETICA === */
@font-face {
  font-family: 'HelveticaNeue';
  src: url('fonts/HelveticaNeue-Roman.otf') format('opentype');
  font-weight: normal;
}

@font-face {
  font-family: 'HelveticaNeue';
  src: url('fonts/HelveticaNeue-Bold.otf') format('opentype');
  font-weight: bold;
}

@font-face {
  font-family: 'HelveticaNeue';
  src: url('fonts/HelveticaNeue-Medium.otf') format('opentype');
  font-weight: 500;
}

/* === ESTILOS GENERALES === */
body.fondo-negro {
  background-color: #000;
  color: white;
  font-family: 'HelveticaNeue', Arial, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6;
}

.naranja {
  color: orange;
}

.blanco {
  color: white;
}

/* === SECCIÓN BANNER === */
.banner-gaveri {
  background: url('assets/img/banner.jpg') no-repeat center center;
  background-size: cover;
  padding: 40px 20px;
  position: relative;
}



.encabezado {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

.logo-gaveri {
  width: 140px;
}

.contenido-banner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.texto-izquierda {
  flex: 1 1 60%;
  text-align: left;
}

.texto-izquierda h1 {
  font-size: 20px;
  line-height: 2.5;
  color: white;
  font-weight: bold;
}

.slogan {
  font-size: 16;
  color: #FFFFFF;
  margin: 8px 0;
}

.marca-unica img {
  width: 150px;
  max-width: 100%;
  height: auto;
}

.sello-derecha {
  flex: 1 1 30%;
  text-align: right;
}

.sello-gaveri {
  width: 100px;
  max-width: 100%;
}

/* === SECCIÓN PROBLEMA === */
.problema {
  padding: 40px 20px;
  background: #111;
  text-align: center;
}

.contenedor-problema {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.imagen-problema {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.imagen-problema img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.texto-problema {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.texto-problema h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

.texto-problema p {
  font-size: 15px;
  line-height: 1.7;
  color: #eee;
  max-width: 700px;
  text-align: center;
  margin-bottom: 24px;
}

.boton-wsp {
  background: orange;
  color: black;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
}

/* === BOTÓN WHATSAPP FLOTANTE === */
.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px !important;
  left: auto !important;
  z-index: 999;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.btn-whatsapp img {
  width: 100%;
  height: auto;
}

/* === SEGUNDO BANNER DE MARCAS === */
.banner-marcas {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.imagen-banner-marcas {
  width: 100%;
  height: auto;
  display: block;
}

.texto-dentro-banner {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  font-size: 22px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  z-index: 2;
}

/* === IMAGEN BAJO BOTÓN === */
.imagen-bajo-boton {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

.imagen-bajo-boton img {
  width: 280px;
  max-width: 90%;
  height: auto;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .contenido-banner {
    flex-direction: column;
    text-align: center;
  }

  .texto-izquierda,
  .sello-derecha {
    flex: 1 1 100%;
    text-align: center;
  }

  .logo-gaveri {
    margin: 0 auto;
    display: block;
  }

  .sello-gaveri {
    margin-top: 20px;
  }

  .marca-unica img {
    width: 260px;
  }

  .contenedor-problema {
    flex-direction: column;
  }

  .imagen-problema,
  .texto-problema {
    max-width: 100%;
  }

  .texto-problema p {
    text-align: center;
  }

  .texto-banner {
    position: relative;
    top: -30px;
    text-align: left !important;
    padding-left: 10px;
    padding-right: 20px;
  }
  
    
  

  .slogan {
    text-align: left !important;
  }

  .encabezado {
    display: flex;
    justify-content: flex-start !important;
    padding-left: 20px;
  }

  .texto-izquierda {
    text-align: left !important;
    padding-left: 20px;
    padding-right: 20px;
  }

  .texto-dentro-banner {
    font-size: 18px;
    top: 42%;
  }

  .imagen-bajo-boton img {
    width: 240px;
  }
}

@media (min-width: 1024px) {
  .texto-problema {
    margin-right: 60px; /* 👈 Desplaza todo el bloque hacia la izquierda */
    text-align: center;
  }

  .texto-problema p {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .texto-izquierda {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .texto-banner,
  .slogan {
    text-align: center;
  }
}
.naranja {
  color: orange;
  text-shadow: 1px 1px 2px white;
}

@media (max-width: 768px) {
  .naranja {
    color: orange !important;
    text-shadow: 0 0 6px #fff, 0 0 8px #fff;
  }
}

.banner-gaveri2 {
  background: url('assets/img/banner-marcas.png') no-repeat center center;
  background-size: cover;
  padding: 20px;
  position: relative;
  min-height: 400px;
}
/* === BANNER CON TEXTO CENTRADO === */
.banner-gaveri2 {
  background: url('assets/img/banner-marcas.png') no-repeat center center;
  background-size: cover;
  position: relative;
  min-height: 350px;
  display: flex;
  justify-content: center; /* Centra horizontal */
  align-items: center;     /* Centra vertical */
  text-align: center;
  padding: 20px;
}

.contenido-banner2 {
  display: flex;
  justify-content: center; /* Centra horizontal */
  align-items: center;     /* Centra vertical */
  flex-direction: column;
  width: 100%;
}

.texto-banner-marcas {
  color: white;
  font-size: 36px;
  font-weight: bold;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  margin: 0 auto; /* Asegura centrado */
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .texto-banner-marcas {
    font-size: 24px;
    padding: 0 20px;
  }
}

.imagen-banner-centro {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.imagen-banner-centro img {
  width:800px;         /* Aumenta este valor si quieres más grande */
  max-width:100%;       /* Para que no se desborde en pantallas pequeñas */
  height: auto;
}
/* Imagen centrada y con zoom solo en PC */
.imagen-banner-centro {
  text-align: center;
}

.imagen-banner-centro img {
  width:800px
  max-width:100%;
  height: auto;
  transition: transform 0.4s ease, filter 0.3s ease;
  cursor: pointer;
}

/* Efecto zoom solo en pantallas grandes (PC) */
@media (min-width: 769px) {
  .imagen-banner-centro img:hover {
    transform: scale(1.08);
    filter: brightness(1.05);
  }
}

@media (max-width: 768px) {
  .imagen-banner-centro img {
    cursor: pointer;
    animation: parpadeo 1.5s infinite;
  }

  @keyframes parpadeo {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }
}
/* === PARPADEO en botón naranja solo en responsive === */
@media (max-width: 768px) {
  .boton-wsp {
    animation: parpadeo 1.5s infinite;
  }

  @keyframes parpadeo {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }
}
@media (min-width: 769px) {
  .boton-wsp {
    transition: transform 0.3s ease;
  }

  .boton-wsp:hover {
    transform: scale(1.08); /* Puedes ajustar a 1.1 o más si quieres más zoom */
  }
}


