/*
Theme Name: Conhector
Theme URI: https://conhector.es
Description: Child theme oficial de Conhector para Blocksy.
Author: Héctor Pérez Jiménez
Author URI: https://conhector.es
Template: blocksy
Version: 1.0.0
Text Domain: conhector
*/

/* =========================================================
   VARIABLES GLOBALES
========================================================= */

:root {
    --color-primary: #E65100;
    --color-secondary: #3FA9C9;
    --color-dark: #000000;
    --color-light: #F5F7FA;
    --color-text: #333333;

    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);

    --container-width: 1200px;
}

/* =========================================================
   BASE
========================================================= */

body {
    color: var(--color-text);
    background-color: #ffffff;
}

/* =========================================================
   UTILIDADES
========================================================= */

.conhector-container {
    width: min(100% - 2rem, var(--container-width));
    margin-inline: auto;
}

.conhector-shadow {
    box-shadow: var(--shadow-soft);
}

.conhector-radius {
    border-radius: var(--radius-medium);
}