/**
 * Utilidades de marca Las Camelias — colores aprobados con el cliente.
 * No dependen del CDN de Tailwind (contenido Gutenberg dinámico).
 */

:root {
    --lc-corp: #1b365d;
    --lc-innov: #5bb4e5;
    --lc-logo-mid: #3a86c8;
    --lc-inv: #10b981;
    --lc-neutro: #f8fafc;
    --lc-slate: #1e293b;
    --lc-radius: 14px;
}

/* —— Texto —— */
.text-corp { color: var(--lc-corp) !important; }
.text-innov { color: var(--lc-innov) !important; }
.text-inv { color: var(--lc-inv) !important; }
.text-slatebrand { color: var(--lc-slate) !important; }
.text-white { color: #fff !important; }
.text-corp\/60 { color: rgba(27, 54, 93, 0.6) !important; }
.text-slatebrand\/65 { color: rgba(30, 41, 59, 0.65) !important; }
.text-slatebrand\/70 { color: rgba(30, 41, 59, 0.7) !important; }
.text-slatebrand\/75 { color: rgba(30, 41, 59, 0.75) !important; }
.text-white\/40 { color: rgba(255, 255, 255, 0.4) !important; }
.text-white\/75 { color: rgba(255, 255, 255, 0.75) !important; }
.text-white\/85 { color: rgba(255, 255, 255, 0.85) !important; }
.hover\:text-innov:hover { color: var(--lc-innov) !important; }
.hover\:underline:hover { text-decoration: underline; }

/* —— Fondos —— */
.bg-corp { background-color: var(--lc-corp) !important; }
.bg-innov { background-color: var(--lc-innov) !important; }
.bg-neutro { background-color: var(--lc-neutro) !important; }
.bg-white { background-color: #fff !important; }
.bg-neutro\/40 { background-color: rgba(248, 250, 252, 0.85) !important; }
body.bg-neutro { background-color: var(--lc-neutro); }
body.text-slatebrand { color: var(--lc-slate); }

/* —— Bordes —— */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t-4 { border-top-width: 4px; border-top-style: solid; }
.border-innov { border-color: var(--lc-innov) !important; }
.border-corp\/10 { border-color: rgba(27, 54, 93, 0.1) !important; }
.border-inv\/25 { border-color: rgba(16, 185, 129, 0.25) !important; }
.border-innov\/25 { border-color: rgba(91, 180, 229, 0.25) !important; }
.border-white\/40 { border-color: rgba(255, 255, 255, 0.4) !important; }

/* —— Tipografía —— */
.font-brand { font-family: 'Montserrat', sans-serif; letter-spacing: 0.02em; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.leading-\[1\.12\] { line-height: 1.12; }
.leading-relaxed { line-height: 1.625; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* —— Layout —— */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.grid { display: grid; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.space-y-4 > * + * { margin-top: 1rem; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.z-10 { z-index: 10; }
.w-full { width: 100%; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-6 { margin-left: 1.5rem; margin-right: 1.5rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.text-center { text-align: center; }
.object-cover { object-fit: cover; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.rounded-brand { border-radius: var(--lc-radius); }
.rounded-\[14px\] { border-radius: var(--lc-radius); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.underline-offset-2 { text-underline-offset: 2px; }
.accent-corp { accent-color: var(--lc-corp); }
.hover\:brightness-110:hover { filter: brightness(1.1); }

/* —— Contacto: panel de datos —— */
.contact-panel .flex.items-start.gap-3 i.text-inv { color: var(--lc-inv) !important; }
.contact-panel a.text-corp { color: var(--lc-corp); font-weight: 600; }
.contact-panel a.text-corp:hover { color: var(--lc-innov); }

.contact-info-row i.text-innov { color: var(--lc-innov) !important; }
.contact-info-row i.text-corp { color: var(--lc-corp) !important; }
.contact-info-row i.text-inv { color: var(--lc-inv) !important; }
.contact-panel .contact-info-row + .contact-info-row { margin-top: 1rem; }
.contact-panel .contact-info-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-panel .contact-info-row i { margin-top: 0.125rem; flex-shrink: 0; }
.contact-map-wrap { margin-top: 0.75rem; }
.contact-map { overflow: hidden; border-radius: 10px; border: 1px solid rgba(27, 54, 93, 0.1); }
.contact-map iframe { display: block; width: 100%; min-height: 280px; border: 0; }

.folio-kicker.text-corp { color: var(--lc-corp) !important; }
.folio-kicker.text-innov { color: var(--lc-innov) !important; }

/* —— Botones de marca —— */
.bg-innov.text-white,
a.bg-innov,
.wp-block-button__link.bg-innov {
    background-color: var(--lc-innov) !important;
    color: #fff !important;
}

/* —— Responsive —— */
@media (min-width: 640px) {
    .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
    .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
    .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
    .sm\:p-7 { padding: 1.75rem; }
    .sm\:p-8 { padding: 2rem; }
}

@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
    .lg\:block { display: block; }
    .lg\:hidden { display: none; }
    .lg\:px-12 { padding-left: 3rem; padding-right: 3rem; }
    .lg\:py-0 { padding-top: 0; padding-bottom: 0; }
    .lg\:mx-12 { margin-left: 3rem; margin-right: 3rem; }
    .lg\:gap-14 { gap: 3.5rem; }
    .lg\:text-5xl { font-size: 3rem; line-height: 1; }
    .lg\:aspect-\[3\/4\] { aspect-ratio: 3 / 4; }
    .lg\:min-h-\[420px\] { min-height: 420px; }
}

@media (min-width: 1280px) {
    .xl\:text-\[3\.25rem\] { font-size: 3.25rem; line-height: 1.1; }
}
