/*
Theme Name: SEO-IA-Design
Theme URI: https://example.com/seo-ia-design/
Description: Child theme de GeneratePress optimizado para experto en SEO, diseño web e IA
Author: Tu Nombre
Author URI: https://example.com
Template: generatepress
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: seo-ia-design
*/

/* Importar estilos del tema padre */
@import url("../generatepress/style.css");

/* Paleta de colores */
:root {
    --primary-color: #D62828;
    --secondary-color: #6A1B9A;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --white: #ffffff;
}

/* Tipografía */
body, h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Montserrat', sans-serif;
}

/* Estilos generales */
body {
    color: var(--dark-gray);
    line-height: 1.6;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Botones */
button, .button, input[type="button"], input[type="reset"], input[type="submit"] {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

button:hover, .button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
    background-color: var(--secondary-color);
}

/* Header */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.main-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.site-description {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(106, 27, 154, 0.8), rgba(214, 40, 40, 0.8)), url('assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {