/* ===== ESTILOS COMPARTIDOS DEL BLOG - Estudio Doble A ===== */

:root {
  --navy: #0c1f3d;
  --navy-deep: #081428;
  --navy-soft: #14305b;
  --gold: #c9a14a;
  --gold-soft: #d8b667;
  --cream: #f6f1e7;
  --bone: #fbf8f1;
  --ink: #1a1a1a;
  --muted: rgba(246, 241, 231, 0.65);
  --line: rgba(201, 161, 74, 0.35);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV (igual que la landing) */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(251, 248, 241, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(12, 31, 61, 0.06);
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  text-decoration: none;
}
.logo-mark svg { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* HEADER del blog */
.blog-header {
  padding: 10rem 3rem 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--bone) 100%);
  border-bottom: 1px solid var(--line);
}
.blog-header .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.blog-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 1rem;
}
.blog-header h1 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.blog-header .subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(12, 31, 61, 0.7);
  max-width: 600px;
  margin: 0 auto;
}
.blog-header .divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  position: relative;
}
.blog-header .divider::after {
  content: '';
  position: absolute;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
  top: -2.5px; left: 50%;
  margin-left: -3px;
}

/* CONTENEDOR */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 3rem;
}

/* FILTROS */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}
.filters-label {
  width: 100%;
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 999px;
}
.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}

/* NOTA DESTACADA */
.featured-post {
  background: var(--navy);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 4rem;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid var(--line);
}
.featured-post::before {
  content: 'DESTACADA';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  z-index: 2;
}
.featured-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(12, 31, 61, 0.2);
}
.featured-image {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.featured-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-soft) 100%);
  position: relative;
}
.featured-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(201, 161, 74, 0.15) 0%, transparent 50%),
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(201, 161, 74, 0.05) 30px, rgba(201, 161, 74, 0.05) 31px);
}
.featured-image-placeholder svg {
  width: 80px;
  height: 80px;
  color: var(--gold);
  opacity: 0.4;
  position: relative;
}
.featured-content {
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-meta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.featured-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.featured-content .excerpt {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
}
.featured-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  width: fit-content;
}
.featured-content .read-more svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
}
.featured-post:hover .read-more svg { transform: translateX(4px); }

/* GRID DE NOTAS */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.post-card {
  background: var(--cream);
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(12, 31, 61, 0.1);
  border-color: var(--gold);
}
.post-image {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  height: 200px;
  position: relative;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  position: relative;
}
.post-image-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(201, 161, 74, 0.12) 0%, transparent 50%);
}
.post-image-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  opacity: 0.5;
  position: relative;
}
.post-content {
  padding: 2rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-category {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.post-content h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}
.post-content .excerpt {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.55);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: auto;
}
.post-meta .author { font-weight: 500; color: var(--navy); }
.post-meta .date { font-style: italic; }

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: rgba(26, 26, 26, 0.5);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  display: none;
}
.empty-state.visible { display: block; }

/* FOOTER */
footer {
  background: var(--navy-deep);
  color: var(--muted);
  padding: 3rem;
  text-align: center;
  border-top: 1px solid rgba(201, 161, 74, 0.15);
}
.footer-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-mark svg { width: 28px; height: 28px; }
footer p { font-size: 0.8rem; letter-spacing: 0.1em; }
footer a { color: var(--gold); text-decoration: none; }

/* WHATSAPP FLOATING */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; fill: white; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ===== PÁGINA DE NOTA INDIVIDUAL ===== */
.article-header {
  padding: 10rem 3rem 3rem;
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}
.article-back:hover { color: var(--gold); }
.article-back svg {
  width: 16px; height: 16px;
  transition: transform 0.3s ease;
}
.article-back:hover svg { transform: translateX(-4px); }
.article-category {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}
.article-header h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}
.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: rgba(12, 31, 61, 0.6);
  flex-wrap: wrap;
}
.article-meta .author { color: var(--navy); font-weight: 500; }
.article-meta .dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.article-meta .date { font-style: italic; }
.article-meta .reading-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-style: italic;
}

/* HERO IMAGE de la nota */
.article-hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 3rem;
  margin-top: -1px;
}
.article-hero-img {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.article-hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.article-hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-soft) 100%);
  position: relative;
}
.article-hero-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(201, 161, 74, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201, 161, 74, 0.1) 0%, transparent 50%);
}
.article-hero-placeholder svg {
  width: 120px;
  height: 120px;
  color: var(--gold);
  opacity: 0.4;
  position: relative;
}

/* CONTENIDO de la nota */
.article-body {
  max-width: 760px;
  margin: 4rem auto;
  padding: 0 3rem;
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--ink);
}
.article-body p { margin-bottom: 1.5rem; color: rgba(26, 26, 26, 0.85); }
.article-body p:first-of-type::first-letter {
  font-family: var(--serif);
  font-size: 4.5rem;
  float: left;
  line-height: 0.9;
  margin: 0.2rem 0.8rem 0 0;
  color: var(--gold);
  font-weight: 600;
}
.article-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--navy);
  margin: 3rem 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
  margin: 2rem 0 0.8rem;
}
.article-body ul, .article-body ol {
  margin: 1.5rem 0 1.5rem 1.5rem;
  color: rgba(26, 26, 26, 0.85);
}
.article-body li { margin-bottom: 0.6rem; padding-left: 0.5rem; }
.article-body ul li::marker { color: var(--gold); }
.article-body ol li::marker { color: var(--gold); font-weight: 600; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 0 1rem 2rem;
  margin: 2rem 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--navy);
  background: var(--cream);
  padding: 1.5rem 2rem;
}
.article-body strong { color: var(--navy); font-weight: 600; }
.article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.3s ease;
}
.article-body a:hover { text-decoration-color: var(--gold); }
.article-body hr {
  border: none;
  margin: 3rem 0;
  text-align: center;
  position: relative;
  height: 20px;
}
.article-body hr::after {
  content: '◆ ◆ ◆';
  color: var(--gold);
  letter-spacing: 0.5rem;
  font-size: 0.7rem;
}

