/* ================================
   PÁGINA DE INICIO - inicio.css
   ================================ */

/* Hero Section */
.hero-section {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-content h1 {
    color: white;
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.cta-button {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    background: white;
    color: #1a1a1a;
    transform: translateX(10px);
}

.cta-button::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(5px);
}

.product-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-section .product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-section .product-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.hero-section .product-image {
    width: 60px;
    height: 60px;
    background: #c4a574;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.hero-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h3 {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.product-info p {
    color: #666;
    font-size: 0.8rem;
}

.product-arrow {
    margin-left: auto;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Featured Products Section */
.featured-section {
    margin-top: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.featured-product {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.featured-product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.featured-image {
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.featured-product:hover .featured-image img {
    transform: scale(1.1);
}

.featured-content {
    padding: 1.5rem;
}

.featured-content h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.featured-content p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c4a574;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .product-cards {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }
}