/*
Theme Name: Arteterapia
Theme URI: https://example.com/arteterapia
Author: Arteterapia
Author URI: https://example.com
Description: Tema de WordPress para Arteterapia. Diseño limpio y adaptable.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arteterapia
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, full-width-template, theme-options, two-columns, responsive-layout

Este tema está licenciado bajo GPL v2 o posterior.
*/

/* ==========================================================================
   Variables y reset básico
   ========================================================================== */

:root {
  --color-primary: #2c3e50;
  --color-secondary: #3498db;
  --color-accent: #e74c3c;
  --color-text: #333;
  --color-text-light: #666;
  --color-bg: #fff;
  --color-bg-alt: #f8f9fa;
  --font-main: 'Jost', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --spacing-unit: 1rem;
  --max-width: 1200px;
  --border-radius: 4px;
  /* Header Arterapia */
  --or1: #c94a1a;
  --or2: #e0642b;
  --or3: #f07d3a;
  --or4: #f5a06a;
  --pu1: #4a1f6b;
  --pu2: #7b3fa0;
  --pu3: #a664c8;
  --cream: #faf6f0;
  --cream2: #f3ede4;
  --dark: #16080a;
  --dark2: #1f0d10;
  --muted: #6b5b52;
  --muted2: #9b8880;
  --bar-h: 38px;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--cream);
}

/* ==========================================================================
   Tipografía
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-top: 0;
  margin-bottom: var(--spacing-unit);
  line-height: 1.3;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Layout principal
   ========================================================================== */

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--spacing-unit) 1.5rem;
  padding-top: calc(var(--bar-h) + var(--nav-h) + 1.5rem);
}

/* ==========================================================================
   Header Arterapia (topbar + navbar + mobile)
   ========================================================================== */

.topbar {
  height: var(--bar-h);
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar.hidden {
  transform: translateY(-100%);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-assoc {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 5px 14px;
  border: 1px solid rgba(240, 125, 58, 0.35);
  border-radius: 2px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.topbar-assoc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--or1), var(--pu1));
  opacity: 0;
  transition: opacity 0.3s;
}

.topbar-assoc:hover::before {
  opacity: 1;
}

.topbar-assoc:hover .assoc-icon,
.topbar-assoc:hover .assoc-text {
  color: white;
}

.assoc-icon {
  font-size: 0.8rem;
  color: var(--or3);
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}

.assoc-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}

.assoc-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--or1);
  color: white;
  padding: 2px 6px;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}

.topbar-email {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.topbar-email svg {
  opacity: 0.5;
  transition: opacity 0.2s;
}

.topbar-email:hover {
  color: var(--or3);
}

.topbar-email:hover svg {
  opacity: 1;
}

.topbar-sep {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.social-link {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
}

.social-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.social-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Main navbar */
.navbar {
  height: var(--nav-h);
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  position: fixed;
  top: var(--bar-h);
  left: 0;
  right: 0;
  z-index: 199;
  display: flex;
  align-items: stretch;
  padding: 0 40px;
  border-bottom: 1px solid rgba(201, 74, 26, 0.1);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, background 0.3s;
}

.navbar.scrolled {
  background: rgba(250, 246, 240, 0.99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.navbar.topbar-gone {
  top: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: 48px;
  flex-shrink: 0;
  color: inherit;
}

.nav-logo:hover {
  text-decoration: none;
  color: inherit;
}

.logo-img {
  height: 68px;
  width: auto;
  transition: transform 0.3s;
  filter: drop-shadow(0 2px 8px rgba(201, 74, 26, 0.2));
}

.nav-logo:hover .logo-img {
  transform: scale(1.06) rotate(-2deg);
}

.logo-text {
  line-height: 1.1;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--pu1);
  display: block;
}

.logo-name em {
  font-style: normal;
  color: var(--or1);
}

.logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pu3);
  display: block;
}

.nav-menu {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.nav-item {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  height: 100%;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--or1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--or1);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--or1);
}

.nav-link.active::after {
  transform: scaleX(1);
}

.nav-item .nav-link {
  color: var(--muted);
}

.nav-arrow {
  font-size: 0.55rem;
  opacity: 0.5;
  transition: transform 0.2s;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-item:not(.has-dropdown) .nav-arrow {
  display: none;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: white;
  border-top: 2px solid var(--or1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s, transform 0.25s;
  z-index: 300;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  font-size: 0.82rem;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: var(--cream);
  color: var(--or1);
  padding-left: 26px;
}

.dropdown-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--or3);
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-trigger {
  width: 36px;
  height: 36px;
  background: none;
  border: 1.5px solid rgba(201, 74, 26, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.25s;
}

.search-trigger:hover {
  background: var(--or1);
  border-color: var(--or1);
  color: white;
  transform: scale(1.08);
}

.search-trigger svg {
  width: 15px;
  height: 15px;
}

.search-box {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  z-index: 10;
}

.search-box.open {
  width: 300px;
}

.search-box .search-form {
  flex: 1;
  display: flex;
  min-width: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  background: none;
  padding: 10px 20px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  color: var(--dark);
  min-width: 0;
}

.search-input::placeholder {
  color: rgba(107, 91, 82, 0.5);
}

.search-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 0 14px;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.search-close:hover {
  color: var(--or1);
}

.btn-assoc {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--or1), var(--pu1));
  color: white;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-assoc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pu1), var(--or1));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-assoc:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 74, 26, 0.35);
  color: white;
  text-decoration: none;
}

.btn-assoc:hover::before {
  opacity: 1;
}

.btn-assoc span,
.btn-assoc svg {
  position: relative;
  z-index: 1;
}

.btn-assoc svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.btn-postula {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  background: var(--or1);
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-postula:hover {
  background: var(--or2);
  transform: translateY(-1px);
  color: white;
  text-decoration: none;
}

.btn-postula svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--or1);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: calc(var(--bar-h) + var(--nav-h));
  left: 0;
  right: 0;
  background: white;
  border-top: 2px solid var(--or1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-100%) scaleY(0.9);
  transform-origin: top;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
  pointer-events: none;
  z-index: 198;
  padding: 20px 24px 28px;
  max-height: calc(100vh - var(--bar-h) - var(--nav-h));
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateY(0) scaleY(1);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu .mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu .mobile-nav-list li {
  margin: 0;
  padding: 0;
}

.mobile-menu .mobile-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--dark);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu .mobile-nav-list a:hover {
  color: var(--or1);
  padding-left: 8px;
  text-decoration: none;
}

.mobile-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: 4px;
  border: 1px solid rgba(201, 74, 26, 0.15);
}

.mobile-search input {
  flex: 1;
  border: none;
  background: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 0.95rem;
}

.mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.mobile-ctas a {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 3px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
}

.mobile-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 74, 26, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.25s;
}

.mobile-social-link:hover {
  background: var(--or1);
  border-color: var(--or1);
  color: white;
  text-decoration: none;
}

.mobile-social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ==========================================================================
   Contenido y entradas
   ========================================================================== */

.entry-header {
  margin-bottom: 1.5rem;
}

.entry-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.entry-meta {
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.entry-content {
  margin-bottom: 2rem;
}

.entry-content p {
  margin-bottom: 1rem;
}

/* ==========================================================================
   Páginas legales (Privacidad, Términos, Cookies)
   ========================================================================== */

.content-area--legal {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  padding-top: calc(var(--bar-h) + var(--nav-h) + 2rem);
  padding-bottom: 3rem;
}

.legal-main {
  padding: 0 1.5rem;
}

.legal-page {
  background: var(--cream);
}

.legal-page-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(201, 74, 26, 0.15);
}

.legal-page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--pu1);
  margin: 0 0 0.5rem 0;
  line-height: 1.25;
}

.legal-page-title em {
  font-style: italic;
  color: var(--or1);
}

.legal-page-date {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  font-weight: 400;
}

.legal-page-date time {
  font-weight: 500;
}

.legal-content {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--dark);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pu1);
  margin: 2rem 0 0.75rem 0;
  padding-top: 0.25rem;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.legal-content a {
  color: var(--or1);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--or2);
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

.legal-content strong {
  color: var(--dark);
  font-weight: 600;
}

.legal-content em {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.widget-area {
  padding: 1.5rem 0;
}

.widget {
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-secondary);
}

.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.widget li {
  padding: 0.25rem 0;
  border-bottom: 1px solid #eee;
}

/* ==========================================================================
   Pre-footer (Newsletter) y Footer Arterapia
   ========================================================================== */

.prefooter {
  background: linear-gradient(135deg, var(--or1) 0%, #a8330e 40%, var(--pu1) 100%);
  padding: 64px 80px;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.prefooter::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.prefooter::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(92, 45, 122, 0.25);
  pointer-events: none;
}

.prefooter-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.prefooter-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}

