* {
    box-sizing: border-box;
}

html, body {
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    color: #8c9160;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.hero-section {
    background-image: url('imagenes/banner-principal.png'); /* Reemplaza con la URL de tu imagen */
    background-size: cover;
    
    height: 100vh;
    color: #f7f3e8;
    position: relative;
}
.overlay {   /*color del banner*/
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.content {
    position: relative;
    z-index: 2;
}
.content {
    flex: 1; /* Permite que el contenido principal ocupe todo el espacio disponible */
}

.product-section {
    text-align: left;
    padding: 50px 0;
}
.product-section img {
    max-width: 100%;
    border-radius: 10px;
}

.placa{
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
}

.qr-section {
    text-align: center;
    background-color: #e5e3d9;
    padding: 60px 0;
}

.qr-section .icon-box {
    text-align: left;
    padding: 20px;
}
.qr-section i {
    font-size: 40px;
    color: #8c9160;
}
.boton {
    background-color: #a3a580; /* Color más tenue */
    color: #f8f9fa;
}

.boton:hover {
    border: 2px solid #8c9160; /* Borde del mismo color que el menú */
   /* background-color: #8c9160;  Mantiene el color original del menú al pasar el cursor */
}

.video-section {
    text-align: center;
    margin: 50px 0 0 0; /* Solo margen superior */
    padding-bottom: 0;
}

.video-section video {
    width: 100%;
    max-height: 100vh;
    object-fit: contain;
    display: block;
}

.contact-section {
    flex: 1;
}

footer {
    background-color: #8c9160;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

.info-producto {
    text-align: left;
}

.info-producto p {
    text-align: left; /* Evita justificación */
}

.info-producto .boton {
    background-color: transparent;
    color: #8c9160;
    border: 2px solid;
    padding: 10px 40px; /* más grande: vertical y horizontal */
    font-size: 1.2rem; 
    transition: all 0.3s ease;
}
.linea-decorativa {
  display: block;
  height: 1px; /* más delgada */
  background-color: #8c9160;
  margin: 6px auto 20px auto;
  width: 80%;
  border-radius: 1px;
  animation: expandLine 0.6s ease-out;
}

@keyframes expandLine {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}
.info-producto .boton:hover {
    background-color: #a3a580;
    color: #fff;
    border-color: #8c9160;
}

/* Estilos responsivos para móviles y tablets */
@media (max-width: 768px) {
    .info-producto {
        text-align: center;
    }

    .info-producto p {
        text-align: center;
    }
}

.titulo-con-linea {
  display: inline-block;
  color:#8c9160;
  text-align: center;
  margin: auto;
}