:root {
      --red: #ff3333;
      --red-dark: #990000;
      --gold: #d4af37;
      --gold-light: #f3e5ab;
      --black: #0a0a0a;
      --surface: rgba(255, 255, 255, 0.03);
      --surface2: #222222;
      --glow-red: rgba(179, 0, 0, 0.3);
      --glow-gold: rgba(212, 175, 55, 0.2);
      --border-color: rgba(255, 255, 255, 0.05);
      --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.4);
      --text-light: #d1d5db;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background: var(--black);
      color: var(--text-light);
      overflow-x: hidden;
      line-height: 1.6;
    }

    .font-display { font-family: 'Cinzel Decorative', serif; }
    .font-heading { font-family: 'Cinzel', serif; }
    .font-body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }

    /* ── NOISE TEXTURE OVERLAY ── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1;
      opacity: 0.25;
    }

    /* ── NAVBAR ── */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      background: rgba(10, 10, 10, 0.6);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(230, 0, 0, 0.2);
      padding: 1rem 2rem;
      display: flex; align-items: center; justify-content: space-between;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .nav-logo-text {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.4rem;
      font-weight: 900;
      background: linear-gradient(135deg, #f0c040, #c8102e);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.05em;
    }

    .nav-links a {
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #b8a898;
      text-decoration: none;
      transition: color 0.2s;
      padding: 0.25rem 0;
      position: relative;
    }

    .nav-links a::after {
      content: ''; position: absolute; bottom: -2px; left: 0;
      width: 0; height: 1px; background: var(--gold);
      transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-links a:hover::after { width: 100%; }
    .nav-links a.nav-active { color: var(--gold); }
    .nav-links a.nav-active::after { width: 100%; background: var(--gold); }

    /* ── NAV ACTIONS (ALWAYS VISIBLE ON DESKTOP) ── */
    #nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    /* ── LOGIN BUTTON ── */
    .btn-login-nav {
      font-family: 'Cinzel', serif;
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: #fff;
      text-decoration: none;
      background: linear-gradient(135deg, #c8102e 0%, #8b0020 100%);
      padding: 0.6rem 1.35rem;
      border-radius: 7px;
      white-space: nowrap;
      flex-shrink: 0;
      transition: all 0.25s ease;
      box-shadow: 0 4px 16px rgba(200, 16, 46, 0.35);
      border: 1px solid rgba(200, 16, 46, 0.4);
    }
    .btn-login-nav:hover {
      background: linear-gradient(135deg, #e01030 0%, #a00025 100%);
      transform: translateY(-2px);
      box-shadow: 0 7px 22px rgba(200, 16, 46, 0.5);
      color: #fff;
    }


    /* ── DROPDOWN MENU ── */
    .nav-dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      min-width: 200px;
      border: 1px solid rgba(212, 175, 55, 0.2);
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
      padding: 0.5rem 0;
      z-index: 1000;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.3s ease;
      pointer-events: none;
    }

    .nav-dropdown:hover .dropdown-content {
      display: block;
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    /* Open state for click-toggle (used by JS) */
    .nav-dropdown.open .dropdown-content {
      display: block;
      opacity: 1;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }

    .dropdown-content a {
      display: block;
      padding: 0.75rem 1.25rem !important;
      text-align: center;
      font-size: 0.7rem !important;
      letter-spacing: 0.1em;
      border-bottom: 1px solid rgba(255, 255, 255, 0.03);
      white-space: nowrap;
    }

    .dropdown-content a::after {
      display: none !important;
    }

    .dropdown-content a:last-child {
      border-bottom: none;
    }

    .dropdown-content a:hover {
      background: rgba(212, 175, 55, 0.08);
      color: var(--gold-light) !important;
    }

    .btn-primary {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      font-weight: 600;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: white;
      padding: 0.75rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.5rem;
      border: 1px solid transparent;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0; left: -100%; width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      transition: left 0.5s ease;
    }
    .btn-primary:hover::before {
      left: 100%;
    }
    .btn-primary:hover {
      background: var(--red-dark);
      border-color: var(--red);
      box-shadow: var(--shadow-md);
      transform: translateY(-2px);
    }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center 20%;
      filter: brightness(0.45) saturate(1.2);
    }

    .hero-overlay {
      position: absolute; inset: 0;
      background: 
        radial-gradient(ellipse at 50% 0%, rgba(200,16,46,0.25) 0%, transparent 60%),
        linear-gradient(to bottom, rgba(6,6,6,0.3) 0%, rgba(6,6,6,0.5) 60%, rgba(6,6,6,0.95) 100%);
    }

    .hero-content {
      position: relative; z-index: 10;
      text-align: center;
      padding: 2rem;
      padding-top: 8rem; /* Added padding to lower text from header */
      max-width: 900px;
    }

    .hero-eyebrow {
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 2rem;
      display: flex; align-items: center; justify-content: center; gap: 1rem;
    }

    .hero-eyebrow::before, .hero-eyebrow::after {
      content: ''; flex: 1; max-width: 80px;
      height: 1px; background: linear-gradient(to right, transparent, var(--gold));
    }
    .hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold)); }

    .hero-title {
      font-family: 'Cinzel Decorative', serif;
      font-size: clamp(2.5rem, 8vw, 6rem);
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0.03em;
      color: white;
      text-shadow: 0 4px 15px rgba(0,0,0,0.9);
      margin-bottom: 0.5rem;
      animation: pulse-glow 4s infinite alternate;
    }

    @keyframes pulse-glow {
      0% { text-shadow: 0 4px 15px rgba(0,0,0,0.9); }
      100% { text-shadow: 0 4px 20px rgba(0,0,0,1); }
    }

    .hero-title span {
      display: block;
      font-size: clamp(1.2rem, 3.5vw, 2.5rem);
      font-weight: 700;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.2em;
      margin-top: 0.5rem;
    }

    .hero-divider {
      width: 120px; height: 2px;
      background: linear-gradient(to right, transparent, var(--red), var(--gold), var(--red), transparent);
      margin: 2rem auto;
    }

    .hero-subtitle {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      font-size: clamp(1.1rem, 2.5vw, 1.5rem);
      font-style: italic;
      color: rgba(232,224,208,0.85);
      max-width: 600px;
      margin: 0 auto 3rem;
      line-height: 1.7;
    }

    .hero-cta-group {
      display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
      margin-bottom: 5rem;
    }

    .btn-ghost {
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(232,224,208,0.8);
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 0.5rem;
      border: 1px solid rgba(232,224,208,0.25);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
    }
    .btn-ghost:hover {
      border-color: var(--gold);
      color: var(--gold-light);
      background: rgba(212, 160, 23, 0.1);
      box-shadow: 0 0 20px var(--glow-gold);
      transform: translateY(-2px);
    }

    .hero-scroll {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      color: rgba(212,160,23,0.85);
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      animation: float 2.5s ease-in-out infinite;
      z-index: 20;
      text-decoration: none;
    }

    .hero-scroll svg {
      width: 20px; height: 20px;
      stroke: rgba(212,160,23,0.85);
      fill: none;
      stroke-width: 2;
    }

    @keyframes float {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-8px); }
    }

    /* ── SECTION SHARED ── */
    .section { padding: 6rem 2rem; }
    .section-label {
      font-family: 'Cinzel', serif;
      font-size: 0.7rem;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex; align-items: center; gap: 1rem;
      margin-bottom: 1.25rem;
    }
    .section-label::before {
      content: ''; width: 40px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold));
    }
    .section-label::after {
      content: ''; width: 40px; height: 1px;
      background: linear-gradient(to left, transparent, var(--gold));
    }

    .section-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 700;
      color: white;
      line-height: 1.15;
      margin-bottom: 1.25rem;
      letter-spacing: -0.01em;
    }

    .section-subtitle {
      font-size: 1.15rem;
      color: rgba(210, 215, 225, 0.75);
      line-height: 1.8;
      max-width: 560px;
      margin-bottom: 2.5rem;
    }

    .gold-text {
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* ── SOBRE NOSOTROS ── */
    .sobre-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }

    @media (max-width: 768px) {
      .sobre-grid { grid-template-columns: 1fr; gap: 3rem; }
    }

    .sobre-text p {
      font-size: 1.15rem;
      line-height: 1.9;
      color: rgba(210, 215, 225, 0.85);
      margin-bottom: 1.25rem;
    }

    .stats-row {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem; margin-top: 3rem;
      border-top: 1px solid rgba(212,160,23,0.2);
      padding-top: 2rem;
    }

    @media (max-width: 640px) {
      .stats-row { grid-template-columns: repeat(2,1fr); }
    }

    .stat-item { text-align: center; }
    .stat-number {
      font-family: 'Cinzel Decorative', serif;
      font-size: 2rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-label {
      font-family: 'Cinzel', serif;
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(232,224,208,0.5);
      margin-top: 0.25rem;
    }

    .sobre-image-wrap {
      position: relative;
    }

    .sobre-image-wrap::before {
      content: '';
      position: absolute;
      inset: -12px;
      border: 1px solid rgba(212,160,23,0.3);
      border-radius: 2px;
      z-index: 0;
    }

    .sobre-image-wrap::after {
      content: '';
      position: absolute;
      bottom: -20px; right: -20px;
      width: 60%; height: 60%;
      background: linear-gradient(135deg, var(--red-dark), transparent);
      opacity: 0.4;
      z-index: 0;
      border-radius: 2px;
    }

    .sobre-img {
      position: relative; z-index: 1;
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: top;
      border-radius: 2px;
      filter: saturate(1.1);
    }

/* ── GALERÍA ── */
    .gallery-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: auto;
      gap: 1rem;
    }

    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; }
    }

    .gallery-item {
      position: relative; overflow: hidden; cursor: pointer;
      border: 1px solid rgba(212,160,23,0.1);
    }

    .gallery-item:first-child {
      grid-column: span 2;
      grid-row: span 2;
    }

    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.6s cubic-bezier(0.4,0,0.2,1), filter 0.4s;
      display: block;
      min-height: 220px;
    }

    .gallery-item:first-child img { min-height: 440px; }

    .gallery-item:hover img {
      transform: scale(1.06);
      filter: saturate(1.3) brightness(1.1);
    }

    .gallery-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(6,6,6,0.9) 0%, transparent 50%);
      opacity: 0;
      transition: opacity 0.4s;
      display: flex; align-items: flex-end; padding: 1.5rem;
    }

    .gallery-item:hover .gallery-overlay { opacity: 1; }

    .gallery-caption {
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      letter-spacing: 0.1em;
      color: white;
    }

    .gallery-caption span {
      display: block;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      font-size: 0.9rem;
      color: var(--gold);
      font-style: italic;
      margin-top: 0.2rem;
    }
    /* ── LIGHTBOX ── */
    .lightbox {
      position: fixed; inset: 0; z-index: 9000;
      background: rgba(0,0,0,0.95);
      display: none; align-items: center; justify-content: center;
      padding: 2rem;
    }
    .lightbox.active { display: flex; }
    .lightbox img {
      max-width: 90vw; max-height: 85vh;
      object-fit: contain;
      border: 1px solid rgba(212,160,23,0.3);
    }
    .lightbox-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      font-size: 2rem; color: var(--gold);
      cursor: pointer; background: none; border: none;
      font-family: 'Cinzel', serif;
      transition: color 0.2s;
    }
    .lightbox-close:hover { color: white; }
    .lightbox-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      font-size: 2.5rem; color: rgba(212,160,23,0.7);
      cursor: pointer; background: none; border: none;
      transition: color 0.2s; padding: 1rem;
    }
    .lightbox-nav:hover { color: var(--gold-light); }
    #lb-prev { left: 1rem; }
    #lb-next { right: 1rem; }

    /* ── SERVICIOS ── */
    .services-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
      border: none;
    }
    @media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 500px) { .services-grid { grid-template-columns: 1fr; } }

    .service-card {
      padding: 3.5rem 2.5rem;
      background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 520px;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(to right, var(--red), var(--gold));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .service-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at center, var(--glow-red), transparent 70%);
      opacity: 0;
      transition: opacity 0.6s;
      z-index: 0;
    }
    .service-card:hover { 
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(212, 160, 23, 0.3);
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(230, 0, 0, 0.1);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover::after { opacity: 0.15; }

    .service-icon {
      font-size: 2.5rem; color: var(--red);
      margin-bottom: 2rem;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      display: inline-flex;
      position: relative;
      z-index: 1;
    }
    .service-card:hover .service-icon {
      transform: scale(1.1) translateY(-5px);
      color: var(--gold);
      filter: drop-shadow(0 0 10px var(--glow-gold));
    }

    .service-title {
      font-family: 'Cinzel', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: white;
      margin-bottom: 1rem;
      letter-spacing: 0.05em;
      position: relative;
      z-index: 1;
    }

    .service-desc {
      font-size: 0.95rem;
      color: rgba(210, 215, 225, 0.7);
      line-height: 1.8;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
      flex-grow: 1;
    }

    .service-btn {
      margin-top: auto;
      font-family: 'Cinzel', serif;
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: white;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      z-index: 1;
      border: 1px solid rgba(212, 160, 23, 0.3);
      padding: 0.8rem 1.5rem;
      border-radius: 4px;
      background: rgba(212, 160, 23, 0.05);
    }
    .service-btn:hover { 
      background: var(--gold);
      color: var(--black);
      border-color: var(--gold);
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(212, 160, 23, 0.2);
    }
    .service-btn svg { transition: transform 0.3s; }
    .service-btn:hover svg { transform: translateX(5px); }

    /* ── TESTIMONIALS ── */
    .testimonials-section {
      background: var(--surface);
      position: relative;
      overflow: hidden;
    }

    .testimonials-section::before {
      content: '"\201C"';
      position: absolute;
      font-family: 'Cinzel Decorative', serif;
      font-size: 20rem;
      color: rgba(212,160,23,0.03);
      top: -3rem; left: -2rem;
      line-height: 1;
      pointer-events: none;
    }

    .testimonials-grid {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(3,1fr); gap: 3rem;
    }
    @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .testimonials-grid { grid-template-columns: 1fr; } }

    .testimonial-card {
      background: linear-gradient(145deg, rgba(15, 15, 15, 0.9), rgba(10, 10, 10, 0.95));
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 3rem;
      position: relative;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    .testimonial-card:hover {
      border-color: rgba(212, 160, 23, 0.2);
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    }

    .testimonial-card::before {
      content: '"\201C"';
      font-family: 'Cinzel Decorative', serif;
      font-size: 6rem;
      color: var(--red);
      opacity: 0.15;
      position: absolute;
      top: 1rem; left: 1.5rem;
      line-height: 1;
      transition: opacity 0.4s;
    }
    .testimonial-card:hover::before { opacity: 0.3; }

    .testimonial-stars {
      color: var(--gold);
      font-size: 0.9rem;
      letter-spacing: 0.2em;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.4));
    }

    .testimonial-text {
      font-size: 1.1rem;
      font-style: italic;
      color: rgba(210, 215, 225, 0.85);
      line-height: 1.9;
      margin-bottom: 2.5rem;
      position: relative;
      z-index: 1;
    }

    .testimonial-author {
      display: flex; align-items: center; gap: 1.25rem;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 1.5rem;
    }

    .testimonial-avatar {
      width: 54px; height: 54px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--red), var(--red-dark));
      color: white;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cinzel', serif;
      font-weight: 700;
      font-size: 1rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.4);
      border: 2px solid rgba(255,255,255,0.1);
      flex-shrink: 0;
    }

    .testimonial-name {
      font-family: 'Cinzel', serif;
      font-size: 1rem;
      color: white;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .testimonial-role {
      font-size: 0.75rem;
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 0.2rem;
    }

    /* ── CONTACTO ── */
    .contact-wrap {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
      align-items: start;
    }
    @media (max-width: 768px) { .contact-wrap { grid-template-columns: 1fr; gap: 3rem; } }

    .contact-title {
      font-family: 'Cinzel', serif;
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: white;
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .contact-sub {
      font-size: 1.1rem;
      color: rgba(232,224,208,0.65);
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .contact-item {
      display: flex; align-items: center; gap: 1.25rem;
      padding: 1.25rem 0;
      border-bottom: 1px solid rgba(212,160,23,0.1);
      text-decoration: none;
      transition: border-color 0.3s;
    }
    .contact-item:hover { border-color: rgba(212,160,23,0.4); }

    .contact-icon {
      width: 50px; height: 50px;
      border-radius: 2px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }

    .contact-label {
      font-family: 'Cinzel', serif;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.25rem;
    }

    .contact-value {
      font-size: 1.2rem;
      color: white;
      font-weight: 600;
    }

    .contact-form-box {
      background: var(--surface);
      border: 1px solid rgba(212,160,23,0.15);
      padding: 3rem;
    }

    .form-field {
      margin-bottom: 1.5rem;
    }

    .form-label {
      font-family: 'Cinzel', serif;
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      display: block;
      margin-bottom: 0.5rem;
    }

    .form-input {
      width: 100%;
      background: var(--black);
      border: 1px solid rgba(212,160,23,0.2);
      color: white;
      padding: 1rem 1.25rem;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      font-size: 1rem;
      outline: none;
      transition: border-color 0.3s;
    }
    .form-input:focus { border-color: var(--gold); }
    .form-input::placeholder { color: rgba(232,224,208,0.3); }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      border-top: 1px solid rgba(212,160,23,0.15);
      padding: 3rem 2rem;
      width: 100%;
    }

    .footer-inner {
      max-width: 1200px; margin: 0 auto;
      display: flex; flex-direction: column; align-items: center; gap: 2rem;
      text-align: center; width: 100%;
    }

    .footer-logo {
      font-family: 'Cinzel Decorative', serif;
      font-size: 1.5rem;
      font-weight: 900;
      background: linear-gradient(135deg, var(--gold-light), var(--gold));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .footer-divider {
      width: 200px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
    }

    .footer-copy {
      font-family: 'Cinzel', serif;
      font-size: 0.65rem;
      letter-spacing: 0.15em;
      color: rgba(232,224,208,0.35);
      text-transform: uppercase;
    }

    /* ── SOCIALS ── */
    .social-row {
      display: flex !important;
      flex-direction: row !important;
      flex-wrap: wrap;
      gap: 1.25rem;
      justify-content: center;
      align-items: center;
      width: 100%;
    }

    .social-btn {
      width: 54px; height: 54px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.03);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      backdrop-filter: blur(6px);
    }
    .social-btn:hover {
      transform: translateY(-6px) scale(1.1);
      border-color: transparent;
    }
    .social-facebook:hover  { background: #1877F2; color: white; box-shadow: 0 12px 30px rgba(24,119,242,0.45); }
    .social-instagram:hover { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; box-shadow: 0 12px 30px rgba(220,39,67,0.45); }
    .social-tiktok:hover    { background: #111; color: white; box-shadow: 0 12px 30px rgba(105,201,208,0.35), 0 0 0 1px #69C9D0; }
    .social-youtube:hover   { background: #FF0000; color: white; box-shadow: 0 12px 30px rgba(255,0,0,0.45); }

    /* ── ACTIVE NAV LINK ── */
    .nav-active {
      color: var(--gold-light) !important;
      position: relative;
    }
    .nav-active::after {
      content: '';
      position: absolute; bottom: -4px; left: 0;
      width: 100%; height: 2px;
      background: linear-gradient(to right, var(--red), var(--gold));
      border-radius: 2px;
    }

    /* ── WHATSAPP FLOAT ── */
    .wa-float {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
      width: 58px; height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      color: white;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      animation: wapulse 2.5s ease-in-out infinite;
    }

    @keyframes wapulse {
      0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
      50% { box-shadow: 0 4px 35px rgba(37,211,102,0.7); transform: scale(1.05); }
    }

    /* ── MOBILE NAV ── */
    .mobile-menu {
      display: none;
      position: fixed; inset: 0; z-index: 450;
      background: rgba(6,6,6,0.98);
      flex-direction: column;
      align-items: center; justify-content: center;
      gap: 2.5rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: 'Cinzel', serif;
      font-size: 1.2rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(232,224,208,0.8);
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-menu a:hover { color: var(--gold-light); }

    /* ── SCROLL REVEAL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
                  transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.08s; }
    .reveal-delay-2 { transition-delay: 0.16s; }
    .reveal-delay-3 { transition-delay: 0.24s; }
    .reveal-delay-4 { transition-delay: 0.32s; }

    /* hamburger */
    #hamburger { background: none; border: none; cursor: pointer; padding: 0.25rem; }
    .ham-line {
      display: block; width: 24px; height: 2px;
      background: var(--gold); margin: 5px 0;
      transition: all 0.3s;
    }

    /* ── RESPONSIVE: MOBILE (< 900px) ── */
    @media (max-width: 899px) {
      #desktop-nav { display: none !important; }
      #nav-actions  { display: none !important; }
      #hamburger    { display: block !important; }
    }

    @media (min-width: 900px) {
      #hamburger { display: none !important; }
      #desktop-nav { display: flex !important; }
      #nav-actions  { display: flex !important; }
    }