/* TAGS de la nota */
.article-tags {
  max-width: 760px;
  margin: 4rem auto 2rem;
  padding: 2rem 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.tags-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-right: 0.5rem;
}
.article-tag {
  padding: 0.4rem 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--navy);
  text-decoration: none;
  transition: all 0.3s ease;
}
.article-tag:hover {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}

/* CTA al final de la nota */
.article-cta {
  background: var(--navy);
  color: var(--cream);
  padding: 4rem 3rem;
  text-align: center;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 161, 74, 0.1) 0%, transparent 60%);
}
.article-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.article-cta .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.article-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 500;
}
.article-cta h2 em { color: var(--gold); font-style: italic; font-weight: 400; }
.article-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.article-cta-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  background: var(--gold);
  color: var(--navy-deep);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s ease;
}
.article-cta-btn:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 161, 74, 0.3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .blog-header { padding: 7rem 1.5rem 3rem; }
  .container { padding: 3rem 1.5rem; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-image { min-height: 250px; }
  .featured-content { padding: 2.5rem 1.5rem; }
  .posts-grid { grid-template-columns: 1fr; gap: 2rem; }
  .article-header { padding: 7rem 1.5rem 2rem; }
  .article-hero { padding: 0 1rem; }
  .article-hero-img { height: 280px; }
  .article-body { padding: 0 1.5rem; margin: 2.5rem auto; font-size: 1rem; }
  .article-body p:first-of-type::first-letter { font-size: 3.5rem; }
  .article-tags { padding: 2rem 1.5rem; margin: 3rem 1.5rem 0; }
  .article-cta { padding: 3rem 1.5rem; }
  footer { padding: 2rem 1.5rem; }
  .wa-float { width: 56px; height: 56px; bottom: 1.5rem; right: 1.5rem; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ============================================
   ESTILOS PARA POST INDIVIDUAL (post.html)
   ============================================ */

.post {
  max-width: 760px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b6857;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.2s;
}
.back-link:hover { color: #c9a14a; }
.back-link svg { width: 16px; height: 16px; }

.post-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e8e4d6;
}

.post-category-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a14a;
  margin-bottom: 1rem;
  font-weight: 500;
}

.post-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: #0c1f3d;
  margin: 0 0 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.post-info {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #6b6857;
}
.post-separator { color: #c9a14a; opacity: 0.6; }
.post-author { font-weight: 500; color: #0c1f3d; }

.post-cta {
  margin-top: 4rem;
  padding: 3rem 2.5rem;
  background: #f6f1e7;
  border-radius: 8px;
  text-align: center;
}
.post-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: #0c1f3d;
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.post-cta p {
  font-family: 'Inter', sans-serif;
  color: #6b6857;
  margin: 0 0 1.75rem;
  font-size: 1rem;
}
.post-cta .cta-button {
  display: inline-block;
  background: #0c1f3d;
  color: #f6f1e7;
  padding: 0.85rem 2rem;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  font-weight: 500;
}
.post-cta .cta-button:hover {
  background: #c9a14a;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .post { margin: 2rem auto; }
  .post-cta { padding: 2rem 1.5rem; }
}

/* ============================================
   BOTONES DE COMPARTIR (en post individual)
   ============================================ */

.share-section {
  margin: 3rem 0 0;
  padding: 2rem 0;
  border-top: 1px solid #e8e4d6;
}

.share-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c9a14a;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: #fafafa;
  border: 1px solid #e8e4d6;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #0c1f3d;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}
.share-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.share-btn:hover {
  border-color: #c9a14a;
  background: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(12, 31, 61, 0.08);
}
.share-whatsapp:hover { color: #25D366; }
.share-twitter:hover { color: #000; }
.share-linkedin:hover { color: #0A66C2; }
.share-copy:hover { color: #c9a14a; }

@media (max-width: 600px) {
  .share-btn span {
    display: none;
  }
  .share-btn {
    padding: 0.7rem;
    width: 42px;
    height: 42px;
    justify-content: center;
  }
  .share-copy span {
    display: inline;
    font-size: 0;
  }
  .share-buttons { gap: 0.5rem; }
}

/* ============================================
   MENÚ HAMBURGUESA MOBILE
   ============================================ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 200;
  position: relative;
  width: 44px; height: 44px;
  margin-right: -0.5rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #0c1f3d;
  margin: 6px auto;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: #f6f1e7;
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: #f6f1e7;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #061226 0%, #0c1f3d 100%);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 320px;
}
.mobile-menu a {
  display: block;
  color: #f6f1e7;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 1rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(201, 161, 74, 0.15);
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile-menu a:hover, .mobile-menu a:focus {
  color: #c9a14a;
  background: rgba(201, 161, 74, 0.05);
}
.mobile-menu li:last-child a { border-bottom: none; }
.mobile-menu .menu-mark {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #f6f1e7;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.mobile-menu .menu-mark svg { width: 32px; height: 32px; }
body.menu-open { overflow: hidden; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: flex; }
}

/* Logo en footer (PNG) */
.footer-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 161, 74, 0.3);
}
.footer-tagline {
  color: #f6f1e7;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