.prefooter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: white;
  line-height: 1.2;
}

.prefooter-title strong {
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-input {
  width: 280px;
  padding: 16px 20px;
  border: none;
  outline: none;
  font-family: var(--font-main);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  backdrop-filter: blur(8px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-input:focus {
  background: rgba(255, 255, 255, 0.18);
}

.newsletter-btn {
  padding: 16px 28px;
  background: white;
  color: var(--or1);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-btn:hover {
  background: var(--cream);
}

.newsletter-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* Main footer */
.site-footer.footer-arterapia {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
}

.site-footer.footer-arterapia::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(201, 74, 26, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 100%, rgba(92, 45, 122, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-edge {
  height: 3px;
  background: linear-gradient(90deg, var(--or1) 0%, var(--pu2) 50%, var(--or3) 100%);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 80px 0;
  position: relative;
  z-index: 2;
}

.footer-brand-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.footer-logo-link:hover {
  color: inherit;
  text-decoration: none;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(240, 125, 58, 0.3)) brightness(1.1);
  transition: transform 0.3s, filter 0.3s;
}

.footer-logo-link:hover .footer-logo-img {
  transform: scale(1.06) rotate(-3deg);
  filter: drop-shadow(0 6px 18px rgba(240, 125, 58, 0.5)) brightness(1.15);
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  display: block;
  line-height: 1.1;
}

.footer-logo-name em {
  font-style: normal;
  color: var(--or3);
}

.footer-logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pu3);
  display: block;
  margin-top: 4px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.footer-social::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or1), var(--pu2));
  opacity: 0;
  transition: opacity 0.3s;
}

.footer-social:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  text-decoration: none;
}

.footer-social:hover::before {
  opacity: 1;
}

.footer-social svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  position: relative;
  z-index: 1;
}

.footer-assoc-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(201, 74, 26, 0.1);
  border: 1px solid rgba(201, 74, 26, 0.2);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
  flex-shrink: 0;
  align-self: flex-start;
  color: inherit;
}

.footer-assoc-highlight:hover {
  background: rgba(201, 74, 26, 0.18);
  border-color: rgba(201, 74, 26, 0.4);
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}

.fah-icon {
  font-size: 1.3rem;
}

.fah-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
}

.fah-url {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--or3);
  display: block;
  margin-top: 2px;
}

.fah-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 3px;
  display: block;
}

.fah-arrow {
  color: var(--or3);
  font-size: 1rem;
  transition: transform 0.2s;
}

.footer-assoc-highlight:hover .fah-arrow {
  transform: translateX(4px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  padding: 52px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201, 74, 26, 0.2);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--or3);
  transition: width 0.25s;
  flex-shrink: 0;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 4px;
  text-decoration: none;
}

.footer-col a:hover::before {
  width: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--or3);
  fill: none;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--or3);
  text-decoration: none;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.footer-badge {
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom {
  padding: 22px 80px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.footer-bottom-left {
  justify-self: start;
}

.footer-bottom-center {
  justify-self: center;
}

.footer-bottom-right {
  justify-self: end;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.04em;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}

.footer-sep {
  color: rgba(255, 255, 255, 0.1);
}

.dev-credit {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  padding: 7px 14px 7px 10px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  color: inherit;
}

.dev-credit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201, 74, 26, 0.08), rgba(92, 45, 122, 0.08));
  opacity: 0;
  transition: opacity 0.3s;
}

.dev-credit:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
  color: inherit;
  text-decoration: none;
}

.dev-credit:hover::before {
  opacity: 1;
}

.dev-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.dev-name-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.dev-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or1), var(--pu2));
  flex-shrink: 0;
}

.dev-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--or3), var(--pu3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
}

.dev-arrow {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
  transition: color 0.2s, transform 0.2s;
}

.dev-credit:hover .dev-arrow {
  color: var(--or3);
  transform: translate(2px, -1px);
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  max-width: 44px;
  min-height: 44px;
  max-height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or1), var(--pu1));
  border: none;
  cursor: pointer;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(201, 74, 26, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 500;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(201, 74, 26, 0.5);
}

.back-to-top svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

/* ==========================================================================
   Home / Front Page (según home-content.html)
   ========================================================================== */

.home .site-content {
  padding-top: 0;
  max-width: none;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--or1);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--or1);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-heading strong {
  font-weight: 700;
  color: var(--pu1);
}

.section-heading em {
  font-style: italic;
  color: var(--or1);
}

.section-sub {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 600px;
}

/* Scroll reveal: elementos entran al hacer scroll */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.up {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.up {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.up {
  opacity: 1;
  transform: translateX(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* Hero */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--bar-h) + var(--nav-h));
}

.hero-visual {
  display: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url('fondo_arteterapia.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 8, 10, 0.52);
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orb-drift 12s ease-in-out infinite alternate;
}

.hero-bg-orb.o1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(201, 74, 26, 0.12), transparent 70%);
}

.hero-bg-orb.o2 {
  width: 500px;
  height: 500px;
  bottom: -80px;
  left: -80px;
  background: radial-gradient(circle, rgba(92, 45, 122, 0.1), transparent 70%);
  animation-delay: -5s;
}

.hero-bg-orb.o3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(240, 125, 58, 0.07), transparent 70%);
  animation-delay: -9s;
}

@keyframes orb-drift {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.15) translate(30px, -20px); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 80px 48px 80px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.hero-content .hero-title,
.hero-content .hero-desc,
.hero-content .hero-ctas,
.hero-content .hero-stats,
.hero-content .hero-eyebrow,
.hero-content .scroll-indicator {
  width: 100%;
  max-width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 36px;
  height: 1.5px;
  background: rgba(255,255,255,0.95);
}

.hero-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 28px;
  width: 100%;
  max-width: 100%;
  text-align: center;
  text-shadow: 0 12px 46px rgba(0, 0, 0, 0.55);
}

.hero-title strong {
  font-weight: 700;
  color: var(--pu1);
  display: block;
  text-shadow: 0 12px 46px rgba(0, 0, 0, 0.55);
}

.hero-title em {
  font-style: italic;
  color: var(--or1);
  text-shadow: 0 12px 46px rgba(0, 0, 0, 0.55);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.62);
  max-width: none;
  margin-bottom: 44px;
  font-weight: 300;
  text-align: center;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 36px;
  background: var(--or1);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
}

.btn-primary svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.2s;
}

.btn-primary:hover {
  background: var(--or2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 74, 26, 0.35);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 36px;
  background: transparent;
  color: var(--pu1);
  border: 1.5px solid var(--pu3);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--pu1);
  color: #fff;
  border-color: var(--pu1);
  transform: translateY(-2px);
  text-decoration: none;
}

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--or1);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1a0808 0%, #2a0e1a 50%, #160830 100%);
}

.hero-visual-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 45% 45%, rgba(201, 74, 26, 0.3) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(92, 45, 122, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-isotipo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  width: 70%;
  max-width: 420px;
  filter: drop-shadow(0 24px 70px rgba(240, 125, 58, 0.45));
}

.hero-visual-label {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

.scroll-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 36px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--or1), transparent);
}

/* Trust bar */
.trust-bar {
  background: var(--cream2);
  border-top: 1px solid rgba(201, 74, 26, 0.1);
  border-bottom: 1px solid rgba(201, 74, 26, 0.1);
  padding: 22px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 36px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-item:last-child {
  border-right: none;
}

.trust-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* About */
.about-section {
  padding: 110px 0;
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a0808, #160830);
  aspect-ratio: 4/5;
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 40%, rgba(201, 74, 26, 0.3), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(92, 45, 122, 0.2), transparent 45%);
}

.about-isotipo-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  opacity: 0.9;
  filter: drop-shadow(0 20px 50px rgba(240, 125, 58, 0.4));
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: #fff;
  border-radius: 4px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-left: 3px solid var(--or1);
}

.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--or1);
  line-height: 1;
}

.about-badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.about-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}

.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.mv-card {
  background: var(--cream);
  border: 1px solid rgba(201, 74, 26, 0.1);
  border-top: 3px solid var(--or1);
  padding: 24px 22px;
  border-radius: 3px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.mv-card:last-child {
  border-top-color: var(--pu2);
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.mv-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pu1);
  margin-bottom: 8px;
}

.mv-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--muted);
}

/* Art section */
.art-section {
  background: linear-gradient(155deg, #160810 0%, #2a0e18 55%, #1a0630 100%);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.art-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 10%, rgba(201, 74, 26, 0.15), transparent 50%),
              radial-gradient(ellipse at 10% 90%, rgba(92, 45, 122, 0.12), transparent 45%);
  pointer-events: none;
}

.art-intro, .team-intro, .testimonials-intro, .videos-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Art section: fondo oscuro → label y títulos claros */
.art-intro .section-label {
  justify-content: center;
  color: var(--or4);
}

.art-intro .section-label::before {
  background: var(--or4);
}

.art-intro .section-heading {
  color: #fff;
}

.art-intro .section-heading strong {
  color: var(--or4);
}

/* Team, Testimonios, Videos: fondo claro → label y títulos oscuros */
.team-intro .section-label,
.testimonials-intro .section-label,
.videos-intro .section-label {
  justify-content: center;
  color: var(--or1);
}

.team-intro .section-label::before,
.testimonials-intro .section-label::before,
.videos-intro .section-label::before {
  background: var(--or1);
}

.team-intro .section-heading,
.testimonials-intro .section-heading,
.videos-intro .section-heading {
  color: var(--dark);
}

.team-intro .section-heading strong,
.testimonials-intro .section-heading strong,
.videos-intro .section-heading strong {
  color: var(--pu1);
}

.art-intro p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.art-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.pillar {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 36px 28px;
  text-align: center;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-6px);
  border-color: rgba(201, 74, 26, 0.3);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 74, 26, 0.15);
  border: 1px solid rgba(201, 74, 26, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  transition: background 0.3s;
}

.pillar:hover .pillar-icon {
  background: rgba(201, 74, 26, 0.28);
}

.pillar h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--or4);
  margin-bottom: 12px;
}

.pillar p {
  font-size: 0.87rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

.art-fact {
  margin-top: 48px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.art-fact-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 40px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.art-fact-text strong {
  color: var(--or4);
}

/* Programs */
.programs-section {
  padding: 110px 0;
  background: var(--cream);
}

.programs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
  flex-wrap: wrap;
}

.btn-see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--or1);
  color: var(--or1);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
}

.btn-see-all:hover {
  background: var(--or1);
  color: #fff;
  text-decoration: none;
}

.btn-see-all svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.2s;
}

.btn-see-all:hover svg {
  transform: translateX(4px);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.program-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.program-card-top {
  padding: 36px 28px 28px;
  position: relative;
  overflow: hidden;
}

.program-card-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.program-card.p1 .program-card-top::before {
  background: linear-gradient(90deg, var(--or1), var(--or3));
}

.program-card.p2 .program-card-top::before {
  background: linear-gradient(90deg, var(--pu1), var(--pu3));
}

.program-card.p3 .program-card-top::before {
  background: linear-gradient(90deg, var(--or3), var(--pu2));
}

.program-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.program-card.p1 .program-icon {
  background: rgba(201, 74, 26, 0.08);
}

.program-card.p2 .program-icon {
  background: rgba(74, 31, 107, 0.08);
}

.program-card.p3 .program-icon {
  background: rgba(240, 125, 58, 0.08);
}

.program-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.program-card.p1 .program-tag { color: var(--or1); }
.program-card.p2 .program-tag { color: var(--pu2); }
.program-card.p3 .program-tag { color: var(--or2); }

.program-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.program-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  color: var(--muted);
}

.program-card-bottom {
  padding: 0 28px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.program-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.program-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.77rem;
  color: var(--muted2);
}

.program-meta-item svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0.6;
}

.program-link {
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: transparent;
  padding: 0;
  font-family: var(--font-main);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--or1);
  transition: gap 0.2s;
  text-decoration: none;
}

.program-link:hover {
  gap: 10px;
  text-decoration: none;
  color: var(--or1);
}

.program-link svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.modal-box-programa {
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
}

.programs-featured {
  margin-top: 24px;
  background: linear-gradient(135deg, var(--pu1) 0%, #2a0e40 50%, #1a0a28 100%);
  border-radius: 4px;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.programs-featured::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.pf-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or4);
  margin-bottom: 12px;
}

.pf-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}

.pf-title strong {
  font-weight: 700;
  color: var(--or4);
}

.pf-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.pf-cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.btn-pf {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 32px;
  background: #fff;
  color: var(--pu1);
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
  white-space: nowrap;
}

.btn-pf:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-pf svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.pf-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.06em;
}

/* Team */
.team-section {
  padding: 110px 0;
  background: #fff;
}

.team-intro .section-sub,
.videos-intro .section-sub {
  margin: 0 auto;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.team-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(92, 45, 122, 0.12);
}

.team-card-header {
  padding: 40px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.team-card.t1 .team-card-header {
  background: linear-gradient(145deg, var(--or1), var(--pu2));
}

.team-card.t2 .team-card-header {
  background: linear-gradient(145deg, var(--pu1), var(--or2));
}

.team-card.t3 .team-card-header {
  background: linear-gradient(145deg, var(--or2), var(--pu2));
}

.team-avatar {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.team-role {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
}

.team-card-body {
  padding: 24px;
}

.team-card-body p {
  font-size: 0.87rem;
  line-height: 1.8;
  color: var(--muted);
}

/* Testimonials */
.testimonials-section {
  padding: 110px 0;
  background: var(--cream2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.testi-card {
  background: #fff;
  border-radius: 4px;
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.testi-quote {
  font-size: 3rem;
  font-family: var(--font-heading);
  color: var(--or4);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.6;
}

.testi-text {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or1), var(--pu2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-author-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
}

.testi-author-role {
  font-size: 0.75rem;
  color: var(--muted2);
  margin-top: 2px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-top: 16px;
  color: var(--or2);
  font-size: 0.85rem;
}

/* Videos */
.videos-section {
  padding: 110px 0;
  background: #fff;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.video-card {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(201, 74, 26, 0.15);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 9/16;
  border: none;
  display: block;
}

.video-label {
  padding: 14px 18px;
  background: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Rigor */
.rigor-section {
  padding: 110px 0;
  background: var(--pu1);
  position: relative;
  overflow: hidden;
}

.rigor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 0%, rgba(240, 125, 58, 0.1), transparent 50%),
              radial-gradient(ellipse at 10% 100%, rgba(255, 255, 255, 0.04), transparent 40%);
  pointer-events: none;
}

.rigor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.rigor-text .section-label {
  color: var(--or4);
}

.rigor-text .section-label::before {
  background: var(--or4);
}

.rigor-text .section-heading {
  color: #fff;
}

.rigor-text .section-heading strong {
  color: var(--or4);
}

.rigor-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 18px;
}

.rigor-text blockquote {
  padding: 20px 24px;
  border-left: 3px solid var(--or3);
  background: rgba(255, 255, 255, 0.05);
  margin-top: 24px;
  border-radius: 0 3px 3px 0;
}

.rigor-text blockquote p {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 36px 28px;
  border-radius: 4px;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--or3);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* CTA */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(150deg, var(--or1) 0%, #a8330e 45%, var(--pu1) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(92, 45, 122, 0.2);
}

.cta-inner {
  position: relative;
  z-index: 2;
}

.cta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-title strong {
  font-weight: 700;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 48px;
  max-width: 560px;
  margin-inline: auto;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 18px 44px;
  background: #fff;
  color: var(--or1);
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
}

.btn-cta-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 18px 44px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  text-decoration: none;
}

/* Sección Noticias (home) */
.noticias-section {
  padding: 100px 0;
  background: var(--cream2);
}

.noticias-header {
  margin-bottom: 48px;
}

.noticias-heading {
  color: var(--dark);
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.noticias-card {
  margin: 0;
}

.noticias-card-link {
  display: block;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.noticias-card-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.noticias-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--cream2);
}

.noticias-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.noticias-card-link:hover .noticias-card-img img {
  transform: scale(1.05);
}

.noticias-card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream2) 0%, #e8ddd3 100%);
}

.noticias-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--or1);
  padding: 4px 12px;
  border-radius: 2px;
}

.noticias-card-body {
  padding: 22px 24px 26px;
}

.noticias-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin: 0 0 10px;
  transition: color 0.2s;
}

.noticias-card-link:hover .noticias-card-title {
  color: var(--or1);
}

.noticias-card-excerpt {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 16px;
}

.noticias-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--muted2);
}

.noticias-card-read {
  color: var(--or1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.noticias-footer {
  margin-top: 48px;
  text-align: center;
}

.btn-noticias-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--or1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-noticias-all:hover {
  background: var(--or2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 74, 26, 0.35);
}

.btn-noticias-all svg {
  width: 16px;
  height: 16px;
}

/* Modal postulación */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: #fff;
  max-width: 480px;
  width: 90%;
  padding: 48px;
  border-radius: 4px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  transition: color 0.2s;
}

.modal-close:hover {
  color: var(--or1);
}

.modal-box h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--pu1);
  margin-bottom: 6px;
}

