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

    :root {
      --navy:   #0e1c2f;
      --navy2:  #142438;
      --gold:   #c8a255;
      --gold2:  #e0c07a;
      --cream:  #f5f0e8;
      --cream2: #ede6d8;
      --dark:   #0a1220;
      --text:   #2d2d2d;
      --text-light: #555555;
      --white:  #ffffff;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans:  'Montserrat', Arial, sans-serif;
      --transition: 0.4s ease;
      --shadow: 0 8px 40px rgba(0,0,0,0.18);
    }

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

    body {
      font-family: var(--font-sans);
      color: var(--text);
      background: var(--cream);
      overflow-x: hidden;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    main a, .content a, article a { text-decoration: underline; }
    ul { list-style: none; }

    .section-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 2rem;
    }

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

    /* ===================== NAV ===================== */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 1.2rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(10, 18, 32, 0.75);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
    }
    #nav.scrolled {
      background: rgba(14, 28, 47, 0.97);
      padding: 0.8rem 3rem;
      box-shadow: 0 2px 20px rgba(0,0,0,0.4);
    }

    .nav-logo {
      font-family: var(--font-serif);
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 0.04em;
    }
    .nav-logo span { color: var(--white); font-weight: 300; }

    .nav-links {
      display: flex;
      gap: 2.2rem;
      align-items: center;
    }
    .nav-links a {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      transition: color var(--transition);
      position: relative;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width var(--transition);
    }
    .nav-links a:hover { color: var(--gold); text-decoration-line: underline; }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-size: 0.72rem !important;
      font-weight: 500 !important;
      letter-spacing: 0.12em !important;
      text-transform: uppercase !important;
      color: var(--navy) !important;
      background: var(--gold);
      padding: 0.6rem 1.4rem;
      border-radius: 0;
      transition: background var(--transition), color var(--transition) !important;
    }
    .nav-cta:hover {
      background: var(--gold2) !important;
      color: var(--navy) !important;
    }
    .nav-cta::after { display: none !important; }

    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }
    .nav-hamburger span {
      width: 24px; height: 2px;
      background: var(--gold);
      transition: var(--transition);
    }

    /* ===================== HERO ===================== */
    #hero {
      min-height: 78vh;
      background: var(--dark);
      display: grid;
      grid-template-columns: 44fr 56fr;
      position: relative;
      overflow: hidden;
    }

    /* Lado izquierdo — texto */
    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 7rem 4rem 5rem 6.5rem;
      position: relative;
      z-index: 2;
    }
    .hero-left::after {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 1px; height: 100%;
      background: linear-gradient(to bottom, transparent, rgba(200,162,85,0.3), transparent);
    }

    /* Lado derecho — imagen */
    .hero-right {
      position: relative;
      overflow: hidden;
    }
    .hero-right img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: 30% top;
      display: block;
      filter: brightness(0.88) contrast(1.05);
    }
    /* Degradado mínimo — solo una transición de 6% en el borde izquierdo */
    .hero-right::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, var(--dark) 0%, transparent 6%);
      z-index: 1;
      pointer-events: none;
    }
    /* Degradado inferior suave */
    .hero-right::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 40%;
      background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
      z-index: 1;
      pointer-events: none;
    }

    /* Glow decorativo detrás del texto */
    .hero-left::before {
      content: '';
      position: absolute;
      top: 30%; left: -10%;
      width: 400px; height: 400px;
      background: radial-gradient(ellipse, rgba(200,162,85,0.07) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-content {
      text-align: left;
      animation: fade-up 1.2s ease forwards;
    }

    /* Línea decorativa vertical arriba del eyebrow */
    .hero-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, transparent, var(--gold));
      margin-bottom: 1.5rem;
    }

    @media (max-width: 900px) {
      #hero {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        min-height: 0;
        height: auto;
      }
      .hero-left {
        padding: 2rem 2rem 2.5rem;
        justify-content: flex-start;
        order: 2;
      }
      .hero-right {
        order: 1;
        height: 38vh;
        max-height: 50vh;
        min-height: 180px;
      }
      .hero-right::before {
        background: linear-gradient(to top, var(--dark) 0%, transparent 40%);
      }
      .hero-left::after { display: none; }
      .hero-content { text-align: center; }
      .hero-crystal { display: none !important; }
      .hero-line { display: none; }
      .hero-buttons { justify-content: center; }
    }

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

    .hero-eyebrow {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.5rem;
    }

    .hero-title {
      font-family: var(--font-serif);
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1rem;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-subtitle {
      font-family: var(--font-serif);
      font-size: clamp(1rem, 2vw, 1.3rem);
      font-weight: 300;
      color: rgba(255,255,255,0.82);
      margin-bottom: 2.5rem;
      max-width: 480px;
      line-height: 1.7;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--navy);
      padding: 1rem 2.5rem;
      border: 1px solid var(--gold);
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
    }
    .btn-primary:hover {
      background: transparent;
      color: var(--gold);
    }

    .btn-outline {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: transparent;
      color: rgba(255,255,255,0.8);
      padding: 1rem 2.5rem;
      border: 1px solid rgba(255,255,255,0.3);
      cursor: pointer;
      transition: border-color var(--transition), color var(--transition);
    }
    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .hero-scroll {
      position: absolute;
      bottom: 2.5rem;
      left: 25%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      animation: bounce 2s infinite;
    }
    .hero-scroll span {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
    }
    .hero-scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, var(--gold), transparent);
    }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(6px); }
    }

    /* ===================== STATS BAR ===================== */
    #stats {
      background: var(--navy);
      padding: 2.5rem 2rem;
    }
    .stats-grid {
      max-width: 900px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1rem;
      text-align: center;
    }
    .stat-item {
      padding: 0.5rem;
      border-right: 1px solid rgba(200,162,85,0.2);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: var(--font-serif);
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      margin-top: 0.4rem;
    }

    /* ===================== SECTION HEADER ===================== */
    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .section-tag {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300;
      color: var(--navy);
      line-height: 1.2;
    }
    .section-title.light { color: var(--white); }
    .section-title em { font-style: italic; color: var(--gold); }
    .section-divider {
      width: 60px;
      height: 1px;
      background: var(--gold);
      margin: 1.5rem auto 0;
    }
    .section-subtitle {
      font-size: 0.95rem;
      color: #5e5e5e;
      line-height: 1.8;
      max-width: 600px;
      margin: 1.5rem auto 0;
    }
    .section-subtitle.light { color: rgba(255,255,255,0.8); }

    /* ===================== NOSOTROS ===================== */
    #nosotros {
      padding: 7rem 0;
      background: var(--cream);
    }
    .nosotros-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .nosotros-visual {
      position: relative;
    }
    .nosotros-frame {
      width: 100%;
      padding-top: 120%;
      background: var(--navy2);
      position: relative;
      overflow: hidden;
    }
    .nosotros-frame img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .nosotros-frame-inner {
      position: absolute;
      inset: 1.5rem;
      border: 1px solid rgba(200,162,85,0.3);
      pointer-events: none;
      z-index: 1;
    }

    .nosotros-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 120px; height: 120px;
      background: var(--gold);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
    }
    .nosotros-badge-num {
      font-family: var(--font-serif);
      font-size: 2.5rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1;
    }
    .nosotros-badge-text {
      font-size: 0.55rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--navy);
      margin-top: 0.25rem;
    }

    .nosotros-text {}
    .nosotros-text .section-header {
      text-align: left;
      margin-bottom: 2rem;
    }
    .nosotros-text .section-divider { margin: 1.5rem 0 0; }
    .nosotros-text .section-tag { display: block; }

    .nosotros-body p {
      font-size: 0.95rem;
      line-height: 1.9;
      color: var(--text-light);
      margin-bottom: 1.2rem;
    }
    .nosotros-body p strong {
      color: var(--text);
      font-weight: 500;
    }

    .nosotros-pillars {
      display: flex;
      gap: 2rem;
      margin-top: 2.5rem;
    }
    .pillar {
      flex: 1;
      padding-top: 1rem;
      border-top: 1px solid var(--gold);
    }
    .pillar-title {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 0.4rem;
    }
    .pillar-text {
      font-size: 0.8rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ===================== SERVICIOS ===================== */
    #servicios {
      padding: 7rem 0;
      background: var(--navy);
    }
    .servicios-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(200,162,85,0.15);
    }
    .servicio-card {
      background: var(--navy2);
      padding: 3rem 2.5rem;
      transition: background var(--transition);
      position: relative;
      overflow: hidden;
    }
    .servicio-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.5s ease;
    }
    .servicio-card:hover { background: #1a2d45; }
    .servicio-card:hover::before { width: 100%; }

    .servicio-icon {
      width: 48px; height: 48px;
      margin-bottom: 1.5rem;
      color: var(--gold);
    }
    .servicio-title {
      font-family: var(--font-serif);
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 1rem;
      line-height: 1.3;
    }
    .servicio-desc {
      font-size: 0.85rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.8);
    }
    .servicio-card--wide {
      grid-column: 1 / -1;
      border-left: 2px solid var(--gold);
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0 2rem;
      align-items: start;
    }
    .servicio-card--wide .servicio-icon { margin-bottom: 0; margin-top: 0.3rem; }
    .servicio-card--wide .servicio-desc { margin-bottom: 0.85rem; }
    .servicio-card--wide .servicio-desc:last-child { margin-bottom: 0; }
    @media (max-width: 768px) {
      .servicio-card--wide { grid-template-columns: 1fr; }
      .servicio-card--wide .servicio-icon { margin-bottom: 1.5rem; }
    }

    /* ===================== PROCESO ===================== */
    #proceso {
      padding: 7rem 0;
      background: var(--cream2);
    }
    .proceso-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      margin-top: 1rem;
    }
    .proceso-steps::before {
      content: '';
      position: absolute;
      top: 3rem;
      left: 12.5%;
      right: 12.5%;
      height: 1px;
      background: linear-gradient(to right, var(--gold), rgba(200,162,85,0.2), var(--gold));
    }
    .proceso-step {
      text-align: center;
      padding: 0 1.5rem;
      padding-top: 0;
    }
    .proceso-step-num {
      width: 60px; height: 60px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: var(--font-serif);
      font-size: 1.3rem;
      color: var(--gold);
      background: var(--cream2);
      position: relative;
      z-index: 1;
    }
    .proceso-step-title {
      font-family: var(--font-serif);
      font-size: 1.15rem;
      color: var(--navy);
      margin-bottom: 0.7rem;
    }
    .proceso-step-desc {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ===================== CLIENTES ===================== */
    #clientes {
      padding: 7rem 0;
      background: var(--dark);
    }
    .clientes-intro {
      font-family: var(--font-serif);
      font-size: clamp(1.1rem, 2vw, 1.5rem);
      font-style: italic;
      color: rgba(255,255,255,0.8);
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem;
      line-height: 1.7;
    }
    .clientes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(200,162,85,0.1);
      margin-bottom: 4rem;
    }
    .cliente-card {
      background: #0f1d30;
      padding: 2.5rem 2rem;
      text-align: center;
      transition: background var(--transition);
    }
    .cliente-card:hover { background: #142438; }
    .cliente-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      opacity: 0.7;
    }
    .cliente-name {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }
    .cliente-desc {
      font-size: 0.78rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
      letter-spacing: 0.05em;
    }

    .testimonial-block {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
      border-top: 1px solid rgba(200,162,85,0.2);
      border-bottom: 1px solid rgba(200,162,85,0.2);
      padding: 3rem 2rem;
    }
    .testimonial-quote {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-style: italic;
      color: rgba(255,255,255,0.8);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }
    .testimonial-author {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* ===================== GALERIA placeholder ===================== */
    #galeria {
      padding: 7rem 0;
      background: var(--cream);
    }
    .galeria-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: repeat(2, 220px);
      gap: 0.4rem;
    }
    .galeria-item {
      background: var(--navy2);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    .galeria-item:first-child {
      grid-column: span 2;
      grid-row: span 2;
    }
    .galeria-overlay {
      position: absolute;
      inset: 0;
      background: rgba(14,28,47,0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity var(--transition);
    }
    .galeria-item:hover .galeria-overlay { opacity: 1; }
    .galeria-overlay-text {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .galeria-item img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform 0.6s ease;
    }
    .galeria-item:hover img { transform: scale(1.05); }
    .galeria-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 0.6rem 1rem;
      background: linear-gradient(transparent, rgba(10,18,32,0.85));
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.8);
      opacity: 0;
      transition: opacity var(--transition);
      z-index: 2;
    }
    .galeria-item:hover .galeria-caption { opacity: 1; }
    .galeria-note {
      text-align: center;
      margin-top: 1.5rem;
      font-size: 0.8rem;
      color: var(--text-light);
    }
    .galeria-note a {
      color: var(--gold);
      border-bottom: 1px solid var(--gold);
      transition: opacity var(--transition);
    }
    .galeria-note a:hover { opacity: 0.7; }

    /* ===================== RESEÑAS ===================== */
    #reseñas {
      padding: 7rem 0;
      background: var(--navy);
    }
    .reseñas-rating-global {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
      margin-bottom: 3.5rem;
    }
    .rating-num {
      font-family: var(--font-serif);
      font-size: 4rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }
    .rating-info {}
    .rating-stars {
      color: var(--gold);
      font-size: 1.1rem;
      letter-spacing: 2px;
      margin-bottom: 0.3rem;
    }
    .rating-count {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.8);
      text-transform: uppercase;
    }
    .rating-google {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.7rem;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.1em;
      border-left: 1px solid rgba(255,255,255,0.1);
      padding-left: 1.5rem;
    }
    .reseñas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(200,162,85,0.1);
    }
    .reseña-card {
      background: var(--navy2);
      padding: 2.2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: background var(--transition);
    }
    .reseña-card:hover { background: #1a2d45; }
    .reseña-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 3px; }
    .reseña-text {
      font-family: var(--font-serif);
      font-size: 1rem;
      font-style: italic;
      color: rgba(255,255,255,0.8);
      line-height: 1.75;
      flex: 1;
    }
    .reseña-author {
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      padding-top: 0.75rem;
      border-top: 1px solid rgba(200,162,85,0.15);
    }
    .reseñas-cta {
      text-align: center;
      margin-top: 2.5rem;
    }
    .reseñas-cta a {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      border-bottom: 1px solid rgba(200,162,85,0.4);
      padding-bottom: 2px;
      transition: opacity var(--transition);
    }
    .reseñas-cta a:hover { opacity: 0.7; }

    /* ===================== WHATSAPP FLOTANTE ===================== */
    .wa-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 999;
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      transition: transform var(--transition), box-shadow var(--transition);
      cursor: pointer;
    }
    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37,211,102,0.55);
    }
    .wa-float svg { width: 28px; height: 28px; fill: white; }
    .wa-tooltip {
      position: absolute;
      right: 66px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--navy);
      color: rgba(255,255,255,0.85);
      font-size: 0.72rem;
      letter-spacing: 0.05em;
      white-space: nowrap;
      padding: 0.4rem 0.9rem;
      border-radius: 4px;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--transition);
    }
    .wa-tooltip::after {
      content: '';
      position: absolute;
      right: -6px; top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-right: none;
      border-left-color: var(--navy);
    }
    .wa-float:hover .wa-tooltip { opacity: 1; }

    /* ===================== FOTO HINT ===================== */
    .form-photo-hint {
      display: flex;
      align-items: flex-start;
      gap: 0.55rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.6;
      padding: 0.7rem 0.9rem;
      border: 1px dashed rgba(200,162,85,0.25);
      border-radius: 6px;
      background: rgba(200,162,85,0.03);
    }
    .form-photo-hint svg {
      flex-shrink: 0;
      margin-top: 2px;
      color: rgba(200,162,85,0.55);
    }
    .form-photo-hint a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(200,162,85,0.35);
      transition: border-color 0.2s;
    }
    .form-photo-hint a:hover { border-color: var(--gold); }

    /* ===================== CONTACTO ===================== */
    #contacto {
      padding: 7rem 0;
      background: var(--navy);
      scroll-margin-top: 72px;
    }
    .contacto-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: start;
    }
    .contacto-info .section-header {
      text-align: left;
      margin-bottom: 2.5rem;
    }
    .contacto-info .section-header .section-divider { margin: 1.5rem 0 0; }
    .contacto-info .section-tag { display: block; }

    .contacto-details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .contacto-item {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }
    .contacto-item-icon {
      width: 36px; height: 36px;
      border: 1px solid rgba(200,162,85,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--gold);
    }
    .contacto-item-body {}
    .contacto-item-label {
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      margin-bottom: 0.25rem;
    }
    .contacto-item-value {
      font-size: 0.92rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.5;
    }
    .contacto-item-value a {
      color: rgba(255,255,255,0.8);
      transition: color var(--transition);
    }
    .contacto-item-value a:hover { color: var(--gold); }

    .contacto-social {
      display: flex;
      gap: 0.75rem;
      margin-top: 2.5rem;
    }
    .social-btn {
      width: 40px; height: 40px;
      border: 1px solid rgba(200,162,85,0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.8);
      font-size: 1rem;
      transition: border-color var(--transition), color var(--transition);
      cursor: pointer;
    }
    .social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* Form */
    .contacto-form-wrap {}
    .contacto-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }
    .form-label {
      font-size: 0.62rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
    }
    .form-input, .form-textarea, .form-select {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--white);
      padding: 0.85rem 1rem;
      font-family: var(--font-sans);
      font-size: 0.88rem;
      outline: none;
      transition: border-color var(--transition);
      width: 100%;
      appearance: none;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.25); }
    .form-input:focus, .form-textarea:focus, .form-select:focus {
      border-color: var(--gold);
    }
    .form-textarea { resize: vertical; min-height: 130px; }
    .form-select { color: rgba(255,255,255,0.8); background-color: #142438; cursor: pointer; }
    .form-select option { background: #142438; }

    .form-submit {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-family: var(--font-sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--navy);
      padding: 1rem 2.5rem;
      border: 1px solid var(--gold);
      cursor: pointer;
      transition: background var(--transition), color var(--transition);
      margin-top: 0.5rem;
    }
    .form-submit:hover {
      background: transparent;
      color: var(--gold);
    }
    .form-submit svg { width: 16px; height: 16px; }

    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.8);
      margin-top: 0.75rem;
      transition: color var(--transition);
      cursor: pointer;
    }
    .whatsapp-btn:hover { color: #25D366; }
    .whatsapp-btn svg { width: 18px; height: 18px; }

    /* ===================== FOOTER ===================== */
    #footer {
      background: var(--dark);
      padding: 3rem 2rem 2rem;
    }
    .footer-inner {
      max-width: 1160px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding-bottom: 2rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      gap: 2rem;
      flex-wrap: wrap;
    }
    .footer-brand {}
    .footer-logo {
      font-family: var(--font-serif);
      font-size: 1.6rem;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .footer-logo span { color: rgba(255,255,255,0.8); font-weight: 300; }
    .footer-tagline {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.8);
      letter-spacing: 0.1em;
    }
    .footer-nav {
      display: flex;
      gap: 3rem;
    }
    .footer-nav-col {}
    .footer-nav-title {
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }
    .footer-nav-list li {
      margin-bottom: 0.5rem;
    }
    .footer-nav-list a {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.8);
      text-decoration: underline;
      transition: color var(--transition);
    }
    .footer-nav-list a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 1.5rem;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-copy {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.8);
    }
    .footer-copy a {
      color: rgba(200,162,85,0.5);
      transition: color var(--transition);
    }
    .footer-copy a:hover { color: var(--gold); }

    /* ===================== RESTAURACIÓN ===================== */
    #restauracion {
      padding: 7rem 0;
      background: var(--dark);
    }
    .rest-intro {
      font-family: var(--font-serif);
      font-size: clamp(1rem, 1.8vw, 1.25rem);
      font-style: italic;
      color: rgba(255,255,255,0.8);
      text-align: center;
      max-width: 680px;
      margin: 0 auto 4rem;
      line-height: 1.8;
    }
    .rest-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(200,162,85,0.1);
    }
    .rest-card {
      background: var(--navy2);
      padding: 2.8rem 2.2rem;
      transition: background var(--transition);
      position: relative;
      overflow: hidden;
    }
    .rest-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.5s ease;
    }
    .rest-card:hover { background: #1a2d45; }
    .rest-card:hover::before { width: 100%; }

    .rest-card--featured { grid-column: span 2; }

    .rest-card-icon {
      width: 42px; height: 42px;
      color: var(--gold);
      margin-bottom: 1.3rem;
    }
    .rest-card-title {
      font-family: var(--font-serif);
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 0.9rem;
      line-height: 1.3;
    }
    .rest-card-desc {
      font-size: 0.85rem;
      line-height: 1.85;
      color: rgba(255,255,255,0.8);
    }
    .rest-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 1.4rem;
    }
    .rest-badge {
      font-size: 0.6rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(200,162,85,0.4);
      padding: 0.28rem 0.8rem;
    }

    @media (max-width: 1024px) {
      .rest-grid { grid-template-columns: repeat(2, 1fr); }
      .rest-card--featured { grid-column: span 2; }
    }
    @media (max-width: 768px) {
      .rest-grid { grid-template-columns: 1fr; }
      .rest-card--featured { grid-column: span 1; }
    }

    /* ===================== REVEAL ANIMATIONS ===================== */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ===================== RESPONSIVE ===================== */
    @media (max-width: 1024px) {
      .nosotros-grid { gap: 3rem; }
      .servicios-grid { grid-template-columns: repeat(2, 1fr); }
      .proceso-steps { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
      .proceso-steps::before { display: none; }
      .galeria-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 200px); }
      .galeria-item:first-child { grid-column: span 1; grid-row: span 1; }
      .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
      .reseñas-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nosotros-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .stat-item:nth-child(2) { border-right: none; }
      .clientes-grid { grid-template-columns: 1fr; }
      .galeria-grid { grid-template-columns: repeat(2, 1fr); }
      .form-row { grid-template-columns: 1fr; }
      .footer-nav { flex-direction: column; gap: 1.5rem; }
      .footer-top { flex-direction: column; }
      .nosotros-pillars { flex-direction: column; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      #nav { padding: 1.2rem 1.5rem; }
      #nav.scrolled { padding: 0.8rem 1.5rem; }
      .reseñas-grid { grid-template-columns: 1fr; }
      .wa-float { bottom: 1.5rem; right: 1.5rem; }
    }
    @media (max-width: 480px) {
      .servicios-grid { grid-template-columns: 1fr; }
      .galeria-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .galeria-item { height: 180px; }
      .proceso-steps { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ===================== NAV ACTIVE STATE ===================== */
    .nav-links a.nav-active { color: var(--gold); }
    .nav-links a.nav-active::after { width: 100%; }
    .nav-logo { cursor: pointer; }

    /* ===================== PAGE HERO (INTERIOR) ===================== */
    .page-hero {
      padding: 10rem 2rem 6rem;
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(200,162,85,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    .page-hero-inner {
      max-width: 1160px;
      margin: 0 auto;
    }
    .page-hero-eyebrow {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .page-hero-title {
      font-family: var(--font-serif);
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1.2rem;
    }
    .page-hero-title em { font-style: italic; color: var(--gold); }
    .page-hero-desc {
      font-family: var(--font-serif);
      font-size: clamp(1rem, 2vw, 1.2rem);
      font-weight: 300;
      color: rgba(255,255,255,0.8);
      max-width: 540px;
      line-height: 1.75;
    }
    .page-hero-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, transparent, var(--gold));
      margin-bottom: 1.5rem;
    }
    .page-hero-crystal {
      display: block;
      margin-bottom: 1.5rem;
      animation: crystalGlow 4s ease-in-out infinite;
      transform-origin: top center;
    }

    /* ===================== CATALOGO ===================== */
    #catalogo-page { padding: 5rem 0 7rem; background: var(--cream); }
    .catalogo-filters {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-bottom: 3rem;
      justify-content: center;
    }
    .filter-btn {
      font-family: var(--font-sans);
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy);
      border: 1px solid rgba(14,28,47,0.25);
      background: transparent;
      padding: 0.55rem 1.3rem;
      cursor: pointer;
      transition: background var(--transition), color var(--transition), border-color var(--transition);
    }
    .filter-btn:hover, .filter-btn.active {
      background: var(--navy);
      color: var(--gold);
      border-color: var(--navy);
    }
    .catalogo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }
    .catalogo-item {
      position: relative;
      overflow: hidden;
      background: var(--navy2);
      cursor: pointer;
    }
    .catalogo-item-img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      object-position: center;
      display: block;
      transition: transform 0.5s ease;
    }
    .catalogo-item:hover .catalogo-item-img { transform: scale(1.04); }
    .catalogo-item-info {
      padding: 1.2rem 1.3rem;
      background: var(--navy2);
    }
    .catalogo-item-cat {
      font-size: 0.6rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.35rem;
    }
    .catalogo-item-title {
      font-family: var(--font-serif);
      font-size: 1.05rem;
      color: var(--white);
      line-height: 1.35;
    }
    @media (max-width: 1024px) { .catalogo-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .catalogo-grid { grid-template-columns: 1fr; } }

    /* ===================== REPUESTOS ===================== */
    #repuestos-page { padding: 5rem 0 7rem; background: var(--cream); }
    .repuestos-coming {
      text-align: center;
      padding: 5rem 2rem;
      border: 1px solid rgba(200,162,85,0.2);
    }
    .repuestos-coming-icon {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      opacity: 0.5;
    }
    .repuestos-coming-title {
      font-family: var(--font-serif);
      font-size: 2rem;
      font-weight: 300;
      color: var(--navy);
      margin-bottom: 1rem;
    }
    .repuestos-coming-desc {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.8;
      max-width: 480px;
      margin: 0 auto 2rem;
    }
    .repuestos-cats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5px;
      background: rgba(200,162,85,0.15);
      margin-top: 4rem;
    }
    .repuesto-cat {
      background: var(--cream2);
      padding: 2.5rem 2rem;
      text-align: center;
      transition: background var(--transition);
    }
    .repuesto-cat:hover { background: var(--cream); }
    .repuesto-cat-icon { font-size: 1.8rem; margin-bottom: 0.8rem; opacity: 0.6; }
    .repuesto-cat-title {
      font-family: var(--font-serif);
      font-size: 1.1rem;
      color: var(--navy);
      margin-bottom: 0.4rem;
    }
    .repuesto-cat-desc { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; }
    @media (max-width: 768px) { .repuestos-cats { grid-template-columns: 1fr; } }

    /* ===================== NOSOTROS PAGE ===================== */
    #nosotros-page { padding: 5rem 0 7rem; background: var(--cream); }
    .nosotros-generaciones {
      display: flex;
      flex-direction: column;
      gap: 6rem;
    }
    .generacion-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .generacion-block.reverse { direction: rtl; }
    .generacion-block.reverse > * { direction: ltr; }
    .gen-img-wrap {
      position: relative;
      padding-top: 110%;
      background: var(--navy2);
      overflow: hidden;
    }
    .gen-img-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    .gen-img-placeholder {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.8rem;
      color: rgba(255,255,255,0.8);
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }
    .gen-img-placeholder svg { width: 40px; height: 40px; opacity: 0.3; }
    .gen-num {
      font-family: var(--font-serif);
      font-size: 6rem;
      font-weight: 600;
      color: rgba(200,162,85,0.12);
      line-height: 1;
      margin-bottom: -1rem;
    }
    .gen-tag {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.8rem;
    }
    .gen-title {
      font-family: var(--font-serif);
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 300;
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 1.5rem;
    }
    .gen-title em { font-style: italic; color: var(--gold); }
    .gen-body p {
      font-size: 0.9rem;
      line-height: 1.9;
      color: var(--text-light);
      margin-bottom: 1rem;
    }
    .gen-body p:last-child { margin-bottom: 0; }
    .gen-body strong { color: var(--text); font-weight: 500; }
    @media (max-width: 900px) {
      .generacion-block { grid-template-columns: 1fr; gap: 3rem; }
      .generacion-block.reverse { direction: ltr; }
    }

/* =====================================================
   RESTAURACION — ACORDEÓN ILUMINADO
===================================================== */
.rest-accordion-section { padding: 6rem 0 8rem; background: var(--dark); }

.rest-accordion { margin-top: 1rem; }

.rest-item {
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background 0.5s ease;
}
.rest-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }

.rest-item.active {
  background: linear-gradient(135deg, rgba(200,162,85,0.07) 0%, transparent 60%);
}

.rest-item-header {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 0;
  cursor: pointer;
  user-select: none;
}

.rest-item-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.15;
  transition: opacity 0.45s ease, text-shadow 0.5s ease;
  line-height: 1;
  min-width: 4.5rem;
  text-align: right;
  flex-shrink: 0;
}
.rest-item.active .rest-item-num {
  opacity: 1;
  text-shadow: 0 0 40px rgba(200,162,85,0.55);
}

.rest-item-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  transition: color 0.4s ease;
  flex: 1;
}
.rest-item.active .rest-item-title { color: var(--white); }
.rest-item-header:hover .rest-item-title { color: rgba(255,255,255,0.8); }
.rest-item.active .rest-item-header:hover .rest-item-title { color: var(--white); }

.rest-item-arrow {
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.45s ease;
  flex-shrink: 0;
}
.rest-item.active .rest-item-arrow {
  opacity: 1;
  transform: rotate(180deg);
}

