/*
Theme Name: Stack Emprendedor
Theme URI: 
Author: Rafael Colina
Author URI: 
Description: Tema optimizado para landing page y conversión con soporte WooCommerce.
Version: 1.0
Text Domain: stack-emprendedor
*/

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --bg-light: #f3f4f6;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* CTA Buttons */
.btn-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: var(--secondary-color);
}

/* Modules Table */
.modules-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.modules-table th, .modules-table td {
    padding: 15px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.modules-table th {
    background-color: var(--bg-light);
}

section {
    padding: 60px 0;
}