/*
Theme Name: Talentia V3
Theme URI: https://example.com
Author: Tú
Description: Tema a medida para Talentia (migración desde React).
Version: 1.0.6
Text Domain: talentia-v3
*/

/* =================== VARIABLES =================== */
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;

  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;

  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;

  /* Talentia Brand Colors */
  --primary: 241 49% 35%;
  --primary-foreground: 0 0% 100%;

  --secondary: 14 99% 56%;
  --secondary-foreground: 0 0% 100%;

  --muted: 5 30% 93%;
  --muted-foreground: 241 49% 25%;

  --accent: 199 89% 87%;
  --accent-foreground: 241 49% 35%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;

  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 252 52% 35%;

  --radius: 0.5rem;

  --sidebar-background: 0 0% 98%;
  --sidebar-foreground: 240 5.3% 26.1%;
  --sidebar-primary: 240 5.9% 10%;
  --sidebar-primary-foreground: 0 0% 98%;
  --sidebar-accent: 240 4.8% 95.9%;
  --sidebar-accent-foreground: 240 5.9% 10%;
  --sidebar-border: 220 13% 91%;
  --sidebar-ring: 217.2 91.2% 59.8%;
}


/* =================== GLOBAL RESETS =================== */
* {
  box-sizing: border-box;
}


html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;   /* evita desplazamientos laterales */
  margin: 0;
  padding: 0;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
    padding-top: 4rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none !important; padding:0; margin:0; }
a { text-decoration: none !important; cursor: pointer !important; }

/* =================== GLOBAL FOTNS =================== */

@font-face {
  font-family: 'Amandine';
  src: url('assets/fonts/amandine/Amandine-Medium.woff2') format('woff2'),
       url('assets/fonts/amandine/Amandine-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Amandine', sans-serif !important;
}
/* =================== LAYOUT =================== */
.container {
  width: 100%;
  max-width: 1368px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .container { padding-left: 0.75rem; padding-right: 0.75rem; }
}

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.hidden { display: none; }

/* Spacings */
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }

/* Typography */
.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}
.font-bold { font-weight: 700; }

.site-title {
  font-family: 'Amandine', sans-serif;
  font-weight: 500; /* Medium */
}

/* =================== LOGOS (GENÉRICO) =================== */
.custom-logo-link img,
.custom-logo {
  max-width: 160px;
  width: auto;
  height: auto;
}