.modal-box > p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  font-family: var(--font-main);
  font-size: 0.94rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--or1);
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--or1);
  color: #fff;
  border: none;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  margin-top: 8px;
  transition: background 0.2s;
  transition: background 0.2s;
}

.form-submit:hover {
  background: var(--or2);
}

/* Modal postula: formulario ampliado */
.modal-box-postula {
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-postula-desc {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 24px;
}
.modal-form-postula .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal-form-postula .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
  font-family: var(--font-main);
  font-size: 0.94rem;
  color: var(--dark);
  resize: vertical;
  min-height: 88px;
  outline: none;
  transition: border-color 0.2s;
}
.modal-form-postula .form-group textarea:focus {
  border-color: var(--or1);
}
.modal-form-postula .form-group-checkbox {
  margin-bottom: 20px;
}
.modal-form-postula .label-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
  cursor: pointer;
}
.modal-form-postula .label-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--or1);
}
.modal-form-postula .label-checkbox a {
  color: var(--or1);
  text-decoration: underline;
}
.modal-form-postula .label-checkbox a:hover {
  color: var(--or2);
}
@media (max-width: 560px) {
  .modal-form-postula .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* Botón flotante Postula */
.floating-postula {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  max-width: 180px;
  background: var(--or1);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 74, 26, 0.4);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.floating-postula:hover {
  background: var(--or2);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201, 74, 26, 0.45);
}
.floating-postula svg {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px;
  max-height: 20px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
}
.floating-postula-text {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .floating-postula {
    bottom: 80px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.78rem;
  }
  .floating-postula-text {
    display: none;
  }
  .floating-postula svg {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================================================
   Comentarios
   ========================================================================== */

.comments-area {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment-body {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

/* ==========================================================================
   Utilidades y responsive
   ========================================================================== */

.alignleft { float: left; margin-right: 1rem; }
.alignright { float: right; margin-left: 1rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }

@media (min-width: 768px) {
  .content-area.has-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .btn-assoc .assoc-label {
    display: none;
  }
  .topbar-email .email-text {
    display: none;
  }
  .container {
    padding: 0 32px;
  }
  .trust-bar-inner {
    padding: 0 32px;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 55vw;
  }
  .hero-content {
    padding: 60px 40px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .about-badge {
    right: -10px;
  }
  .art-pillars {
    grid-template-columns: 1fr 1fr;
  }
  .programs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .programs-featured {
    grid-template-columns: 1fr;
  }
  .pf-cta {
    align-items: flex-start;
  }
  .team-grid,
  .testimonials-grid,
  .videos-grid,
  .noticias-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rigor-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .footer-main {
    padding: 60px 40px 0;
  }
  .footer-bottom {
    padding: 20px 40px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .prefooter {
    padding: 48px 40px;
  }
  .prefooter-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .newsletter-form {
    max-width: 100%;
  }
  .newsletter-input {
    flex: 1;
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 0 20px;
  }
  .navbar {
    padding: 0 20px;
  }
  .topbar-sep {
    display: none;
  }
  .topbar-email {
    display: none;
  }
  .container {
    padding: 0 22px;
  }
  .trust-bar-inner {
    padding: 0 22px;
    flex-direction: column;
    gap: 0;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    width: 100%;
    justify-content: center;
  }
  .trust-item:last-child {
    border-bottom: none;
  }
  .hero-content {
    padding: 48px 24px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .art-pillars,
  .programs-grid,
  .team-grid,
  .testimonials-grid,
  .videos-grid,
  .noticias-grid {
    grid-template-columns: 1fr;
  }
  .mv-cards {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .programs-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .modal-box {
    padding: 32px 24px;
  }
  .footer-main {
    padding: 48px 24px 0;
  }
  .footer-bottom {
    padding: 18px 24px;
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom-left,
  .footer-bottom-center,
  .footer-bottom-right {
    justify-self: center;
  }

  .footer-legal {
    justify-content: center;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand-row {
    flex-direction: column;
  }
  .prefooter {
    padding: 40px 24px;
  }
  .newsletter-form {
    flex-direction: column;
    border-radius: 4px;
  }
  .newsletter-input {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
  .dev-label {
    display: none;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}

/* ==========================================================================
   Página de Contacto (template-contacto.php)
   ========================================================================== */

/* Página de contacto a ancho completo (sin caja) */
.page-template-template-contacto .site-content {
  max-width: none;
  width: 100%;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Página Nosotros a ancho completo */
.page-template-template-nosotros .site-content {
  max-width: none;
  width: 100%;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

/* Hero contacto */
.contact-hero {
  background: linear-gradient(150deg, #160810 0%, #2a0e1a 55%, #1a0630 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 74, 26, 0.18), transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(92, 45, 122, 0.14), transparent 50%);
  pointer-events: none;
}
.hero-deco {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.hero-deco.d-1 { width: 500px; height: 500px; top: -150px; right: -100px; }
.hero-deco.d-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; border-color: rgba(201, 74, 26, 0.08); }
.hero-deco.d-3 { width: 180px; height: 180px; top: 30%; right: 18%; border-color: rgba(166, 100, 200, 0.1); }
.contact-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-hero .eyebrow-line { width: 32px; height: 1.5px; background: var(--or1); }
.contact-hero .eyebrow-text { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--or1); }
.contact-hero .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 300;
  margin-top: 28px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 22px;
}
.contact-hero .hero-title strong { font-weight: 700; display: block; }
.contact-hero .hero-title em { font-style: italic; color: var(--or3); }
.hero-desc {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-quick-links { display: flex; flex-wrap: wrap; gap: 12px; }
.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  transition: all 0.25s;
}
.quick-link:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(201, 74, 26, 0.4); color: var(--or3); }
.quick-link svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
.hero-cards { display: flex; flex-direction: column; gap: 16px; }
.hc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
}
.hc-card:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(201, 74, 26, 0.3); transform: translateX(6px); }
.hc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.hc-card.c-email .hc-icon { background: rgba(201, 74, 26, 0.15); border: 1px solid rgba(201, 74, 26, 0.25); }
.hc-card.c-whatsapp .hc-icon { background: rgba(37, 211, 102, 0.12); border: 1px solid rgba(37, 211, 102, 0.2); }
.hc-card.c-ig .hc-icon { background: rgba(193, 53, 132, 0.1); border: 1px solid rgba(193, 53, 132, 0.18); }
.hc-card.c-assoc .hc-icon { background: rgba(92, 45, 122, 0.15); border: 1px solid rgba(92, 45, 122, 0.25); }
.hc-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.3); }
.hc-value { font-size: 0.95rem; font-weight: 500; color: rgba(255, 255, 255, 0.8); margin-top: 3px; }
.hc-sub { font-size: 0.75rem; color: rgba(255, 255, 255, 0.35); margin-top: 2px; }
.hc-arrow { margin-left: auto; color: rgba(255, 255, 255, 0.2); font-size: 1rem; transition: all 0.25s; flex-shrink: 0; }
.hc-card:hover .hc-arrow { color: var(--or3); transform: translateX(4px); }

/* Form section */
.form-section { padding: 100px 0; background: #fff; }
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.section-heading--contacto { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.info-block { margin-bottom: 40px; }
.info-block-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--pu1);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block-title::after { content: ''; flex: 1; height: 1px; background: rgba(201, 74, 26, 0.15); }
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.info-item:last-child { border-bottom: none; }
.info-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(201, 74, 26, 0.07);
  border: 1px solid rgba(201, 74, 26, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-item-icon svg { width: 15px; height: 15px; fill: none; stroke: var(--or1); stroke-width: 2; }
.info-item-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted2); }
.info-item-value { font-size: 0.9rem; color: var(--dark); margin-top: 3px; font-weight: 500; }
.info-item-value a { color: var(--or1); transition: color 0.2s; }
.info-item-value a:hover { color: var(--or2); }
.info-item-sub { font-size: 0.78rem; color: var(--muted2); margin-top: 2px; }
.info-socials { margin-top: 32px; }
.info-socials-title { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted2); margin-bottom: 14px; }
.socials-row { display: flex; gap: 10px; flex-wrap: wrap; }
.soc-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 3px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.25s;
  text-decoration: none;
}
.soc-btn svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }
.soc-btn:hover { transform: translateY(-2px); }
.soc-btn.ig:hover { background: #E1306C; border-color: #E1306C; color: #fff; }
.soc-btn.fb:hover { background: #1877F2; border-color: #1877F2; color: #fff; }
.soc-btn.yt:hover { background: #FF0000; border-color: #FF0000; color: #fff; }
.soc-btn.tk:hover { background: #010101; border-color: #010101; color: #fff; }
.soc-btn.li:hover { background: #0A66C2; border-color: #0A66C2; color: #fff; }
.assoc-cta {
  margin-top: 32px;
  background: linear-gradient(135deg, rgba(201, 74, 26, 0.08), rgba(74, 31, 107, 0.08));
  border: 1px solid rgba(201, 74, 26, 0.18);
  border-radius: 4px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s;
  color: inherit;
}
.assoc-cta:hover { background: linear-gradient(135deg, rgba(201, 74, 26, 0.14), rgba(74, 31, 107, 0.14)); transform: translateY(-2px); }
.assoc-cta-icon { font-size: 1.6rem; flex-shrink: 0; }
.assoc-cta-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted2); }
.assoc-cta-url { font-size: 0.95rem; font-weight: 700; color: var(--or1); margin-top: 3px; }
.assoc-cta-sub { font-size: 0.75rem; color: var(--muted2); margin-top: 2px; }
.assoc-cta-arrow { margin-left: auto; color: var(--or1); font-size: 1.1rem; transition: transform 0.2s; flex-shrink: 0; }
.assoc-cta:hover .assoc-cta-arrow { transform: translateX(4px); }

.form-wrap {
  background: var(--cream);
  border: 1px solid rgba(201, 74, 26, 0.1);
  border-top: 3px solid var(--or1);
  border-radius: 4px;
  padding: 44px 48px;
  position: relative;
  overflow: hidden;
}
.form-wrap::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 74, 26, 0.05), transparent 70%);
  pointer-events: none;
}
.form-heading { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 600; color: var(--pu1); margin-bottom: 6px; }
.form-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 36px; line-height: 1.6; }
.form-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.form-tab {
  flex: 1;
  padding: 11px 8px;
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.form-tab:last-child { border-right: none; }
.form-tab.active { background: var(--or1); color: #fff; }
.form-tab:not(.active):hover { background: rgba(201, 74, 26, 0.07); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.form-grid .full { grid-column: 1 / -1; }
.contact-form .fg { display: flex; flex-direction: column; gap: 7px; }
.contact-form .fg label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.contact-form .fg input,
.contact-form .fg select,
.contact-form .fg textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  font-family: var(--font-main);
  font-size: 0.93rem;
  color: var(--dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.contact-form .fg input::placeholder,
.contact-form .fg textarea::placeholder { color: rgba(107, 91, 82, 0.4); }
.contact-form .fg input:focus,
.contact-form .fg select:focus,
.contact-form .fg textarea:focus {
  border-color: var(--or1);
  box-shadow: 0 0 0 3px rgba(201, 74, 26, 0.1);
}
.contact-form .fg textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.check-group-label { margin-bottom: 12px; display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.check-group { display: flex; flex-direction: column; gap: 10px; }
.check-item { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.check-item input[type="checkbox"] { display: none; }
.check-box {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.18);
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.check-item input[type="checkbox"]:checked + .check-box { background: var(--or1); border-color: var(--or1); }
.check-item input[type="checkbox"]:checked + .check-box::after { content: '✓'; font-size: 0.7rem; color: #fff; font-weight: 700; }
.check-item-label { font-size: 0.85rem; color: var(--muted); }
.privacy-note { font-size: 0.74rem; color: var(--muted2); line-height: 1.6; margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(0, 0, 0, 0.07); }
.privacy-note a { color: var(--or1); text-decoration: underline; }
.form-submit-row { display: flex; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.contact-form .btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: var(--or1);
  color: #fff;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
  flex-shrink: 0;
  cursor: pointer;
}
.contact-form .btn-submit svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.5; transition: transform 0.2s; }
.contact-form .btn-submit:hover { background: var(--or2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 74, 26, 0.35); }
.contact-form .btn-submit:hover svg { transform: translateX(4px); }
.submit-note { font-size: 0.75rem; color: var(--muted2); }
.form-success { display: none; text-align: center; padding: 48px 24px; }
.form-success.show { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.success-title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 600; color: var(--pu1); margin-bottom: 8px; }
.success-text { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* Location section */
.location-section { padding: 100px 0; background: var(--cream2); }
.location-header { margin-bottom: 52px; }
.location-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 60px; align-items: start; }
.loc-card {
  background: #fff;
  border-radius: 4px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.loc-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); }
.loc-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pu1);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.loc-tag { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; background: var(--or1); color: #fff; padding: 2px 8px; border-radius: 2px; }
.loc-tag.online { background: var(--pu2); }
.loc-detail { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.loc-detail:last-child { margin-bottom: 0; }
.loc-detail svg { width: 14px; height: 14px; flex-shrink: 0; stroke: var(--or1); fill: none; stroke-width: 2; margin-top: 2px; }
.loc-detail span { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.loc-detail a { color: var(--or1); transition: color 0.2s; }
.loc-detail a:hover { color: var(--or2); }
.map-frame {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}
.map-frame iframe { width: 100%; height: 460px; border: none; display: block; filter: saturate(0.85) contrast(1.05); }
.map-overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 3px;
  padding: 12px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 3px solid var(--or1);
}
.mob-name { font-size: 0.82rem; font-weight: 700; color: var(--dark); }
.mob-addr { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

/* FAQ section */
.faq-section { padding: 100px 0; background: #fff; }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.faq-intro-text { font-size: 0.95rem; line-height: 1.8; color: var(--muted); margin-top: 16px; }
.faq-intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 13px 24px;
  background: var(--or1);
  color: #fff;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
  text-decoration: none;
}
.faq-intro-cta:hover { background: var(--or2); transform: translateY(-2px); color: #fff; }
.faq-intro-cta svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid rgba(0, 0, 0, 0.07); }
.faq-item:first-child { border-top: 1px solid rgba(0, 0, 0, 0.07); }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-trigger:hover { color: var(--or1); }
.faq-trigger.open { color: var(--or1); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid rgba(201, 74, 26, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.faq-trigger.open .faq-icon { background: var(--or1); border-color: var(--or1); transform: rotate(45deg); }
.faq-icon svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.faq-trigger:not(.open) .faq-icon svg { stroke: var(--or1); }
.faq-trigger.open .faq-icon svg { stroke: #fff; }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s; }
.faq-body.open { max-height: 300px; padding-bottom: 22px; }
.faq-body p { font-size: 0.88rem; line-height: 1.85; color: var(--muted); }
.faq-body a { color: var(--or1); text-decoration: underline; }

/* Bottom CTA contacto */
.bottom-cta--contacto {
  padding: 100px 0;
  background: linear-gradient(150deg, var(--or1) 0%, #a8330e 45%, var(--pu1) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bottom-cta--contacto::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.bottom-cta--contacto::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(92, 45, 122, 0.2);
}
.bottom-cta-inner { position: relative; z-index: 2; }
.bc-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.5); margin-bottom: 14px; }
.bc-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 16px; }
.bc-title strong { font-weight: 700; }
.bc-sub { font-size: 1rem; color: rgba(255, 255, 255, 0.65); margin-bottom: 44px; max-width: 520px; margin-inline: auto; line-height: 1.7; }
.bc-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-bc-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 17px 42px;
  background: #fff;
  color: var(--or1);
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
  text-decoration: none;
  cursor: pointer;
}
.btn-bc-white:hover { background: var(--cream); transform: translateY(-2px); color: var(--or1); }
.btn-bc-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 17px 42px;
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
  text-decoration: none;
}
.btn-bc-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; }

/* Contacto responsive */
@media (max-width: 1024px) {
  .contact-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-layout { grid-template-columns: 1fr; gap: 52px; }
  .location-grid { grid-template-columns: 1fr; }
  .map-frame iframe { height: 360px; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .contact-hero { padding: 60px 0; }
  .hero-cards { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .form-tabs { flex-wrap: wrap; }
  .form-tab { font-size: 0.65rem; padding: 10px 6px; }
  .socials-row { gap: 8px; }
  .soc-btn span { display: none; }
  .soc-btn { padding: 9px 12px; }
}

/* ==========================================================================
   Single post (entrada) – single-post.html
   ========================================================================== */

.single .site-content {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.post-hero {
  background: linear-gradient(150deg, #160810 0%, #2a0e1a 55%, #1a0630 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 20%, rgba(201, 74, 26, 0.18), transparent 50%),
    radial-gradient(ellipse at 10% 85%, rgba(92, 45, 122, 0.14), transparent 50%);
  pointer-events: none;
}
.post-hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.post-hero-deco.c1 { width: 460px; height: 460px; top: -140px; right: -90px; }
.post-hero-deco.c2 { width: 260px; height: 260px; bottom: -70px; left: -50px; border-color: rgba(201, 74, 26, 0.07); }
.post-hero-inner { position: relative; z-index: 2; max-width: 860px; }
.post-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
}
.post-breadcrumb a { color: rgba(255, 255, 255, 0.4); transition: color 0.2s; }
.post-breadcrumb a:hover { color: var(--or3); }
.post-breadcrumb .sep { color: rgba(255, 255, 255, 0.2); }
.post-breadcrumb .current { color: var(--or3); }
.post-category-tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.post-category-tag .eyebrow-line { width: 28px; height: 1.5px; background: var(--or1); }
.post-category-tag span { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--or1); }
.post-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
}
.post-hero-title em { font-style: italic; color: var(--or3); }
.post-hero-excerpt { font-size: 1.05rem; line-height: 1.8; color: rgba(255, 255, 255, 0.55); font-weight: 300; max-width: 700px; margin-bottom: 36px; }
.post-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.post-meta-author { display: flex; align-items: center; gap: 12px; }
.post-meta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or1), var(--pu2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  overflow: hidden;
}
.post-meta-avatar img { width: 100%; height: 100%; object-fit: cover; }
.post-meta-author-name { font-size: 0.82rem; font-weight: 600; color: rgba(255, 255, 255, 0.85); }
.post-meta-author-role { font-size: 0.7rem; color: rgba(255, 255, 255, 0.4); margin-top: 2px; }
.post-meta-divider { width: 1px; height: 32px; background: rgba(255, 255, 255, 0.1); }
.post-meta-item { display: flex; align-items: center; gap: 7px; font-size: 0.75rem; color: rgba(255, 255, 255, 0.45); }
.post-meta-item svg { width: 14px; height: 14px; opacity: 0.6; flex-shrink: 0; }

.post-featured-image {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  position: relative;
}
.post-featured-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-featured-image.placeholder {
  height: 420px;
  background: linear-gradient(135deg, var(--cream2) 0%, #e8ddd3 100%);
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  padding: 72px 0 96px;
  align-items: start;
}

.post-body {
  font-size: 1.06rem;
  line-height: 1.9;
  color: #3a2a22;
  font-weight: 300;
}
.post-body p { margin-bottom: 1.6em; }
.post-body p:last-child { margin-bottom: 0; }
.post-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin: 2.2em 0 0.7em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--cream2);
}
.post-body h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--dark);
  margin: 1.8em 0 0.5em;
}
.post-body h4 { font-size: 1rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); margin: 1.6em 0 0.4em; }
.post-body a { color: var(--or1); border-bottom: 1px solid rgba(201, 74, 26, 0.3); transition: border-color 0.2s; }
.post-body a:hover { border-color: var(--or1); }
.post-body strong { font-weight: 600; color: var(--dark); }
.post-body em { font-style: italic; color: var(--muted); }
.post-body ul, .post-body ol { margin: 0 0 1.6em 1.4em; color: var(--muted); }
.post-body li { margin-bottom: 0.5em; line-height: 1.75; }
.post-body blockquote {
  margin: 2.4em 0;
  padding: 28px 36px 28px 44px;
  border-left: 3px solid var(--or1);
  background: linear-gradient(100deg, rgba(201, 74, 26, 0.04) 0%, transparent 100%);
  position: relative;
}
.post-body blockquote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--or1);
  opacity: 0.25;
  position: absolute;
  top: 10px;
  left: 10px;
}
.post-body blockquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.55;
  margin: 0;
}
.post-body blockquote cite {
  display: block;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted2);
  margin-top: 14px;
}
.post-body .wp-block-image { margin: 2.4em 0; }
.post-body .wp-block-image img { border-radius: 4px; }
.post-body .wp-block-image figcaption { font-size: 0.76rem; color: var(--muted2); text-align: center; margin-top: 10px; font-style: italic; }
.post-callout {
  background: linear-gradient(120deg, rgba(74, 31, 107, 0.06) 0%, rgba(201, 74, 26, 0.04) 100%);
  border: 1px solid rgba(74, 31, 107, 0.12);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 2.4em 0;
}
.post-callout-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pu2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-callout-label::before { content: ''; width: 20px; height: 1.5px; background: var(--pu2); }
.post-callout p { font-size: 0.97rem; color: var(--muted); margin: 0; line-height: 1.75; }

.post-tags {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--cream2);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.post-tags-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted2); }
.post-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--cream2);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.post-tag:hover { background: var(--or1); color: #fff; }

.post-share { margin-top: 32px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.post-share-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted2); }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid var(--cream2);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.share-btn svg { width: 14px; height: 14px; }
.share-btn:hover { border-color: var(--or1); color: var(--or1); }
.share-btn.wa:hover { border-color: #25d366; color: #25d366; }
.share-btn.li:hover { border-color: #0a66c2; color: #0a66c2; }

.author-bio {
  margin-top: 60px;
  padding: 36px;
  background: var(--dark2);
  border-radius: 6px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
.author-bio::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 90% 0%, rgba(201, 74, 26, 0.1), transparent 55%);
  pointer-events: none;
}
.author-bio-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--or1), var(--pu2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.author-bio-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-bio-content { position: relative; z-index: 1; }
.author-bio-role { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--or3); margin-bottom: 4px; }
.author-bio-name { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
.author-bio-text { font-size: 0.9rem; line-height: 1.75; color: rgba(255, 255, 255, 0.5); font-weight: 300; }

.post-navigation {
  border-top: 1px solid var(--cream2);
  padding-top: 48px;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 26px;
  border: 1px solid var(--cream2);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.post-nav-item:hover { border-color: var(--or3); box-shadow: 0 4px 20px rgba(201, 74, 26, 0.08); }
.post-nav-item.next { text-align: right; align-items: flex-end; }
.post-nav-direction {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or1);
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-nav-direction svg { width: 13px; height: 13px; flex-shrink: 0; }
.post-nav-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 600; color: var(--dark); line-height: 1.3; }
.post-nav-category { font-size: 0.68rem; color: var(--muted2); letter-spacing: 0.06em; }

.post-comments { margin-top: 72px; border-top: 1px solid var(--cream2); padding-top: 52px; }
.comments-heading { font-family: var(--font-heading); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 600; color: var(--dark); margin-bottom: 36px; display: flex; align-items: center; gap: 14px; }
.comments-count { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; background: var(--or1); color: #fff; padding: 4px 12px; border-radius: 20px; }
.comment-item {
  display: flex;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--cream2);
}
.comment-item:last-child { border-bottom: none; margin-bottom: 0; }
.comment-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--cream2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
}
.comment-body {}
.comment-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.comment-author-name { font-size: 0.86rem; font-weight: 600; color: var(--dark); }
.comment-author-name a { color: inherit; text-decoration: none; }
.comment-date { font-size: 0.72rem; color: var(--muted2); }
.comment-text { font-size: 0.95rem; line-height: 1.75; color: var(--muted); }
.comment-reply {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or1);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
  text-decoration: none;
}
.comment-reply:hover { color: var(--or2); }
.comment-form {
  margin-top: 52px;
  padding: 40px;
  background: var(--cream2);
  border-radius: 6px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.comment-form-title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; color: var(--dark); margin-bottom: 28px; }
