/*
Theme Name: Inversiones Triana Gómez - Corporativo Ultra
Theme URI: https://inversionestrianagomez.com/
Author: Inversiones Triana Gómez S.A.S.
Author URI: https://inversionestrianagomez.com/
Description: Tema corporativo moderno, ultraligero y optimizado para SEO, diseñado para la agroindustria de alimentos, nutrición animal y maquila industrial INVIMA.
Version: 2.4.0
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.2
License: Proprietary
Text Domain: triana-gomez
*/

:root {
  /* Brand Palette */
  --tg-primary: #0D5C3A;         /* Verde Esmeralda Corporativo */
  --tg-primary-dark: #073B25;    /* Verde Bosque Profundo */
  --tg-primary-light: #188656;   /* Verde Vibrante */
  --tg-accent: #D99B26;          /* Dorado Arroz / Grano */
  --tg-accent-hover: #BF8217;    /* Dorado Oscuro */
  --tg-accent-light: #FDF4E3;    /* Dorado Suave / Fondo */
  
  /* Neutral Industrial Palette */
  --tg-dark: #0F172A;            /* Azul Pizarra Profundo */
  --tg-dark-muted: #334155;      /* Gris Texto Secundario */
  --tg-gray-light: #F8FAFC;      /* Fondo Secciones */
  --tg-gray-border: #E2E8F0;     /* Bordes y Divisores */
  --tg-white: #FFFFFF;
  
  /* Status */
  --tg-success: #10B981;
  --tg-warning: #F59E0B;
  
  /* Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Layout & Elevations */
  --max-w: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(13, 92, 58, 0.12);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Core Setup */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--tg-white);
  color: var(--tg-dark);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--tg-dark);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: var(--tg-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--tg-accent);
}

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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-heading);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background-color: var(--tg-primary);
  color: var(--tg-white);
}

.btn-primary:hover {
  background-color: var(--tg-primary-dark);
  color: var(--tg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 92, 58, 0.25);
}

.btn-accent {
  background-color: var(--tg-accent);
  color: var(--tg-white);
}

.btn-accent:hover {
  background-color: var(--tg-accent-hover);
  color: var(--tg-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 155, 38, 0.3);
}

.btn-outline {
  border-color: var(--tg-primary);
  color: var(--tg-primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--tg-primary);
  color: var(--tg-white);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--tg-white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: var(--tg-white);
  color: var(--tg-primary);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

/* Badges & Pills */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
}

.badge-gold {
  background-color: var(--tg-accent-light);
  color: var(--tg-accent-hover);
  border: 1px solid rgba(217, 155, 38, 0.2);
}

.badge-green {
  background-color: #E8F5EE;
  color: var(--tg-primary);
  border: 1px solid rgba(13, 92, 58, 0.15);
}
