  /* ─── TEXAS TANGO (fuente local) ─── */
  @font-face {
    font-family: 'Texas Tango';
    src: url('fonts/TexasTango.otf') format('opentype'),
         url('fonts/TexasTango.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --gold: #C9952A;
    --gold-light: #E8B84B;
    --gold-pale: #F5DFA0;
    --brown-dark: #1A0F05;
    --brown-mid: #2D1A0A;
    --brown: #4A2E12;
    --brown-light: #7A4F28;
    --cream: #F7EDD8;
    --cream-dark: #EDD9A3;
    --red-fire: #C0392B;
    --red-dark: #8B1A1A;
    --text-light: #F0E6CC;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background-color: var(--brown-dark);
    color: var(--cream);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--brown-dark); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 1000;
    background: linear-gradient(to bottom, rgba(26,15,5,0.98), rgba(26,15,5,0.85));
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(201,149,42,0.3);
    padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 70px;
  }

  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }

  .nav-logo img {
    height: 48px; width: 48px; object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(201,149,42,0.5));
  }

  .nav-logo-text {
    font-family: 'Texas Tango', 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }

  .nav-links a {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    position: relative;
    transition: color 0.3s;
  }

  .nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  /* ─── HERO ─── */
  #inicio {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    background: radial-gradient(ellipse at center, #3D1C0A 0%, #1A0F05 60%, #0D0704 100%);
  }

  /* Foto de portada */
  .hero-bg-photo {
    position: absolute; inset: 0; z-index: 0;
  }

  .hero-bg-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    filter: brightness(0.35) saturate(0.8);
  }

  .hero-bg-overlay {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at center, rgba(26,15,5,0.5) 0%, rgba(10,6,4,0.75) 100%),
      linear-gradient(to bottom, rgba(10,6,4,0.3) 0%, rgba(26,15,5,0.6) 100%);
  }

  .hero-flames {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 40% at 10% 80%, rgba(192,57,43,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 60% 40% at 90% 80%, rgba(192,57,43,0.25) 0%, transparent 60%),
      radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201,149,42,0.15) 0%, transparent 60%);
    animation: flamePulse 4s ease-in-out infinite alternate;
  }

  @keyframes flamePulse {
    from { opacity: 0.7; }
    to { opacity: 1; }
  }

  .hero-texture {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9952A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 2rem;
    animation: heroReveal 1.2s ease-out forwards;
    opacity: 0;
  }

  @keyframes heroReveal {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-logo-wrap {
    margin-bottom: 2rem;
  }

  .hero-logo {
    width: min(340px, 80vw);
    filter: drop-shadow(0 0 40px rgba(201,149,42,0.6)) drop-shadow(0 0 80px rgba(192,57,43,0.3));
    animation: logoFloat 6s ease-in-out infinite;
  }

  @keyframes logoFloat {
    0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 40px rgba(201,149,42,0.6)) drop-shadow(0 0 80px rgba(192,57,43,0.3)); }
    50% { transform: translateY(-8px); filter: drop-shadow(0 0 60px rgba(201,149,42,0.8)) drop-shadow(0 0 100px rgba(192,57,43,0.4)); }
  }

  .hero-tagline {
    font-family: 'Cinzel', serif;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    letter-spacing: 5px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: heroReveal 1.2s 0.3s ease-out forwards;
  }

  .hero-title {
    font-family: 'Texas Tango', 'Playfair Display', serif;
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 400;
    color: var(--cream);
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.8);
    opacity: 0;
    animation: heroReveal 1.2s 0.5s ease-out forwards;
  }

  .hero-title span { color: var(--gold); }

  .hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 300;
    color: var(--cream-dark);
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    opacity: 0;
    animation: heroReveal 1.2s 0.7s ease-out forwards;
  }

  .hero-divider {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-bottom: 3rem;
    opacity: 0;
    animation: heroReveal 1.2s 0.9s ease-out forwards;
  }

  .hero-divider-line {
    width: 80px; height: 1px;
    background: linear-gradient(to right, transparent, var(--gold));
  }

  .hero-divider-line.right {
    background: linear-gradient(to left, transparent, var(--gold));
  }

  .hero-divider-star {
    color: var(--gold); font-size: 1.2rem;
  }

  .hero-cta {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s;
    position: relative; overflow: hidden;
    opacity: 0;
    animation: heroReveal 1.2s 1.1s ease-out forwards;
  }

  .hero-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.4s;
    z-index: -1;
  }

  .hero-cta:hover { color: var(--brown-dark); }
  .hero-cta:hover::before { transform: translateX(0); }

  .scroll-indicator {
    position: absolute; bottom: 2rem;
    left: 0; right: 0;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    opacity: 0; animation: heroReveal 1.2s 1.5s ease-out forwards;
    pointer-events: none;
  }

  .scroll-indicator span {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem; letter-spacing: 3px;
    color: rgba(201,149,42,0.6); text-transform: uppercase;
  }

  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }

  @keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
  }

  /* ─── SECTIONS COMMON ─── */
  section { padding: 6rem 2rem; }

  .section-header {
    text-align: center; margin-bottom: 4rem;
  }

  .section-eyebrow {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem; letter-spacing: 5px;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 1rem; display: block;
  }

  .section-title {
    font-family: 'Texas Tango', 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400; color: var(--cream);
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }

  .section-title span { color: var(--gold); }

  .section-ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-top: 1.5rem;
  }

  .ornament-line {
    width: 60px; height: 1px;
    background: var(--gold);
    opacity: 0.5;
  }

  .ornament-diamond {
    width: 8px; height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
  }

  /* ─── CARTA ─── */
  #carta {
    background:
      linear-gradient(180deg, var(--brown-dark) 0%, #1F1006 50%, var(--brown-dark) 100%);
    position: relative;
  }

  #carta::before {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9952A' fill-opacity='0.02'%3E%3Cpath d='M20 0L40 20L20 40L0 20z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
  }

  .carta-container {
    max-width: 1100px; margin: 0 auto;
  }

  .carta-tabs {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    justify-content: center; margin-bottom: 3rem;
  }

  .carta-tab {
    padding: 0.6rem 1.4rem;
    background: transparent;
    border: 1px solid rgba(201,149,42,0.3);
    color: var(--cream-dark);
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
  }

  .carta-tab:hover,
  .carta-tab.active {
    background: var(--gold);
    color: var(--brown-dark);
    border-color: var(--gold);
  }

  .carta-panel { display: none; }
  .carta-panel.active { display: block; animation: fadeIn 0.4s ease-out; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .carta-category-title {
    font-family: 'Cinzel', serif;
    font-size: 1rem; letter-spacing: 3px;
    color: var(--gold); text-transform: uppercase;
    border-bottom: 1px solid rgba(201,149,42,0.3);
    padding-bottom: 0.75rem; margin-bottom: 1.5rem; margin-top: 2rem;
  }

  .menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
  }

  .menu-item {
    background: rgba(74,46,18,0.2);
    border: 1px solid rgba(201,149,42,0.15);
    padding: 1.25rem 1.5rem;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }

  .menu-item::before {
    content: '';
    position: absolute; left: 0; top: 0;
    width: 3px; height: 0;
    background: var(--gold);
    transition: height 0.3s;
  }

  .menu-item:hover { border-color: rgba(201,149,42,0.4); background: rgba(74,46,18,0.35); }
  .menu-item:hover::before { height: 100%; }

  .menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    color: var(--gold-light); margin-bottom: 0.5rem;
  }

  .menu-item-desc {
    font-size: 0.82rem; line-height: 1.6;
    color: rgba(240,230,204,0.7);
  }

  .menu-item-simple {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(201,149,42,0.08);
  }

  .menu-item-simple::before {
    content: '★';
    color: var(--gold); font-size: 0.6rem; flex-shrink: 0;
  }

  .menu-item-simple span { font-size: 0.9rem; color: var(--text-light); }

  .featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
  }

  .featured-item {
    background: linear-gradient(135deg, rgba(74,46,18,0.4), rgba(45,26,10,0.6));
    border: 1px solid rgba(201,149,42,0.25);
    padding: 1.75rem;
    position: relative; overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .featured-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4), 0 0 20px rgba(201,149,42,0.1);
  }

  .featured-badge {
    position: absolute; top: 1rem; right: 1rem;
    background: var(--gold);
    color: var(--brown-dark);
    font-family: 'Cinzel', serif;
    font-size: 0.6rem; letter-spacing: 2px;
    padding: 3px 8px; text-transform: uppercase;
  }

  .featured-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem; font-weight: 700;
    color: var(--cream); margin-bottom: 0.75rem;
  }

  .featured-item-desc {
    font-size: 0.82rem; line-height: 1.7;
    color: rgba(240,230,204,0.65);
  }

  /* ─── HISTORIA ─── */
  #historia {
    background: linear-gradient(180deg, var(--brown-dark) 0%, #120A03 100%);
    position: relative;
  }

  .historia-layout {
    max-width: 1000px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }

  @media (max-width: 768px) {
    .historia-layout { grid-template-columns: 1fr; gap: 3rem; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
  }

  .historia-visual {
    display: flex; flex-direction: column; align-items: center; gap: 2rem;
  }

  .historia-logo-frame {
    position: relative; width: 280px; height: 280px;
    display: flex; align-items: center; justify-content: center;
  }

  .historia-logo-frame::before {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid rgba(201,149,42,0.3);
    transform: rotate(8deg);
    transition: transform 0.5s;
  }

  .historia-logo-frame:hover::before { transform: rotate(0deg); }

  .historia-logo-frame::after {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid rgba(201,149,42,0.15);
    transform: rotate(-8deg);
    transition: transform 0.5s;
  }

  .historia-logo-frame:hover::after { transform: rotate(0deg); }

  .historia-logo {
    width: 220px;
    filter: drop-shadow(0 0 30px rgba(201,149,42,0.4));
    position: relative; z-index: 1;
  }

  .historia-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; width: 100%;
  }

  .stat-box {
    background: rgba(74,46,18,0.25);
    border: 1px solid rgba(201,149,42,0.2);
    padding: 1.2rem;
    text-align: center;
  }

  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900;
    color: var(--gold); display: block;
  }

  .stat-label {
    font-size: 0.7rem; letter-spacing: 2px;
    text-transform: uppercase; color: var(--cream-dark);
    opacity: 0.7; margin-top: 0.25rem; display: block;
  }

  .historia-text {}

  .historia-text p {
    font-size: 0.95rem; line-height: 1.9;
    color: rgba(240,230,204,0.8);
    margin-bottom: 1.25rem;
  }

  .historia-text strong { color: var(--gold-light); }

  .historia-quote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem; margin: 2rem 0;
    background: rgba(201,149,42,0.05);
  }

  .historia-quote p {
    font-family: 'Playfair Display', serif;
    font-style: italic; font-size: 1.05rem;
    color: var(--cream-dark); margin: 0;
    line-height: 1.7;
  }

  .mision-vision {
    max-width: 900px; margin: 4rem auto 0;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  }

  @media (max-width: 600px) {
    .mision-vision { grid-template-columns: 1fr; }
    .featured-grid { grid-template-columns: 1fr; }
    .historia-stats { grid-template-columns: 1fr 1fr; }
  }

  .mv-card {
    background: rgba(74,46,18,0.2);
    border: 1px solid rgba(201,149,42,0.2);
    padding: 2rem;
    position: relative;
  }

  .mv-card::before {
    content: attr(data-label);
    position: absolute; top: -12px; left: 1.5rem;
    background: var(--gold);
    color: var(--brown-dark);
    font-family: 'Cinzel', serif;
    font-size: 0.65rem; letter-spacing: 3px;
    padding: 3px 12px; text-transform: uppercase;
  }

  .mv-card p {
    font-size: 0.88rem; line-height: 1.8;
    color: rgba(240,230,204,0.75);
  }

  /* ─── CONTACTO ─── */
  #contacto {
    background: linear-gradient(180deg, #120A03 0%, var(--brown-dark) 100%);
  }

  .contacto-layout {
    max-width: 900px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  }

  @media (max-width: 768px) {
    .contacto-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .mision-vision { grid-template-columns: 1fr; }
  }

  .contacto-info h3,
  .contacto-form h3 {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem; letter-spacing: 3px;
    color: var(--gold); text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .contacto-info .ayuda-h3 {
    margin-top: 2rem;
  }

  .contact-item {
    display: flex; gap: 1rem; align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .contact-icon {
    width: 40px; height: 40px;
    border: 1px solid rgba(201,149,42,0.3);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1rem; flex-shrink: 0;
  }

  .contact-item-text strong {
    display: block; font-size: 0.8rem; letter-spacing: 1px;
    text-transform: uppercase; color: var(--gold-pale);
    margin-bottom: 0.25rem;
  }

  .contact-item-text span {
    font-size: 0.9rem; color: rgba(240,230,204,0.7);
    line-height: 1.6;
  }

  .ayuda-links {
    display: flex; flex-direction: column; gap: 0.4rem;
  }

  .ayuda-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: rgba(240,230,204,0.7);
    text-decoration: none;
    transition: color 0.3s;
  }

  .ayuda-link:hover { color: var(--cream); }

  .form-group { margin-bottom: 1.25rem; }

  .form-group label {
    display: block; font-size: 0.75rem; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold-pale);
    opacity: 0.7; margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    background: rgba(74,46,18,0.2);
    border: 1px solid rgba(201,149,42,0.2);
    color: var(--cream);
    padding: 0.85rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
  }

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

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

  .btn-submit {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: 0.8rem; letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
    position: relative; overflow: hidden;
  }

  .btn-submit::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 0;
  }

  .btn-submit span { position: relative; z-index: 1; }

  .btn-submit:hover { color: var(--brown-dark); }
  .btn-submit:hover::before { transform: translateX(0); }

  /* ─── INCLUSIVITY BADGE ─── */
  .inclusivo-badge {
    max-width: 600px; margin: 2rem auto 0;
    background: rgba(74,46,18,0.25);
    border: 1px solid rgba(201,149,42,0.2);
    padding: 1.25rem 2rem;
    display: flex; align-items: center; gap: 1rem;
    text-align: left;
  }

  .inclusivo-badge .badge-icon {
    font-size: 2rem; flex-shrink: 0;
  }

  .inclusivo-badge p {
    font-size: 0.82rem; line-height: 1.7;
    color: rgba(240,230,204,0.7);
  }

  .inclusivo-badge strong { color: var(--gold-light); }

  /* ─── FOOTER ─── */
  footer {
    background: #0A0604;
    border-top: 1px solid rgba(201,149,42,0.15);
    padding: 2.5rem 2rem;
    text-align: center;
  }

  .footer-logo {
    height: 50px; opacity: 0.6; margin-bottom: 1rem;
  }

  footer p {
    font-size: 0.78rem; color: rgba(240,230,204,0.3);
    letter-spacing: 1px;
  }

  footer p span { color: rgba(201,149,42,0.5); }

  /* ─── MOBILE NAV ─── */
  .mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
  }

  .mobile-menu-btn span {
    display: block; width: 24px; height: 1px; background: var(--gold);
    transition: all 0.3s;
  }

  .mobile-nav {
    display: none; position: fixed; inset: 70px 0 0 0;
    background: rgba(26,15,5,0.98);
    z-index: 999; flex-direction: column;
    align-items: center; justify-content: center; gap: 2rem;
  }

  .mobile-nav.open { display: flex; }

  .mobile-nav a {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem; letter-spacing: 4px;
    text-transform: uppercase; color: var(--cream);
    text-decoration: none; transition: color 0.3s;
  }

  .mobile-nav a:hover { color: var(--gold); }

  @media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .historia-layout { grid-template-columns: 1fr; }
    .contacto-layout { grid-template-columns: 1fr; }
  }

  /* ─── CARRUSEL HISTORIA ─── */
  .historia-carousel {
    width: 100%;
    position: relative;
  }

  .carousel-track {
    position: relative;
    width: 100%;
  }

  .carousel-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.5s ease-out;
  }

  .carousel-slide.active { display: flex; }

  .carousel-img-wrap {
    position: relative;
    width: 280px; height: 280px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto;
  }

  .carousel-img-wrap::before {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid rgba(201,149,42,0.3);
    transform: rotate(8deg);
    transition: transform 0.5s;
  }

  .carousel-img-wrap::after {
    content: '';
    position: absolute; inset: 0;
    border: 1px solid rgba(201,149,42,0.15);
    transform: rotate(-8deg);
    transition: transform 0.5s;
  }

  .carousel-img-wrap:hover::before { transform: rotate(0deg); }
  .carousel-img-wrap:hover::after  { transform: rotate(0deg); }

  .carousel-img {
    width: 220px;
    filter: drop-shadow(0 0 30px rgba(201,149,42,0.4));
    position: relative; z-index: 1;
    object-fit: contain;
  }

  .carousel-caption {
    text-align: center;
    margin-top: 1.5rem;
    padding: 0 0.5rem;
  }

  .carousel-caption-title {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
  }

  .carousel-caption-desc {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(240,230,204,0.7);
    margin: 0;
  }

  .carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .carousel-btn {
    background: transparent;
    border: 1px solid rgba(201,149,42,0.4);
    color: var(--gold);
    font-size: 1.4rem;
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 1;
    padding: 0;
  }

  .carousel-btn:hover {
    background: var(--gold);
    color: var(--brown-dark);
    border-color: var(--gold);
  }

  .carousel-dots {
    display: flex; gap: 8px; align-items: center;
  }

  .carousel-dot {
    width: 7px; height: 7px;
    background: rgba(201,149,42,0.25);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
  }

  .carousel-dot.active {
    background: var(--gold);
    transform: scale(1.3);
  }

  /* ─── AYUDA ─── */
  .ayuda-section {
    flex-direction: column !important;
    align-items: flex-start !important;
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .ayuda-header {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .ayuda-title {
    font-family: 'Cinzel', serif !important;
    font-size: 0.75rem !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    display: block;
  }

  .ayuda-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: calc(40px + 1rem);
  }

  .ayuda-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    color: rgba(240,230,204,0.65);
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
  }

  .ayuda-link::before {
    content: '★';
    font-size: 0.45rem;
    color: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
  }

  .ayuda-link:hover {
    color: var(--gold-light);
  }

  /* ─── FOTOS CARRUSEL ─── */
  .carousel-img-photo {
    width: 100%; height: 260px;
    object-fit: cover;
    border-radius: 0;
    filter: brightness(0.92) contrast(1.05);
  }

  .carousel-img-wrap:has(.carousel-img-photo) {
    width: 100%; height: 260px;
    overflow: hidden;
  }

  .carousel-img-wrap:has(.carousel-img-photo)::before,
  .carousel-img-wrap:has(.carousel-img-photo)::after {
    border-color: rgba(201,149,42,0.4);
  }

  /* ─── ICONOS REDES SOCIALES ─── */
  .social-icons {
    display: flex; gap: 0.75rem; align-items: center;
    margin-top: 0.25rem;
  }

  .social-icon {
    width: 34px; height: 34px;
    border: 1px solid rgba(201,149,42,0.35);
    display: flex; align-items: center; justify-content: center;
    color: rgba(240,230,204,0.65);
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
  }

  .social-icon svg { width: 16px; height: 16px; }

  .social-icon:hover {
    background: var(--gold);
    color: var(--brown-dark);
    border-color: var(--gold);
  }

  /* ─── NOTE FORMULARIO ─── */
  .form-note {
    font-size: 0.78rem; line-height: 1.6;
    color: rgba(240,230,204,0.45);
    margin-top: 1rem; text-align: center;
  }

  .form-email-link {
    color: var(--gold-light);
    text-decoration: none;
  }

  .form-email-link:hover { text-decoration: underline; }

  /* ─── CERTIFICADO DIRCETUR ─── */
  .dircetur-badge {
    max-width: 900px; margin: 2rem auto 0;
  }

  .dircetur-badge-inner {
    display: flex; align-items: center; gap: 1.5rem;
    background: linear-gradient(135deg, rgba(74,46,18,0.3), rgba(45,26,10,0.5));
    border: 1px solid rgba(201,149,42,0.3);
    border-left: 3px solid var(--gold);
    padding: 1.25rem 1.75rem;
  }

  .dircetur-icon { font-size: 2rem; flex-shrink: 0; }

  .dircetur-text {
    flex: 1;
    display: flex; flex-direction: column; gap: 0.2rem;
  }

  .dircetur-label {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
  }

  .dircetur-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem; color: var(--cream);
  }

  .dircetur-desc {
    font-size: 0.78rem; color: rgba(240,230,204,0.6);
    line-height: 1.5;
  }

  .dircetur-seal {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem; letter-spacing: 2px;
    color: var(--gold); border: 1px solid rgba(201,149,42,0.4);
    padding: 0.4rem 0.75rem; flex-shrink: 0;
    white-space: nowrap;
  }

  @media (max-width: 600px) {
    .dircetur-badge-inner { flex-direction: column; text-align: center; }
    .dircetur-seal { align-self: center; }
  }

  /* ─── MODALES ─── */
  .modal-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(10,6,4,0.88);
    backdrop-filter: blur(6px);
    align-items: center; justify-content: center;
    padding: 1.5rem;
  }

  .modal-overlay.open { display: flex; }

  .modal-box {
    background: linear-gradient(180deg, #2D1A0A, #1A0F05);
    border: 1px solid rgba(201,149,42,0.3);
    max-width: 640px; width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    padding: 2.5rem;
    animation: fadeIn 0.3s ease-out;
  }

  .modal-close {
    position: absolute; top: 1rem; right: 1rem;
    background: transparent; border: 1px solid rgba(201,149,42,0.3);
    color: var(--gold); width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 0.85rem;
    transition: all 0.3s;
  }

  .modal-close:hover { background: var(--gold); color: var(--brown-dark); }

  .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--cream); margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201,149,42,0.2);
  }

  .modal-content p {
    font-size: 0.88rem; line-height: 1.85;
    color: rgba(240,230,204,0.75);
    margin-bottom: 1rem;
  }

  .modal-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 0.65rem; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gold);
    margin: 1.25rem 0 0.4rem;
  }

  /* ─── WHATSAPP FLOTANTE ─── */
  .whatsapp-float {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 56px; height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 1500;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waPulse 3s ease-in-out infinite;
  }

  .whatsapp-float svg { width: 28px; height: 28px; }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
    animation: none;
  }

  @keyframes waPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); }
  }

  /* ─── GOOGLE MAPS ─── */
  .mapa-wrap {
    max-width: 960px; margin: 4rem auto 0;
  }

  .mapa-header {
    display: flex; align-items: center; gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .mapa-label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem; letter-spacing: 3px;
    text-transform: uppercase; color: var(--gold);
    white-space: nowrap;
  }

  .mapa-frame {
    border: 1px solid rgba(201,149,42,0.25);
    overflow: hidden;
    position: relative;
  }

  .mapa-frame iframe {
    display: block;
    filter: grayscale(20%) contrast(1.05);
  }

  .mapa-address {
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem; color: rgba(240,230,204,0.55);
    text-align: center; margin-top: 0.75rem;
    letter-spacing: 0.5px;
  }