.post-comments .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.post-comments .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.post-comments .form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.post-comments .form-group input,
.post-comments .form-group textarea {
  padding: 13px 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s;
}
.post-comments .form-group input:focus,
.post-comments .form-group textarea:focus { outline: none; border-color: var(--or2); }
.post-comments .form-group textarea { resize: vertical; min-height: 140px; }
.post-comments .btn-comment {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 36px;
  background: var(--or1);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
}
.post-comments .btn-comment svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.post-comments .btn-comment:hover { background: var(--or2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 74, 26, 0.35); }
#commentform { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; width: 100%; max-width: 100%; box-sizing: border-box; }
#commentform .comment-form-comment { grid-column: 1 / -1; width: 100%; max-width: 100%; box-sizing: border-box; }
#commentform .form-submit { grid-column: 1 / -1; margin-top: 20px; margin-bottom: 0; }
#commentform .comment-form-author,
#commentform .comment-form-email { margin-bottom: 16px; }
#commentform .comment-form-url { grid-column: 1 / -1; margin-bottom: 16px; }
#commentform .comment-form-author label,
#commentform .comment-form-email label,
#commentform .comment-form-url label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea { padding: 13px 16px; background: #fff; border: 1px solid rgba(0,0,0,0.1); border-radius: 3px; font-family: var(--font-main); font-size: 0.95rem; width: 100%; max-width: 100%; box-sizing: border-box; }
#commentform .form-group-comment { width: 100%; max-width: 100%; }
#commentform .form-group-comment textarea { width: 100%; max-width: 100%; min-height: 160px; display: block; }
#commentform .comment-field-label-below { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); display: block; margin-top: 8px; margin-bottom: 0; }
#commentform .form-submit { margin-top: 20px; margin-bottom: 0; }

