/*
 Theme Name: Heros Ventas Pro
 Theme URI: https://grupoheros.online
 Author: Grok Expert
 Author URI: https://x.ai
 Description: Tema personalizado para Heros Ventas Pro, optimizado para WooCommerce con un diseño moderno y responsivo.
 Version: 1.0.0
 Text Domain: heros-ventas-pro
 Tags: woocommerce, responsive, customizable
*/

/* Estilos generales */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Sección Hero */
.hero-section {
    background: linear-gradient(180deg, #f8f9fa, #e9ecef);
    padding: 60px 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.hero-section p {
    font-size: 1.2em;
    color: #666;
}

/* Productos (WooCommerce) */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px 0;
}

.card-product {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.card-product:hover {
    transform: translateY(-5px);
}

.card-product img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.card-product h3 {
    font-size: 1.4em;
    margin: 15px 0;
}

.card-product .price {
    color: #E53935;
    font-size: 1.2em;
    font-weight: bold;
}

.card-product .button {
    display: inline-block;
    padding: 10px 20px;
    background: #FFD700;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.card-product .button:hover {
    background: #E53935;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}

.footer a {
    color: #FFD700;
    text-decoration: none;
}

.footer a:hover {
    color: #E53935;
}

/* Responsividad */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2em;
    }

    .hero-section p {
        font-size: 1em;
    }

    .products {
        grid-template-columns: 1fr;
    }
}