/* UBICACIÓN DEL ARCHIVO: 
E:\xamp\htdocs\camape-productora\assets\css\global.css 
*/

:root {
    /* NOTA: Estas variables controlan los colores de TODA la página */
    --color-primary: rgb(10 75 2);    /* Rojo Principal */
    --color-dark: #141414;       /* Fondo Oscuro */
    --color-grey: #222222;       /* Gris Oscuro (tarjetas) */
    --color-light: #f5f5f5;      /* Texto Claro */
    --text-color: #ffffff;       /* Color de fuente general */
    
    /* Fuentes */
    --font-main: 'Poppins', Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: #000000; /* Fondo negro por defecto */
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Evita scroll horizontal indeseado */
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- CLASES DE UTILIDAD (Úsalas en cualquier HTML) --- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Botón Principal (Rojo) */
.btn-main {
    background-color: var(--color-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid var(--color-primary);
    cursor: pointer;
}

.btn-main:hover {
    background-color: transparent;
    color: var(--color-primary);
}

/* Títulos de Sección */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* Espaciado estándar entre secciones */
.section-padding {
    padding: 80px 0;
}