.post-sidebar { display: flex; flex-direction: column; gap: 40px; }
.sidebar-widget {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 28px 28px 30px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}
.sidebar-widget-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or1);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream2);
}
.sidebar-widget-title::before { content: ''; width: 22px; height: 2px; background: var(--or1); flex-shrink: 0; }
.sidebar-cta {
  background: linear-gradient(145deg, var(--dark2), #2a0e1a);
  border: none;
  position: relative;
  overflow: hidden;
}
.sidebar-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 0%, rgba(201, 74, 26, 0.2), transparent 55%);
  pointer-events: none;
}
.sidebar-cta .sidebar-widget-title { border-color: rgba(255, 255, 255, 0.08); color: var(--or3); }
.sidebar-cta .sidebar-widget-title::before { background-color: var(--or3); }
.sidebar-cta-heading { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 600; line-height: 1.2; color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.sidebar-cta-text { font-size: 0.88rem; line-height: 1.7; color: rgba(255, 255, 255, 0.5); margin-bottom: 22px; position: relative; z-index: 1; }
.btn-sidebar-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--or1);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.btn-sidebar-cta:hover { background: var(--or2); box-shadow: 0 6px 20px rgba(201, 74, 26, 0.4); color: #fff; }
.recent-post-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--cream2);
  text-decoration: none;
  color: inherit;
}
.recent-post-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.recent-post-thumb { width: 64px; height: 64px; flex-shrink: 0; border-radius: 3px; background: var(--cream2); overflow: hidden; }
.recent-post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.recent-post-title { font-size: 0.88rem; font-weight: 500; color: var(--dark); line-height: 1.4; margin-bottom: 5px; transition: color 0.2s; }
.recent-post-item:hover .recent-post-title { color: var(--or1); }
.recent-post-date { font-size: 0.7rem; color: var(--muted2); }
.cat-list { list-style: none; margin: 0; padding: 0; }
.cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream2);
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}
.cat-list li:last-child { border-bottom: none; }
.cat-list li a { color: inherit; text-decoration: none; }
.cat-list li:hover { color: var(--or1); }
.cat-count { font-size: 0.7rem; font-weight: 700; background: var(--cream2); color: var(--muted); padding: 3px 9px; border-radius: 20px; }
.tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tags-cloud a {
  padding: 6px 14px;
  background: var(--cream2);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}
