/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Template: generatepress
Author: Tom Usborne
Author URI: https://generatepress.com/about
Description: GeneratePress is a lightweight WordPress theme built with a focus on speed and usability. Performance is important to us, which is why a fresh GeneratePress install adds less than 10kb (gzipped) to your page size. We take full advantage of the block editor (Gutenberg), which gives you more control over creating your content. If you use page builders, GeneratePress is the right theme for you. It is completely compatible with all major page builders, including Beaver Builder and Elementor. Thanks to our emphasis on WordPress coding standards, we can boast full compatibility with all well-coded plugins, including WooCommerce. GeneratePress is fully responsive, uses valid HTML/CSS, and is translated into over 25 languages by our amazing community of users. A few of our many features include 60+ color controls, powerful dynamic typography, 5 navigation locations, 5 sidebar layouts, dropdown menus (click or hover), and 9 widget areas. Learn more and check out our powerful premium version at https://generatepress.com
Tags: two-columns,three-columns,one-column,right-sidebar,left-sidebar,footer-widgets,blog,e-commerce,flexible-header,full-width-template,buddypress,custom-header,custom-background,custom-menu,custom-colors,sticky-post,threaded-comments,translation-ready,rtl-language-support,featured-images,theme-options
Version: 3.6.1.1788170777
Updated: 2026-08-31 12:06:17

*/

/* =========================================================
   ALFA SPORT — LOCAL FONTS
   Las fuentes están en /assets/font/
   Este style.css está en la raíz del tema.
   ========================================================= */