.rest-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.65s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.45s ease;
  opacity: 0;
}
.rest-item.active .rest-item-body {
  max-height: 1400px;
  opacity: 1;
}

.rest-item-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  padding: 0.5rem 0 4rem 6.5rem;
}

.rest-item-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.96rem;
  line-height: 1.95;
  margin-bottom: 1.2rem;
}
.rest-item-text p:last-child { margin-bottom: 0; }
.rest-item-text strong { color: rgba(255,255,255,0.88); font-weight: 500; }

.rest-item-media { display: flex; flex-direction: column; gap: 1rem; }

.rest-img-placeholder {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(200,162,85,0.2);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2.5rem 1.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 160px;
  text-align: center;
  flex: 1;
}

@media (max-width: 900px) {
  .rest-item-content {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 2rem;
  }
  .rest-item-media { flex-direction: row; }
}
@media (max-width: 600px) {
  .rest-item-num { font-size: 2.8rem; min-width: 3rem; }
  .rest-item-header { gap: 1.2rem; padding: 2rem 0; }
  .rest-item-media { flex-direction: column; }
}

/* =====================================================
   NOSOTROS — NARRATIVA LARGA
===================================================== */
.nosotros-narrative {
  max-width: 740px;
  margin: 0 auto;
  padding: 5rem 1rem 7rem;
}

