body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.menu {
  background-color: rgb(179, 36, 0);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: sticky;
  top: 0;
}

.menu a {
  text-align: center;
  padding: 20px 0;
  font-size: 15.5px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.menu a:hover {
  background-color: white;
  border: 3px solid red;
  margin: 5px;
}









.hero {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

/* imagen completa */
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* capa oscura/degradado */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(255,100,0,0.6));
}

/* texto encima */
.texto {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
}

.texto h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.texto p {
  font-size: 20px;
  margin-bottom: 25px;
}

/* botón */
.btn {
  background: #ff3c00;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff6a00;
}






.marcas {
  padding: 10px 50px;
  background: linear-gradient(to top, #8871eeb6, #ff6a00);
  text-align: center;
  max-width: 800px;
  height: 570px;
  margin: 50px auto;
  border-radius: 15px;
}

.marcas h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 40px;
}

.marcas span {
  color: #f4c542;
}




.grid-marcas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 150px));
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
}

.marca {
  background: #eee;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  aspect-ratio: 3 / 3; 
  padding: 1px
}

.marca img {
  width: 100%;
  max-width: 2000px;
  margin-bottom: 8px; 
}

.marca:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
 






.contenedor-principal {
  display: flex;
  align-items: flex-end; 
  justify-content: center;
  width: 100%;
  max-width: 1400px;    
  margin: 0 auto;
  overflow: hidden; 
}

.columna-imagen {
  flex: 1.2;             
  display: flex;
  align-items: flex-end;
}

.columna-imagen img {
  width: 100%;
  height: auto;
  display: block;        
}

.columna-texto {
  flex: 1.5;
  padding: 60px 40px;    
  align-self: center;    
}

h1 {
  font-size: 55px;       
  font-family: 'Arial Black', sans-serif;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.amarillo {
  color: #e9d558;
  display: block;
}

.seccion-detalles {
  display: flex;
  gap: 30px;
}

.bloque h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.bloque p {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.boton-simular {
  background-color: #e9d558;
  border: none;
  padding: 15px 25px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: 0.3s;
}

.boton-simular:hover {
  background-color: #d4c14d;
}











.footer {
  background:#21025cb6;
  padding: 60px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-size: 24px;
  margin-bottom: 20px;
}

.beneficios {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.links {
  margin-bottom: 30px;
}

.links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
}

.links a:hover {
  color: #f7c948; /* amarillo tipo botón */
}

.suscripcion {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.suscripcion input {
  padding: 10px;
  border: none;
  outline: none;
}

.suscripcion button {
  background: #f7c948;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
}

.copy {
  font-size: 12px;
  color: #aaa;
}