@font-face {
    font-family: "Michroma";
    src: url("assets/font/Michroma-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Instrument Sans";
    src: url("assets/font/InstrumentSans-VariableFont_wdth,wght.woff2") format("woff2");
    font-weight: 400 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Instrument Sans";
    src: url("assets/font/InstrumentSans-Italic-VariableFont_wdth,wght.woff2") format("woff2");
    font-weight: 400 700;
    font-style: italic;
    font-display: swap;
}


/* =========================================================
   ALFA SPORT — GLOBAL DESIGN SYSTEM
   ========================================================= */

:root {

    /* =========================================
       COLORES DE MARCA
       ========================================= */

    /* Verde Alfa Sport */
    --alfa-green: #003C32;
    --alfa-green-dark: #002A24;
    --alfa-green-deep: #001F1A;
    --alfa-green-soft: #0B5145;

    /* Rojo Alfa */
    --alfa-red: #A61916;
    --alfa-red-dark: #80120F;

    /* Fondos */
    --alfa-bg: #F7F5F0;
    --alfa-bg-soft: #F2EFE8;
    --alfa-bg-white: #FFFFFF;
    --alfa-bg-dark: #111310;
    --alfa-bg-black: #090B09;

    /* Textos */
    --alfa-text: #15211E;
    --alfa-text-dark: #0E1513;
    --alfa-text-soft: #5F6764;
    --alfa-text-muted: #7B817E;
    --alfa-text-light: #F7F7F3;

    /* Líneas / bordes */
    --alfa-border: #DDDCD5;
    --alfa-border-light: #E8E6DF;
    --alfa-border-dark: rgba(255, 255, 255, 0.12);

    /* Estados */
    --alfa-success: #1F705E;
    --alfa-error: #A61916;


    /* =========================================
       CONTENEDORES / ANCHOS
       ========================================= */

    --alfa-container: 1440px;
    --alfa-container-wide: 1600px;

    --alfa-content: 1180px;
    --alfa-content-text: 820px;

    --alfa-gutter: 40px;
    --alfa-gutter-tablet: 28px;
    --alfa-gutter-mobile: 20px;


    /* =========================================
       ESPACIADOS
       ========================================= */

    --alfa-space-2xs: 4px;
    --alfa-space-xs: 8px;
    --alfa-space-sm: 12px;
    --alfa-space-md: 16px;
    --alfa-space-lg: 24px;
    --alfa-space-xl: 32px;
    --alfa-space-2xl: 48px;
    --alfa-space-3xl: 64px;
    --alfa-space-4xl: 80px;
    --alfa-space-5xl: 100px;
    --alfa-space-6xl: 120px;


    /* =========================================
       BORDER RADIUS
       ========================================= */

    --alfa-radius-xs: 4px;
    --alfa-radius-sm: 6px;
    --alfa-radius-md: 10px;
    --alfa-radius-lg: 14px;
    --alfa-radius-xl: 20px;
    --alfa-radius-2xl: 28px;
    --alfa-radius-pill: 999px;


    /* =========================================
       TIPOGRAFÍA
       ========================================= */

    --alfa-font-primary: "Instrument Sans", Arial, sans-serif;
    --alfa-font-display: "Michroma", Arial, sans-serif;

    --alfa-weight-regular: 400;
    --alfa-weight-medium: 500;
    --alfa-weight-semibold: 600;
    --alfa-weight-bold: 700;


    /* =========================================
       SOMBRAS
       ========================================= */

    --alfa-shadow-xs:
        0 1px 2px rgba(0, 25, 20, 0.04);

    --alfa-shadow-sm:
        0 4px 14px rgba(0, 25, 20, 0.06);

    --alfa-shadow-md:
        0 10px 30px rgba(0, 25, 20, 0.08);

    --alfa-shadow-lg:
        0 20px 50px rgba(0, 25, 20, 0.12);


    /* =========================================
       TRANSICIONES
       ========================================= */

    --alfa-transition-fast: 160ms ease;
    --alfa-transition: 250ms ease;
    --alfa-transition-slow: 400ms ease;


    /* =========================================
       HEADER
       ========================================= */

    --alfa-header-height: 78px;


    /* =========================================
       Z-INDEX
       ========================================= */

    --alfa-z-header: 100;
    --alfa-z-dropdown: 200;
    --alfa-z-overlay: 500;
    --alfa-z-modal: 1000;
}


/* =========================================================
   RESET / BASE
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: var(--alfa-bg);
    color: var(--alfa-text);

    font-family: var(--alfa-font-primary);
    font-size: 16px;
    font-weight: var(--alfa-weight-regular);
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* =========================================================
   TIPOGRAFÍA GLOBAL
   Michroma = identidad / titulares
   Instrument Sans = lectura / interfaz
   ========================================================= */

body,
button,
input,
textarea,
select {
    font-family: var(--alfa-font-primary);
}

h1,
h2,
h3 {
    font-family: var(--alfa-font-display);
    font-weight: 400;
    text-wrap: balance;
}

h4,
h5,
h6 {
    font-family: var(--alfa-font-primary);
    font-weight: var(--alfa-weight-semibold);
}

strong,
b {
    font-weight: var(--alfa-weight-bold);
}

/* Etiquetas, navegación y UI: técnica pero muy legible */
.alfa-eyebrow,
.alfa-kicker,
.alfa-label,
.alfa-header__menu,
.alfa-mobile-menu__list,
.alfa-btn,
button,
input,
textarea,
select {
    font-family: var(--alfa-font-primary);
}

/* WooCommerce conserva Instrument Sans para catálogo, precios y formularios */
.woocommerce,
.woocommerce-page,
.woocommerce button,
.woocommerce input,
.woocommerce select,
.woocommerce textarea {
    font-family: var(--alfa-font-primary);
}


/* =========================================================
   CONTENEDORES
   ========================================================= */

/*
 * Contenedor estándar.
 * Este será el que utilizaremos en prácticamente
 * todas las páginas.
 */

.alfa-container {
width: 100%;
    max-width: var(--alfa-container-wide);
    margin-inline: auto;
    padding-inline: var(--alfa-gutter)
}


/*
 * Contenedor ancho.
 * Útil para cabeceras, grids grandes,
 * catálogo o diseños muy visuales.
 */

.alfa-container-wide {
    width: 100%;
    max-width: var(--alfa-container-wide);
    margin-inline: auto;
    padding-inline: var(--alfa-gutter);
}


/*
 * Contenido más estrecho.
 * No usar como ancho general de página.
 */

.alfa-content {
    width: 100%;
    max-width: var(--alfa-content);
    margin-inline: auto;
}


/*
 * Para textos largos, legales, FAQs, etc.
 */

.alfa-content-text {
    width: 100%;
    margin-inline: auto;
}


/* =========================================================
   SECCIONES
   ========================================================= */

.alfa-section {
    width: 100%;
    padding-block: var(--alfa-space-5xl);
}

.alfa-section-sm {
    padding-block: var(--alfa-space-3xl);
}

.alfa-section-lg {
    padding-block: var(--alfa-space-6xl);
}


/* =========================================================
   TÍTULOS
   ========================================================= */

.alfa-title-xl {
    margin: 0;

    font-family: var(--alfa-font-display);
    font-size: clamp(42px, 4vw, 68px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.alfa-title-lg {
    margin: 0;

    font-family: var(--alfa-font-display);
    font-size: clamp(34px, 2.8vw, 50px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.03em;
}

.alfa-title-md {
    margin: 0;

    font-family: var(--alfa-font-display);
    font-size: clamp(27px, 2.2vw, 38px);
    font-weight: 400;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.alfa-title-sm {
    margin: 0;

    font-family: var(--alfa-font-primary);
    font-size: clamp(22px, 1.8vw, 28px);
    font-weight: var(--alfa-weight-semibold);
    line-height: 1.25;
    letter-spacing: -0.015em;
}


/* =========================================================
   TEXTO
   ========================================================= */

.alfa-text-lg {
    font-size: 18px;
    line-height: 1.7;
}

.alfa-text-sm {
    font-size: 14px;
    line-height: 1.6;
}

.alfa-text-muted {
    color: var(--alfa-text-soft);
}


/* =========================================================
   BOTONES
   ========================================================= */

.alfa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 48px;
    padding: 12px 22px;

    border: 1px solid transparent;
    border-radius: var(--alfa-radius-sm);

    font-family: var(--alfa-font-primary);
    font-size: 13px;
    font-weight: var(--alfa-weight-semibold);
    line-height: 1;
    letter-spacing: 0.035em;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color var(--alfa-transition),
        color var(--alfa-transition),
        border-color var(--alfa-transition),
        transform var(--alfa-transition);
}

.alfa-btn:hover {
    transform: translateY(-1px);
}

.alfa-btn-primary {
    background: var(--alfa-green);
    color: #fff;
    border-color: var(--alfa-green);
}

.alfa-btn-primary:hover {
    background: var(--alfa-green-dark);
    border-color: var(--alfa-green-dark);
}

.alfa-btn-secondary {
    background: transparent;
    color: var(--alfa-green);
    border-color: var(--alfa-green);
}

.alfa-btn-secondary:hover {
    background: var(--alfa-green);
    color: #fff;
}


/* =========================================================
   TARJETAS
   ========================================================= */

.alfa-card {
    background: var(--alfa-bg-white);
    border: 1px solid var(--alfa-border);
    border-radius: var(--alfa-radius-md);
    overflow: hidden;

    transition:
        transform var(--alfa-transition),
        box-shadow var(--alfa-transition),
        border-color var(--alfa-transition);
}

.alfa-card:hover {
    border-color: rgba(0, 60, 50, 0.22);
    box-shadow: var(--alfa-shadow-sm);
    transform: translateY(-2px);
}


/* =========================================================
   GRID
   ========================================================= */

.alfa-grid {
    display: grid;
    gap: var(--alfa-space-lg);
}

.alfa-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.alfa-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.alfa-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {

    :root {
        --alfa-gutter: var(--alfa-gutter-tablet);
    }

    .alfa-section {
        padding-block: var(--alfa-space-4xl);
    }

    .alfa-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .alfa-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


@media (max-width: 767px) {

    :root {
        --alfa-gutter: var(--alfa-gutter-mobile);
    }

    body {
        font-size: 15px;
    }

    .alfa-section,
    .alfa-section-lg {
        padding-block: var(--alfa-space-3xl);
    }

    .alfa-grid-2,
    .alfa-grid-3,
    .alfa-grid-4 {
        grid-template-columns: 1fr;
    }

    .alfa-btn {
        min-height: 46px;
    }
}

.separate-containers .site-main{
    margin:0px;
}

.separate-containers .comments-area, .separate-containers .inside-article, .separate-containers .page-header, .separate-containers .paging-navigation{
    padding:0px;
}