/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* HEADER */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 60px; /* 👈 controla el tamaño total */
    background: rgba(0,0,0,0.9);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* LOGO */
.logo img {
    height: 35px;       /* ocupa la altura del header */
    max-height: 35px;   /* límite para que no crezca demasiado */
    width: auto;        /* 👈 evita deformación */
    object-fit: contain;
    display: block;
}

/* MENÚ */
.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    position: relative;
    letter-spacing: 1px;
    font-size: 14px;
}

/* SUBRAYADO DORADO */
.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: gold;
    transition: 0.3s;
}

.menu a:hover,
.menu a.active {
    color: gold;
}

.menu a:hover::after,
.menu a.active::after {
    width: 100%;
}



/* HERO */
/* HERO BASE */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* VIDEO BASE (DESKTOP CONTROLADO) */
.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 💻 DESKTOP GRANDES (EVITA QUE SE “SALGA”) */
@media (min-width: 1200px) {
    .bg-video {
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
    }
}

/* 📱 MÓVIL VERTICAL (CLAVE PARA TU PROBLEMA) */
@media (max-width: 768px) and (orientation: portrait) {
    .hero {
        height: 70vh; /* 👈 evita que se “coma” la pantalla */
    }

    .bg-video {
        width: 100%;
        height: auto;   /* 👈 CAMBIO CLAVE */
        object-fit: contain;
    }
}


/* 📱 MÓVIL ACOSTADO (TODOS LOS DISPOSITIVOS) */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
    }

    .bg-video {
        width: auto;
        height: 100%;
        object-fit: contain;
    }
}
/* CONTENIDO */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    top: 40%;
    padding: 0 20px;
}
.watermark {
    font-size: 120px;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.25;
}

/* TITULO */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1.1;
    text-shadow: 0 5px 25px rgba(0,0,0,0.8);
	opacity: `13;
}

/* TEXTO */
.hero p {
    margin-top: 15px;
    font-size: 16px;
    color: #ddd;
}

/* BOTÓN (AQUÍ ESTÁ LA MAGIA 👇) */
.btn {
    margin-top: 30px;
    padding: 14px 32px;
    border: 1px solid gold;
    color: gold;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    letter-spacing: 1px;
    z-index: 5;
    position: relative;
}

/* HOVER BOTÓN */
.btn:hover {
    background: gold;
    color: black;
    box-shadow: 0 0 20px rgba(212,175,55,0.6);
}

/* PRODUCTOS */
.productos {
    padding: 100px 40px;
    text-align: center;
}

.titulo {
    font-family: 'Playfair Display', serif;
    color: gold;
    margin-bottom: 40px;
    font-size: 36px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.card {
    background: #0a0a0a;
    padding: 30px;
    border: 1px solid rgba(212,175,55,0.1);
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: gold;
    box-shadow: 0 10px 30px rgba(212,175,55,0.2);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    border-top: 1px solid rgba(212,175,55,0.2);
}

/* RESPONSIVE */
@media(max-width:768px){
    .hero h1 {
        font-size: 40px;
    }

    .menu {
        gap: 15px;
    }
}

.hero-nosotros {
    height: 80vh;
    background: url('../assets/banner1.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.contenido {
    position: relative;
    z-index: 2;
}

.seccion {
    padding: 100px 40px;
    max-width: 900px;
    margin: auto;
}

.oscuro {
    background: #111;
}

.titulo {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: #d4af37;
}

.texto {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
}

/* VALORES */
.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.valor {
    padding: 20px;
}

/* FRASE FINAL */
.frase {
    margin-top: 40px;
    text-align: center;
    font-family: 'Playfair Display', serif;
    color: gold;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    height: 100%;
    padding: 100px 40px;
    position: relative;
    z-index: 2;
}

.hero-img img {
    width: 100%;
    border-radius: 10px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.img-seccion {
    width: 100%;
    border-radius: 10px;
}

.center {
    text-align: center;
}
.logo img {
    transition: 0.3s;
}

.logo img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}



.hero-productos {
    position: relative;
    height: 45vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.bg-video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    max-width: 100vw;   /* 👈 evita que se pase del ancho */
}

.hero-productos h1 {
    position: relative;
    z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: white;
}



.overlay {
    background: linear-gradient(
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.2)
    );
}


.productos-container {
    padding: 80px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.producto-card {
    background: #111;
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    text-align: center; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.producto-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(212,175,55,0.3);
}

.producto-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    background: #0a0a0a;
}

.producto-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
}



.producto-info h2 {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.producto-info p {
    color: #ccc;
}

.precio {
    color: #d4af37;
    font-size: 20px;
    margin: 15px 0;
	margin-top: auto;
}


.producto-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}


.producto-info .btn {
    margin-top: 10px;
}
.hero-contacto {
    background: url('../assets/contacto.jpg') center/cover no-repeat;
}
/* BLOQUE DESTACADO */
.registro-destacado {
    padding: 80px 40px;
    display: flex;
    justify-content: center;
}

.registro-box {
    max-width: 700px;
    text-align: center;
    background: #111;
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.3);
    box-shadow: 0 0 30px rgba(212,175,55,0.1);
}

.registro-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #d4af37;
}

.registro-box p {
    color: #ccc;
    margin: 20px 0;
}

/* BOTÓN PRINCIPAL (MÁS GRANDE) */
.btn-cta-grande {
    display: inline-block;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;

    background: linear-gradient(135deg, #d4af37, #f5d76e);
    color: black;
    text-decoration: none;

    box-shadow: 0 0 25px rgba(212,175,55,0.4);
    transition: 0.3s;
}

.btn-cta-grande:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(212,175,55,0.6);
}
.producto-hero {
    padding: 120px 40px;
}


.producto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.producto-img-grande img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
}

/* TEXTO */
.producto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.producto-detalle {
    max-width: 500px;
}

.producto-detalle h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitulo {
    color: #ccc;
    margin: 10px 0 20px;
}

.descripcion {
    line-height: 1.8;
    color: #bbb;
    padding-left: 20px;
    border-left: 2px solid rgba(212,175,55,0.3);
}

.beneficios {
    margin: 20px 0;
    padding-left: 20px;
    color: #ccc;
}



/* SECCIÓN EXTRA */
.detalle-extra {
    padding: 80px 40px;
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.detalle-extra h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
}

.precios {
    margin: 25px 0;
}

.producto-detalle .btn {
    display: inline-block;
    margin-top: 15px;
}

.precio-regular {
    color: rgba(212,175,55,0.6); /* dorado más tenue */
    text-decoration: line-through;
    font-size: 16px;
}

.precio-mayorista {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.buscador-asociado input {
    width: 120px;
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(212,175,55,0.4);
    background: #000;
    color: #fff;
    font-size: 13px;
    outline: none;
}

.buscador-asociado input::placeholder {
    color: #888;
}

.buscador-asociado input:focus {
    border-color: #d4af37;
}
