/* ---------- HERO CON VIDEO EN INDEX ---------- */

.hero {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 190px; /* compensa altura del nav */
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: -1;
}

.hero-subtitle {
    font-size: 36px;
    color: #C0C0C0;
    margin-bottom: 35px;
    letter-spacing: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-cta {
    padding: 16px 40px;
    border: 2px solid #C0C0C0;
    color: #fff;
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    text-transform: uppercase;
}

.btn-cta:hover {
    background: #C0C0C0;
    color: #000;
}


/* ---------- NUESTRA ESENCIA ---------- */

.about {
    padding: 40px 40px; /* compacto */
    text-align: center;
}

.section-text {
    max-width: 700px;
    margin: 20px auto;
    color: #aaa;
    font-size: 18px;
    line-height: 1.7;
}


/* ---------- CATEGORÍAS ---------- */

.categories {
    padding: 30px 40px;
    text-align: center;
}

.categories-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.category-card {
    width: 260px;
    text-align: center;
}

.category-card img {
    width: 100%;
    border: 1px solid #C0C0C0;
    border-radius: 4px;
}

.category-card h3 {
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    color: #C0C0C0;
    letter-spacing: 2px;
}


/* ---------- COLECCIÓN DESTACADA ---------- */

.featured-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 40px;
    flex-wrap: wrap;
}

.featured-item {
    text-align: center;
    width: 260px;
}

.featured-item img {
    width: 100%;
    border: 1px solid #C0C0C0;
    border-radius: 4px;
}

.price {
    font-size: 16px;
    color: #C0C0C0;
    margin-top: 5px;
}


/* ---------- TESTIMONIOS ---------- */

.testimonials {
    padding: 60px 40px;
    text-align: center;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.testimonial {
    width: 300px;
    background: #111;
    padding: 25px;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ddd;
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial span {
    display: block;
    margin-top: 10px;
    color: #C0C0C0;
    font-weight: 300;
}


/* ---------- GARANTÍAS ---------- */

.guarantees {
    padding: 60px 40px;
    text-align: center;
}

.guarantees-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.guarantee {
    width: 260px;
    color: #ddd;
}

.guarantee h3 {
    color: #C0C0C0;
}

.guarantee p {
    color: #aaa;
}
