/* ============================================
   ROBERTO GOTI - COACH EJECUTIVO
   Sitio Web - Estilos Globales
   ============================================ */

/* === VARIABLES === */
:root {
  --dark-primary: #0d0d1a;
  --dark-secondary: #1a1a2e;
  --dark-tertiary: #16213e;
  --dark-surface: #1e1e36;
  --dark-card: #222240;
  --gold-primary: #c9a84c;
  --gold-light: #e8d5a0;
  --gold-dark: #a08535;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --text-light: #f0e6d2;
  --text-muted: #9a96a8;
  --text-dark: #2a2a3a;
  --white: #ffffff;
  --white-10: rgba(255, 255, 255, 0.1);
  --white-05: rgba(255, 255, 255, 0.05);
  --gold-10: rgba(201, 168, 76, 0.1);
  --gold-20: rgba(201, 168, 76, 0.2);
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

/* === RESET === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-primary);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* === UTILIDADES === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section--light {
  background-color: var(--white);
  color: var(--text-dark);
}

.text-gold {
  color: var(--gold-primary);
}

.text-muted {
  color: var(--text-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === TIPOGRAFÍA === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* === BOTONES === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold-primary);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: var(--gold-primary);
}

.btn:hover {
  background: var(--gold-primary);
  color: var(--dark-primary);
}

.btn--filled {
  background: var(--gold-primary);
  color: var(--dark-primary);
}

.btn--filled:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--white {
  border-color: var(--white);
  color: var(--white);
}

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

.btn--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.8125rem;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
}

.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.navbar__logo-tagline {
  font-size: 0.6875rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 0.25rem 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-primary);
  transition: width var(--transition);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--gold-primary);
}

.navbar__link.active::after,
.navbar__link:hover::after {
  width: 100%;
}

.navbar__cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(13, 13, 26, 0.82) 0%,
    rgba(13, 13, 26, 0.5) 45%,
    rgba(13, 13, 26, 0.25) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 8rem 2rem 6rem;
}

.hero__text {
  max-width: 560px;
}

.hero__line {
  width: 60px;
  height: 3px;
  background: var(--gold-primary);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero__title em {
  color: var(--gold-primary);
  font-style: normal;
  font-weight: 400;
}

.hero__description {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero__description strong {
  color: var(--gold-primary);
  font-weight: 600;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__right {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 2rem;
}

.hero__quote {
  max-width: 320px;
  text-align: left;
  border-left: 3px solid var(--gold-primary);
  padding-left: 1.5rem;
}

.hero__quote-mark {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  color: var(--gold-primary);
  line-height: 0.8;
  margin-bottom: 0.75rem;
}

.hero__quote-text {
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
}

.hero__quote-text strong {
  color: var(--gold-primary);
  font-weight: 700;
}

/* === PILARES === */
.pillars {
  background: var(--dark-secondary);
  padding: 3rem 0;
  border-top: 1px solid var(--white-10);
  border-bottom: 1px solid var(--white-10);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar {
  text-align: center;
  padding: 1.5rem 1rem;
}

.pillar__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-20);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 1.5rem;
}

.pillar__title {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.pillar__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === SECCIÓN DE SERVICIOS PREVIEW === */
.services-preview {
  position: relative;
  padding: 5rem 0;
}

.services-preview__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.services-preview__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.15) blur(3px);
}

.services-preview__content {
  position: relative;
  z-index: 1;
}

.section__header {
  margin-bottom: 3rem;
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.section__title--dark {
  color: var(--text-dark);
}

.section__line {
  width: 40px;
  height: 3px;
  background: var(--gold-primary);
  margin-top: 1rem;
}

/* === CARDS DE SERVICIO === */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: rgba(30, 30, 54, 0.8);
  border: 1px solid var(--white-10);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--gold-20);
  transform: translateY(-4px);
}

.service-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: all var(--transition);
}

.service-card:hover .service-card__image img {
  filter: brightness(0.8);
  transform: scale(1.05);
}

.service-card__icon {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 48px;
  height: 48px;
  background: var(--gold-primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-primary);
  font-size: 1.25rem;
}

.service-card__body {
  padding: 1.5rem;
}

.service-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.service-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card__link:hover {
  gap: 0.75rem;
}

/* === ARTÍCULOS RECIENTES === */
.articles-preview {
  padding: 5rem 0;
  background: var(--dark-primary);
}

.articles__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.articles__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-card {
  display: flex;
  gap: 1.25rem;
  padding: 1rem;
  border-radius: 4px;
  transition: background var(--transition);
}

.article-card:hover {
  background: var(--white-05);
}

.article-card__image {
  flex: 0 0 120px;
  height: 90px;
  border-radius: 4px;
  overflow: hidden;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__body {
  flex: 1;
}

.article-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--white);
  line-height: 1.3;
}

.article-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.article-card__link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.articles__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.articles__more {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.articles__more:hover {
  color: var(--gold-primary);
}

/* === CATÁLOGO SIDEBAR === */
.catalog-sidebar {
  text-align: center;
}

.catalog-card {
  background: var(--dark-surface);
  border: 1px solid var(--white-10);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  position: sticky;
  top: 6rem;
}

.catalog-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-20);
  border-radius: 50%;
  color: var(--gold-primary);
  font-size: 1.75rem;
}

