/* ===== ESTILOS GENERALES ===== */

/* ===== HERO ===== */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=1600");
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
}

.banner {
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 50px 40px;
    border-radius: 15px;
    max-width: 700px;
    border: 1px solid rgba(255,255,255,0.2);
}

.banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #e94560;
}

.banner p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== CATEGORIAS ===== */
.categorias {
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

.categorias h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

.categorias-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.categoria {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    width: 300px;
}

.categoria:hover {
    transform: translateY(-10px);
}

.categoria img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.categoria h3 {
    padding: 15px;
    font-size: 18px;
    color: #1a1a2e;
}

/* ===== PRODUCTOS (INDEX) ===== */
.productos {
    padding: 60px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.productos h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 40px;
}

.productos-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    width: 280px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-body h3 {
    font-size: 18px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.card-body .precio {
    font-size: 22px;
    font-weight: bold;
    color: #e94560;
    margin-bottom: 15px;
}

.btn-card {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-card:hover {
    background: #e94560;
    transform: scale(1.05);
}

/* ===== VALORACION ===== */
.valoracion {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
}

.valoracion-card {
    text-align: center;
    max-width: 300px;
    padding: 30px 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s;
}

.valoracion-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.valoracion-card i {
    color: #e94560;
    margin-bottom: 15px;
}

.valoracion-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.btn-prod {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.btn-prod a {
    display: inline-block;
    padding: 15px 35px;
    background-color: #e94560;
    color: white;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-prod a:hover {
    background-color: #d63851;
    transform: scale(1.05);
}

/* ===== CONTACTANOS ===== */
.contactanos {
    text-align: center;
    padding: 60px 20px;
    background-color: white;
}

.contactanos h2 {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.contactanos p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #666;
}

.btn-cont a {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    border-radius: 30px;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-cont a:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* ===== RESPONSIVE INDEX ===== */
@media (max-width: 1024px) {
    .hero {
        padding: 80px 20px;
    }
    .banner {
        padding: 40px 30px;
    }
    .categoria {
        width: calc(50% - 15px);
        max-width: 300px;
    }
    .categorias h2,
    .productos h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 15px;
    }
    .banner {
        padding: 30px 20px;
    }
    .banner h1 {
        font-size: 28px;
    }
    .banner p {
        font-size: 15px;
    }
    .categoria {
        width: 100%;
        max-width: 280px;
    }
    .categorias h2,
    .productos h2 {
        font-size: 24px;
    }
    .card {
        width: 100%;
        max-width: 280px;
    }
    .valoracion {
        padding: 40px 15px;
        gap: 20px;
    }
    .valoracion-card {
        max-width: 100%;
        width: 100%;
    }
}