.nosotros-opener {
  text-align: center;
  margin: 3rem 0 4.5rem;
}
.nosotros-opener p {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  line-height: 1.35;
}

.nosotros-gen-label {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 4.5rem 0 2.5rem;
}
.nosotros-gen-num {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  opacity: 0.35;
  flex-shrink: 0;
}
.nosotros-gen-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.nosotros-gen-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.nosotros-gen-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--dark);
}

.nosotros-story p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-mid);
  margin-bottom: 1.6rem;
}
.nosotros-story p:last-child { margin-bottom: 0; }
.nosotros-story strong { color: var(--dark); font-weight: 500; }

.nosotros-senses {
  margin: 3rem 0;
  padding: 2.5rem 3rem;
  border-left: 2px solid rgba(200,162,85,0.4);
  background: rgba(200,162,85,0.04);
}
.nosotros-senses p {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.9;
  color: var(--dark);
}

.nosotros-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(200,162,85,0.5), transparent);
  margin: 5rem auto;
}

.nosotros-media {
  margin: 3.5rem 0;
}
.nosotros-media img {
  width: 100%;
  height: auto;
  display: block;
}
.nosotros-media-placeholder {
  width: 100%;
  height: 300px;
  background: rgba(0,0,0,0.04);
  border: 1px dashed rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: rgba(0,0,0,0.2);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nosotros-media-placeholder svg { opacity: 0.3; }

.nosotros-closing {
  margin-top: 4rem;
  padding: 3rem;
  border-top: 1px solid rgba(200,162,85,0.25);
  text-align: center;
}
.nosotros-closing p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.85;
}

@media (max-width: 600px) {
  .nosotros-senses { padding: 1.8rem 1.5rem; }
  .nosotros-gen-num { font-size: 3.5rem; }
}

/* =====================================================
   HERO — ALMENDRO DE CRISTAL
===================================================== */
.hero-crystal-divider {
  background: var(--dark);
  display: flex;
  justify-content: center;
  padding: 0.6rem 0 0;
  margin-top: -1px;
}

.hero-crystal {
  display: block;
  animation: crystalGlow 4s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes crystalGlow {
  0%, 100% { opacity: 0.65; filter: brightness(1); }
  50%       { opacity: 1;    filter: brightness(1.5) drop-shadow(0 0 6px rgba(200,162,85,0.5)); }
}

@media (max-width: 900px) {
  .hero-crystal-divider { display: none; }
}