.tags-cloud a:hover { background: var(--or1); color: #fff; }
.newsletter-widget-desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; line-height: 1.6; }
.newsletter-sidebar-form .form-group { margin-bottom: 12px; }
.newsletter-sidebar-form input { width: 100%; padding: 12px 14px; border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 3px; font-family: var(--font-main); font-size: 0.92rem; }
.newsletter-sidebar-form input:focus { outline: none; border-color: var(--or2); }
.btn-newsletter { width: 100%; padding: 13px; background: var(--pu1); color: #fff; border: none; cursor: pointer; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; border-radius: 3px; transition: background 0.25s; }
.btn-newsletter:hover { background: var(--pu2); }
.newsletter-note { font-size: 0.7rem; color: var(--muted2); text-align: center; margin-top: 8px; }

.related-posts { padding: 80px 0 96px; background: var(--cream2); }
.related-posts-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.related-posts-title { font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; color: var(--dark); }
.related-posts-title strong { color: var(--pu1); font-weight: 700; }
.related-posts-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or1);
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.related-posts-link:hover { border-color: var(--or1); }
.related-posts-link svg { width: 13px; height: 13px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.related-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
}
.related-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1); }
.related-card-img { height: 200px; overflow: hidden; position: relative; background: var(--cream2); }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.related-card:hover .related-card-img img { transform: scale(1.05); }
.related-card-category {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--or1);
  padding: 4px 12px;
  border-radius: 2px;
}
.related-card-body { padding: 22px 24px 26px; }
.related-card-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; color: var(--dark); line-height: 1.3; margin-bottom: 10px; transition: color 0.2s; }
.related-card:hover .related-card-title { color: var(--or1); }
.related-card-excerpt { font-size: 0.86rem; line-height: 1.65; color: var(--muted); margin-bottom: 16px; }
.related-card-meta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.7rem; color: var(--muted2); }
.related-card-read { color: var(--or1); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.68rem; display: flex; align-items: center; gap: 4px; }

@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; gap: 52px; }
  .post-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .post-hero { padding: 56px 0 48px; }
  .post-hero-title { font-size: 2rem; }
  .post-meta { gap: 16px; }
  .post-meta-divider { display: none; }
  .post-layout { padding: 48px 0 64px; }
  .post-comments .form-row { grid-template-columns: 1fr; }
  .post-navigation { grid-template-columns: 1fr; }
  .post-sidebar { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .related-posts-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .author-bio { flex-direction: column; }
  .comment-form { padding: 24px; }
}

/* ══════════════════════════════════════════════
   BLOG PAGE (index / listado de entradas)
══════════════════════════════════════════════ */

.blog-hero {
  background: linear-gradient(150deg, #160810 0%, #2a0e1a 55%, #1a0630 100%);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 15%, rgba(201, 74, 26, 0.18), transparent 50%),
    radial-gradient(ellipse at 10% 85%, rgba(92, 45, 122, 0.14), transparent 50%);
  pointer-events: none;
}
.blog-hero-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.blog-hero-deco.c1 { width: 500px; height: 500px; top: -160px; right: -100px; }
.blog-hero-deco.c2 { width: 280px; height: 280px; bottom: -80px; left: -60px; border-color: rgba(201, 74, 26, 0.07); }
.blog-hero-deco.c3 { width: 160px; height: 160px; top: 35%; right: 22%; border-color: rgba(166, 100, 200, 0.09); }
.blog-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.blog-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.eyebrow-line { width: 30px; height: 1.5px; background: var(--or1); }
.eyebrow-text { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--or1); }
.blog-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  margin-top: 28px;
  margin-bottom: 20px;
}
.blog-hero-title strong { font-weight: 700; display: block; }
.blog-hero-title em { font-style: italic; color: var(--or3); }
.blog-hero-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 44px;
}
.blog-hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}
.blog-hero-stat {
  padding: 16px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.blog-hero-stat:last-child { border-right: none; }
.blog-hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--or3);
  line-height: 1;
}
.blog-hero-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 4px;
}

.category-bar {
  background: #fff;
  border-bottom: 1px solid var(--cream2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}
.category-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 4px;
}
.category-bar-inner::-webkit-scrollbar { display: none; }
.cat-filter {
  flex-shrink: 0;
  padding: 18px 24px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted2);
  border: none;
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.cat-filter:hover { color: var(--or1); }
.cat-filter.active { color: var(--or1); border-bottom-color: var(--or1); }
.cat-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream2);
  color: var(--muted2);
  font-size: 0.6rem;
  font-weight: 700;
  margin-left: 6px;
  transition: background 0.2s, color 0.2s;
}
.cat-filter.active .cat-filter-count,
.cat-filter:hover .cat-filter-count { background: rgba(201, 74, 26, 0.12); color: var(--or1); }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  padding: 64px 0 96px;
  align-items: start;
}

.post-featured-link {
  text-decoration: none;
  color: inherit;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.post-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 44px;
  transition: box-shadow 0.3s;
}
.post-featured:hover { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1); }
.post-featured-img {
  position: relative;
  overflow: hidden;
  background: var(--cream2);
  min-height: 380px;
}
.post-featured-img img,
.post-featured-img .post-featured-placeholder {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}
.post-featured-placeholder { background: linear-gradient(135deg, var(--cream2), var(--muted2)); }
.post-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 8px;
}
.badge-featured {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--or1);
  padding: 5px 12px;
  border-radius: 2px;
}
.badge-cat {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 2px;
}
.post-featured-body {
  padding: 44px 40px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-featured-date {
  font-size: 0.7rem;
  color: var(--muted2);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.post-featured-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
  transition: color 0.2s;
}
.post-featured:hover .post-featured-title { color: var(--or1); }
.post-featured-excerpt {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 28px;
}
.post-featured-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--cream2);
}
.post-featured-author { display: flex; align-items: center; gap: 10px; }
.mini-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--or1), var(--pu2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.64rem;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
}
.mini-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.mini-author-name { font-size: 0.8rem; font-weight: 600; color: var(--dark); }
.mini-author-role { font-size: 0.67rem; color: var(--muted2); margin-top: 1px; }
.post-featured-read {
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or1);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.post-featured-read svg { width: 13px; height: 13px; flex-shrink: 0; }
.post-featured:hover .post-featured-read { gap: 9px; }

.posts-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cream2);
}
.posts-count { font-size: 0.82rem; color: var(--muted); }
.posts-count strong { color: var(--dark); font-weight: 600; }

.posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.post-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.post-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(0, 0, 0, 0.09); }
.post-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--cream2);
}
.post-card-img img,
.post-card-img .post-card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.post-card-placeholder { min-height: 210px; background: linear-gradient(135deg, var(--cream2), var(--muted2)); display: block; }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--or1);
  padding: 4px 11px;
  border-radius: 2px;
}
.post-card-cat.purple { background: var(--pu1); }
.post-card-cat.gradient { background: linear-gradient(90deg, var(--or2), var(--pu2)); }
.post-card-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card-date { font-size: 0.68rem; color: var(--muted2); margin-bottom: 10px; }
.post-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.post-card:hover .post-card-title { color: var(--or1); }
.post-card-excerpt {
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
  margin-bottom: 20px;
}
.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--cream2);
}
.post-card-author { display: flex; align-items: center; gap: 8px; }
.post-card-author-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or1), var(--pu2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.post-card-author-av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.post-card-author-name { font-size: 0.76rem; font-weight: 500; color: var(--muted); }
.post-card-read-time {
  font-size: 0.68rem;
  color: var(--muted2);
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-card-read-time svg { width: 12px; height: 12px; opacity: 0.6; flex-shrink: 0; }

.nl-banner {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--pu1) 0%, #2a0e40 50%, #1a0a28 100%);
  border-radius: 6px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.nl-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}
.nl-banner::after {
  content: '';
  position: absolute;
  left: 30%;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(201, 74, 26, 0.08);
  pointer-events: none;
}
.nl-banner-text { position: relative; z-index: 1; }
.nl-banner-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or4);
  margin-bottom: 8px;
}
.nl-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.nl-banner-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.nl-banner-input {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-right: none;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: #fff;
  width: 260px;
}
.nl-banner-input::placeholder { color: rgba(255, 255, 255, 0.4); }
.nl-banner-input:focus { outline: none; background: rgba(255, 255, 255, 0.15); }
.nl-banner-btn {
  padding: 14px 26px;
  background: var(--or1);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s;
}
.nl-banner-btn:hover { background: var(--or2); }

.blog-main .navigation-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--cream2);
}
.blog-main .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.blog-main .page-numbers {
  min-width: 42px;
  height: 42px;
  padding: 0 8px;
  border: 1.5px solid var(--cream2);
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  background: #fff;
  transition: all 0.2s;
}
.blog-main .page-numbers:hover { border-color: var(--or1); color: var(--or1); }
.blog-main .page-numbers.current { background: var(--or1); border-color: var(--or1); color: #fff; font-weight: 700; }
.blog-main .page-numbers.next .screen-reader-text,
.blog-main .page-numbers.prev .screen-reader-text { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }
.blog-main .page-numbers.next svg,
.blog-main .page-numbers.prev svg { width: 16px; height: 16px; }

.blog-sidebar { display: flex; flex-direction: column; gap: 36px; position: sticky; top: 72px; }
.blog-sidebar .sidebar-widget {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  padding: 26px 26px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}
.blog-sidebar .sidebar-widget-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--or1);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--cream2);
}
.blog-sidebar .sidebar-widget-title::before { content: ''; width: 20px; height: 2px; background: var(--or1); flex-shrink: 0; }
.blog-sidebar .sidebar-search {
  display: flex;
  gap: 0;
  border: 1.5px solid var(--cream2);
  border-radius: 3px;
  overflow: hidden;
}
.blog-sidebar .sidebar-search input {
  flex: 1;
  padding: 11px 14px;
  border: none;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--dark);
  background: #fff;
}
.blog-sidebar .sidebar-search input:focus { outline: none; }
.blog-sidebar .sidebar-search button {
  padding: 0 16px;
  background: var(--or1);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: background 0.2s;
}
.blog-sidebar .sidebar-search button:hover { background: var(--or2); }
.blog-sidebar .sidebar-search button svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.2; }
.blog-sidebar .sidebar-cta-widget {
  background: linear-gradient(145deg, var(--dark2), #2a0e1a);
  border: none;
  position: relative;
  overflow: hidden;
}
.blog-sidebar .sidebar-cta-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 85% 0%, rgba(201, 74, 26, 0.2), transparent 55%);
  pointer-events: none;
}
.blog-sidebar .sidebar-cta-widget .sidebar-widget-title { border-color: rgba(255, 255, 255, 0.08); color: var(--or3); }
.blog-sidebar .sidebar-cta-widget .sidebar-widget-title::before { background: var(--or3); }
.blog-sidebar .sidebar-cta-heading {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.blog-sidebar .sidebar-cta-text {
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.blog-sidebar .btn-sidebar-cta {
  display: block;
  text-align: center;
  padding: 13px;
  background: var(--or1);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
  text-decoration: none;
}
.blog-sidebar .btn-sidebar-cta:hover { background: var(--or2); box-shadow: 0 6px 20px rgba(201, 74, 26, 0.4); color: #fff; }
.blog-sidebar .cat-list li { cursor: default; }
.blog-sidebar .popular-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--cream2);
  text-decoration: none;
  color: inherit;
}
.blog-sidebar .popular-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.blog-sidebar .popular-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--cream2);
  line-height: 1;
  flex-shrink: 0;
  min-width: 24px;
  transition: color 0.2s;
}
.blog-sidebar .popular-item:hover .popular-num { color: var(--or4); }
.blog-sidebar .popular-title {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color 0.2s;
}
.blog-sidebar .popular-item:hover .popular-title { color: var(--or1); }
.blog-sidebar .popular-date { font-size: 0.68rem; color: var(--muted2); }
.blog-sidebar .tags-cloud a {
  padding: 5px 13px;
  background: var(--cream2);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}
.blog-sidebar .tags-cloud a:hover { background: var(--or1); color: #fff; }
.blog-sidebar .nl-widget-text { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.blog-sidebar .nl-input {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 10px;
  border: 1.5px solid var(--cream2);
  border-radius: 3px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--dark);
  transition: border-color 0.2s;
}
.blog-sidebar .nl-input:focus { outline: none; border-color: var(--or2); }
.blog-sidebar .btn-nl {
  width: 100%;
  padding: 12px;
  background: var(--pu1);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.25s;
}
.blog-sidebar .btn-nl:hover { background: var(--pu2); }
.blog-sidebar .nl-note { font-size: 0.68rem; color: var(--muted2); text-align: center; margin-top: 7px; }
.blog-sidebar .social-list { display: flex; flex-direction: column; gap: 10px; }
.blog-sidebar .social-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 3px;
  border: 1px solid var(--cream2);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.blog-sidebar .social-item:hover { border-color: var(--or1); }
.blog-sidebar .social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-sidebar .social-icon svg { width: 14px; height: 14px; fill: #fff; }
.blog-sidebar .social-item.ig .social-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.blog-sidebar .social-item.fb .social-icon { background: #1877f2; }
.blog-sidebar .social-item.yt .social-icon { background: #ff0000; }
.blog-sidebar .social-name { font-size: 0.82rem; font-weight: 500; color: var(--dark); }
.blog-sidebar .social-handle { font-size: 0.7rem; color: var(--muted2); }
.blog-sidebar .social-follow {
  margin-left: auto;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or1);
}

.btt,
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 44px;
  height: 44px;
  min-width: 44px;
  max-width: 44px;
  min-height: 44px;
  max-height: 44px;
  border-radius: 50%;
  background: var(--or1);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201, 74, 26, 0.4);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
}
.btt.show,
.btt.visible,
.back-to-top.show,
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.btt:hover,
.back-to-top:hover { background: var(--or2); }
.btt svg,
.back-to-top svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.blog .site-content {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

@media (max-width: 1100px) {
  .blog-layout { grid-template-columns: 1fr; gap: 52px; }
  .blog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 860px) {
  .post-featured { grid-template-columns: 1fr; }
  .post-featured-img { min-height: 260px; }
  .post-featured-img img,
  .post-featured-img .post-featured-placeholder { min-height: 260px; }
  .nl-banner { flex-direction: column; align-items: flex-start; }
  .nl-banner-input { width: 200px; }
}
@media (max-width: 768px) {
  .blog-hero { padding: 60px 0 52px; }
  .blog-hero-title { font-size: 2.2rem; }
  .blog-hero-stats { flex-wrap: wrap; }
  .blog-hero-stat { padding: 12px 20px; }
  .posts-grid { grid-template-columns: 1fr; }
  .posts-toolbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .nl-banner { padding: 28px 24px; }
  .nl-banner-form { flex-direction: column; width: 100%; }
  .nl-banner-input { width: 100%; border-right: 1px solid rgba(255, 255, 255, 0.15); border-bottom: none; }
}