.catalog-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.catalog-card__subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.catalog-card__book {
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 4px;
  padding: 1.5rem 1rem;
  margin-bottom: 1.5rem;
}

.catalog-card__book-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.catalog-card__book-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.catalog-card__book-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-top: 0.75rem;
}

.catalog-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.catalog-card__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--dark-secondary);
  padding: 3.5rem 0;
  border-top: 1px solid var(--white-10);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta__icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold-20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  font-size: 1.5rem;
}

.cta__text {
  flex: 1;
}

.cta__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.cta__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* === SOBRE MÍ === */
.about {
  padding: 5rem 0;
}

.about__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about__photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.about__photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.15);
}

.about__social-links {
  display: flex;
  gap: 1rem;
}

.about__social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.about__social-links a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.about__name {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.about__role {
  color: var(--gold-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.about__text {
  color: var(--text-light);
  line-height: 1.85;
  font-size: 1rem;
}

.about__text p {
  margin-bottom: 1.25rem;
}

.about__text .about__highlight {
  color: var(--gold-primary);
  font-weight: 600;
}

.about__book {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--dark-secondary);
  border: 1px solid var(--white-10);
  border-left: 3px solid var(--gold-primary);
  border-radius: 4px;
}

.about__book-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
}

.about__book-info h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.about__book-info p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.about__formation {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-10);
}

.about__formation h3 {
  font-size: 1.125rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.about__formation-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.about__formation-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.about__formation-item i {
  color: var(--gold-primary);
  font-size: 0.75rem;
}

/* === FOOTER === */
.footer {
  background: var(--dark-primary);
  border-top: 1px solid var(--white-10);
  padding: 3rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__brand-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 1rem;
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer__link:hover {
  color: var(--gold-primary);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
}

.footer__bottom {
  border-top: 1px solid var(--white-10);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* === PAGE HERO (para páginas internas) === */
.page-hero {
  position: relative;
  padding: 10rem 0 4rem;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) blur(4px);
}

.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(13, 13, 26, 0.8) 0%,
    rgba(13, 13, 26, 0.95) 100%
  );
  z-index: 1;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--white);
}

.page-hero__desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* === BLOG === */
.blog-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.blog-filter {
  padding: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1px solid var(--white-10);
  border-radius: 2px;
  cursor: pointer;
  color: var(--text-muted);
  background: transparent;
  transition: all var(--transition);
}

.blog-filter:hover,
.blog-filter.active {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: var(--gold-10);
}

.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  background: var(--dark-surface);
  border: 1px solid var(--white-10);
  border-radius: 4px;
}

.blog-featured__image {
  border-radius: 4px;
  overflow: hidden;
  height: 280px;
}

.blog-featured__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0;
}

.blog-featured__category {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 0.75rem;
}

.blog-featured__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.blog-featured__excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--dark-surface);
  border: 1px solid var(--white-10);
  border-radius: 4px;
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  border-color: var(--gold-20);
  transform: translateY(-4px);
}

.blog-card__image {
  height: 180px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: 1.25rem;
}

.blog-card__category {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.blog-card__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* === FAQ / PREGUNTAS === */
.faq-section {
  margin-bottom: 3rem;
}

.faq-section__title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-primary);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--white-10);
}

.faq-item {
  border-bottom: 1px solid var(--white-05);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  transition: color var(--transition);
}

.faq-item__question:hover {
  color: var(--gold-primary);
}

.faq-item__icon {
  font-size: 1.25rem;
  color: var(--gold-primary);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 500px;
}

.faq-item__answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* === FORMULARIO DE CONTACTO === */
.contact-form {
  background: var(--dark-surface);
  border: 1px solid var(--white-10);
  border-radius: 4px;
  padding: 2rem;
}

.contact-form__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-form__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--dark-primary);
  border: 1px solid var(--white-10);
  border-radius: 2px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold-primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.5;
}

/* === SERVICIOS (página completa) === */
.service-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--white-05);
}

.service-full:nth-child(even) {
  direction: rtl;
}

.service-full:nth-child(even) > * {
  direction: ltr;
}

.service-full__image {
  border-radius: 4px;
  overflow: hidden;
  height: 350px;
}

.service-full__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.service-full__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.service-full__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* === ANIMACIONES === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__buttons {
    justify-content: center;
  }

  .hero__right {
    justify-content: center;
    padding-right: 0;
  }

  .pillars__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .articles__layout {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta__inner {
    flex-direction: column;
    text-align: center;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-full {
    grid-template-columns: 1fr;
  }

  .service-full:nth-child(even) {
    direction: ltr;
  }

  .navbar__menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--dark-secondary);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.25rem;
    border-left: 1px solid var(--white-10);
    z-index: 999;
  }

  .navbar__menu.open {
    display: flex;
  }

  .navbar__toggle {
    display: flex;
    z-index: 1000;
  }

  .about__layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about__formation-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .pillars__grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 1.75rem;
  }
}

/* === ADMIN PANEL === */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-primary);
  border-bottom: 1px solid var(--white-10);
}

.