/* ========= 8. CRUZ MAYA - DISEÑO ELEGANTE ========= */
.cruz-maya {
  text-align: center;
  margin: 1.5rem auto 1rem;
  padding: 0 1rem;
  position: relative;
  overflow: visible;
}

.cruz-maya .titulo_cruzmaya h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #8B0000;
  text-shadow: 3px 3px 10px rgba(139, 0, 0, 0.3);
  letter-spacing: 1.2px;
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 1rem;
}

.cruz-maya .titulo_cruzmaya h3::before,
.cruz-maya .titulo_cruzmaya h3::after {
  content: "✧";
  color: #8B0000;
  margin: 0 15px;
  font-size: 1.8rem;
  text-shadow: 0 0 8px rgba(139, 0, 0, 0.5);
  font-weight: bold;
}

.cruz-maya h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #8b0000;
  text-shadow: 2px 2px 6px rgba(139, 0, 0, 0.2);
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

.cruz-maya h2::before,
.cruz-maya h2::after {
  content: "✦";
  color: rgba(139, 0, 0, 0.4);
  margin: 0 10px;
  font-size: 1.5rem;
}

.cruz-maya h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8b0000, transparent);
  border-radius: 2px;
}

.cruz-maya p {
  font-family: 'Segoe UI', sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #3e2723;
  opacity: 0.9;
  font-weight: 500;
  max-width: 600px;
  margin: 0.5rem auto 0;
  line-height: 1.4;
}

.cruz-maya-grid {
  position: relative;
  width: 100%;
  max-width: min(850px, 95vw);
  aspect-ratio: 1 / 1;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  background-color: transparent;
  z-index: 1;
  gap: clamp(8px, 1.5vw, 25px);
  overflow: visible;
  padding: clamp(10px, 2vw, 30px);
  isolation: isolate;
}

@keyframes girar-lento {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cruz-maya-grid::before {
  content: "";
  position: absolute;
  inset: -8%;
  background-image: url('../img/ruedasmayas.webp');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.22;
  z-index: 0;
  animation: girar-lento 100s linear infinite;
  transform-origin: center center;
  filter: sepia(0.3) brightness(1.05);
  pointer-events: none;
}

.cruz-maya-grid > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #000;
  font-weight: bold;
  padding: clamp(8px, 1.5vw, 15px);
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .cruz-maya-grid > div:hover {
    transform: scale(1.05);
    z-index: 3;
  }
}

.cruz-maya-grid .glifo-lateral {
  width: clamp(80px, 16vw, 165px) !important;
  max-width: 100%;
  height: auto;
  margin-bottom: clamp(6px, 1vw, 12px);
  z-index: 3;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
  transition: all 0.3s ease;
  object-fit: contain;
}

.cruz-maya-grid .glifo-central {
  width: clamp(170px, 34vw, 340px) !important;
  filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.5));
  animation: pulse-sutil 4s ease-in-out infinite;
  position: relative;
  z-index: 4;
}

@media (hover: hover) and (pointer: fine) {
  .cruz-maya-grid .glifo-lateral:hover,
  .cruz-maya-grid .glifo-central:hover {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transform: translateY(-2px);
  }
}

.cruz-maya-grid div:nth-child(5) {
  z-index: 4;
}

.cruz-maya-grid div:nth-child(5)::before {
  content: "";
  position: absolute;
  inset: -18px;
  background: radial-gradient(
    circle, 
    rgba(255, 215, 0, 0.25) 0%, 
    rgba(255, 215, 0, 0.15) 40%, 
    transparent 75%
  );
  border-radius: 50%;
  z-index: -1;
  animation: pulse-aura 6s ease-in-out infinite;
}

@keyframes pulse-sutil {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes pulse-aura {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

.cruz-maya-grid div {
  font-size: clamp(1.1rem, 1.8vw, 1.8rem);
  font-weight: 800;
  color: #0d1b2a;
  text-shadow: 1px 1px 4px rgba(255, 255, 255, 0.95);
  line-height: 1.2;
  margin-top: 2px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.3px;
}

.cruz-maya-grid div:nth-child(5) div {
  font-size: clamp(1.4rem, 2.4vw, 2.4rem) !important;
  font-weight: 900;
  color: #8b0000;
  text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.95);
  margin-top: 5px;
}

.cruz-maya-grid small {
  font-size: clamp(0.7rem, 1.1vw, 1rem);
  font-weight: 700;
  color: #3e2723;
  opacity: 0.95;
  margin-top: clamp(3px, 0.5vw, 6px);
  display: block;
  letter-spacing: 0.5px;
  font-family: 'Segoe UI', sans-serif;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.95));
  padding: clamp(3px, 0.5vw, 6px) clamp(6px, 1vw, 12px);
  border-radius: 12px;
  border: 1px solid rgba(120, 81, 169, 0.3);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.cruz-maya-grid div:nth-child(2) small {
  background: linear-gradient(135deg, rgba(232, 245, 233, 0.95), rgba(200, 230, 201, 0.95));
  color: #1b5e20;
  font-weight: 700;
}

.cruz-maya-grid div:nth-child(4) small {
  background: linear-gradient(135deg, rgba(227, 242, 253, 0.95), rgba(187, 222, 251, 0.95));
  color: #0d47a1;
  font-weight: 700;
}

.cruz-maya-grid div:nth-child(6) small {
  background: linear-gradient(135deg, rgba(243, 229, 245, 0.95), rgba(225, 190, 231, 0.95));
  color: #4a148c;
  font-weight: 700;
}

.cruz-maya-grid div:nth-child(8) small {
  background: linear-gradient(135deg, rgba(255, 243, 224, 0.95), rgba(255, 224, 178, 0.95));
  color: #e65100;
  font-weight: 700;
}

@media (min-width: 1025px) {
  .cruz-maya-grid {
    max-width: min(680px, 75vw) !important;
    margin: 2rem auto !important;
  }
  
  .cruz-maya-grid .glifo-lateral {
    width: clamp(90px, 16vw, 170px) !important;
  }
  
  .cruz-maya-grid .glifo-central {
    width: clamp(220px, 38vw, 320px) !important;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.6));
  }
  
  .cruz-maya-grid div:nth-child(5)::before {
    inset: -22px;
    background: radial-gradient(
      circle, 
      rgba(255, 215, 0, 0.3) 0%, 
      rgba(255, 215, 0, 0.18) 40%, 
      transparent 75%
    );
  }
  
  .cruz-maya-grid div {
    font-size: clamp(1rem, 1.5vw, 1.6rem) !important;
  }
  
  .cruz-maya-grid div:nth-child(5) div {
    font-size: clamp(1.5rem, 2.1vw, 2.2rem) !important;
  }
  
  .cruz-maya-grid small {
    font-size: clamp(0.65rem, 0.9vw, 0.9rem) !important;
  }
}

@media (max-width: 1024px) {
  .cruz-maya-grid {
    max-width: min(700px, 90vw);
    margin: 2.5rem auto;
    gap: clamp(6px, 1.2vw, 20px);
  }
  
  .cruz-maya-grid::before {
    opacity: 0.26;
    inset: -6%;
  }
  
  .cruz-maya-grid .glifo-lateral {
    width: clamp(80px, 18vw, 180px) !important;
  }
  
  .cruz-maya-grid .glifo-central {
    width: clamp(180px, 35vw, 280px) !important;
  }
  
  .cruz-maya-grid div:nth-child(5)::before {
    inset: -20px;
  }
  
  .cruz-maya-grid div {
    font-size: clamp(1rem, 1.6vw, 1.6rem);
  }
  
  .cruz-maya-grid div:nth-child(5) div {
    font-size: clamp(1.4rem, 2.2vw, 2.2rem) !important;
  }
  
  .cruz-maya-grid small {
    font-size: clamp(0.65rem, 1vw, 0.9rem);
  }
}

@media (max-width: 768px) {
  .cruz-maya {
    margin: 1rem auto 0.5rem;
  }
  
  .cruz-maya h2 {
    font-size: 1.8rem;
  }
  
  .cruz-maya .titulo_cruzmaya h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .cruz-maya .titulo_cruzmaya h3::before,
  .cruz-maya .titulo_cruzmaya h3::after {
    font-size: 1.5rem;
    margin: 0 10px;
  }
  
  .cruz-maya-grid {
    max-width: min(600px, 92vw);
    margin: 2rem auto;
    gap: 10px 12px;
    padding: 15px;
  }
  
  .cruz-maya-grid::before {
    opacity: 0.30;
    inset: -4%;
  }
  
  .cruz-maya-grid .glifo-lateral {
    width: 85px !important;
    margin-bottom: 5px;
  }
  
  .cruz-maya-grid .glifo-central {
    width: 170px !important;
  }
  
  .cruz-maya-grid div:nth-child(5)::before {
    inset: -18px;
  }
  
  .cruz-maya-grid div {
    font-size: 0.95rem;
  }
  
  .cruz-maya-grid div:nth-child(5) div {
    font-size: 1.35rem !important;
  }
  
  .cruz-maya-grid small {
    font-size: 0.65rem;
  }
}

@media (max-width: 576px) {
  .cruz-maya h2 {
    font-size: 1.6rem;
  }
  
  .cruz-maya .titulo_cruzmaya h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }
  
  .cruz-maya .titulo_cruzmaya h3::before,
  .cruz-maya .titulo_cruzmaya h3::after {
    font-size: 1.3rem;
    margin: 0 8px;
  }
  
  .cruz-maya-grid {
    max-width: 95vw;
    margin: 1.5rem auto;
    gap: 8px 10px;
    padding: 12px;
  }
  
  .cruz-maya-grid::before {
    opacity: 0.34;
    inset: -3%;
  }
  
  .cruz-maya-grid .glifo-lateral {
    width: 75px !important;
    margin-bottom: 4px;
  }
  
  .cruz-maya-grid .glifo-central {
    width: 150px !important;
  }
  
  .cruz-maya-grid div:nth-child(5)::before {
    inset: -16px;
  }
  
  .cruz-maya-grid div {
    font-size: 0.85rem;
  }
  
  .cruz-maya-grid div:nth-child(5) div {
    font-size: 1.25rem !important;
  }
  
  .cruz-maya-grid small {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .cruz-maya h2 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }
  
  .cruz-maya .titulo_cruzmaya h3 {
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
  }
  
  .cruz-maya .titulo_cruzmaya h3::before,
  .cruz-maya .titulo_cruzmaya h3::after {
    font-size: 1.2rem;
    margin: 0 6px;
  }
  
  .cruz-maya-grid {
    max-width: 96vw;
    margin: 1.2rem auto;
    gap: 6px 8px;
    padding: 10px;
  }
  
  .cruz-maya-grid::before {
    opacity: 0.38;
  }
  
  .cruz-maya-grid .glifo-lateral {
    width: 68px !important;
    margin-bottom: 3px;
  }
  
  .cruz-maya-grid .glifo-central {
    width: 135px !important;
  }
  
  .cruz-maya-grid div:nth-child(5)::before {
    inset: -14px;
  }
  
  .cruz-maya-grid div {
    font-size: 0.8rem;
  }
  
  .cruz-maya-grid div:nth-child(5) div {
    font-size: 1.15rem !important;
  }
  
  .cruz-maya-grid small {
    font-size: 0.55rem;
  }
}

@media (max-width: 360px) {
  .cruz-maya h2 {
    font-size: 1.2rem;
  }
  
  .cruz-maya .titulo_cruzmaya h3 {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
  }
  
  .cruz-maya .titulo_cruzmaya h3::before,
  .cruz-maya .titulo_cruzmaya h3::after {
    font-size: 1rem;
    margin: 0 4px;
  }
  
  .cruz-maya-grid {
    max-width: 98vw;
    margin: 1rem auto;
    gap: 5px 6px;
    padding: 8px;
  }
  
  .cruz-maya-grid::before {
    opacity: 0.42;
  }
  
  .cruz-maya-grid .glifo-lateral {
    width: 60px !important;
  }
  
  .cruz-maya-grid .glifo-central {
    width: 120px !important;
  }
  
  .cruz-maya-grid div:nth-child(5)::before {
    inset: -12px;
  }
  
  .cruz-maya-grid div {
    font-size: 0.75rem;
  }
  
  .cruz-maya-grid div:nth-child(5) div {
    font-size: 1.05rem !important;
  }
  
  .cruz-maya-grid small {
    font-size: 0.5rem;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .cruz-maya h2 {
    font-size: 1.5rem;
  }
  
  .cruz-maya .titulo_cruzmaya h3 {
    font-size: clamp(1.4rem, 2.8vh, 1.7rem);
    margin-bottom: 0.8rem;
  }
  
  .cruz-maya .titulo_cruzmaya h3::before,
  .cruz-maya .titulo_cruzmaya h3::after {
    font-size: clamp(1.1rem, 2vh, 1.3rem);
    margin: 0 8px;
  }
  
  .cruz-maya-grid {
    max-width: min(500px, 80vh);
    margin: 1.5rem auto;
    gap: 6px 8px;
  }
  
  .cruz-maya-grid::before {
    opacity: 0.30;
  }
  
  .cruz-maya-grid .glifo-lateral {
    width: clamp(60px, 14vh, 95px) !important;
  }
  
  .cruz-maya-grid .glifo-central {
    width: clamp(130px, 28vh, 185px) !important;
  }
  
  .cruz-maya-grid div:nth-child(5)::before {
    inset: -14px;
  }
  
  .cruz-maya-grid div {
    font-size: clamp(0.75rem, 1.8vh, 0.95rem);
  }
  
  .cruz-maya-grid div:nth-child(5) div {
    font-size: clamp(1.1rem, 2.5vh, 1.4rem) !important;
  }
  
  .cruz-maya-grid small {
    font-size: clamp(0.55rem, 1.4vh, 0.75rem);
  }
}

.nombre-nawal {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a1a2e;
  margin-top: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}

.nombre-nawal:hover {
  color: #2d4059;
  transform: translateY(-1px);
}

.nombre-nawal.destacado {
  color: #c0392b;
  font-weight: 900;
  font-size: 1.1rem;
  margin-top: 10px;
  display: inline-block;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 0px 2px 4px rgba(192, 57, 43, 0.2);
}

.nombre-nawal.destacado::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c0392b, transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nombre-nawal.destacado:hover::after {
  transform: scaleX(1);
}

.nombre-nawal.destacado:hover {
  transform: translateY(-2px);
  color: #e74c3c;
}

@media (max-width: 768px) {
  .nombre-nawal {
    font-size: 0.85rem;
    margin-top: 5px;
    font-weight: 700;
  }
  
  .nombre-nawal.destacado {
    font-size: 1rem;
    font-weight: 900;
  }
}

@media (max-width: 480px) {
  .nombre-nawal {
    font-size: 0.8rem;
    font-weight: 700;
  }
  
  .nombre-nawal.destacado {
    font-size: 0.95rem;
    font-weight: 900;
  }
}




















/* =========================
   NAV DRAWER (PALETA CELESTE)
   #1CA5F1 (claro) + #0D84C5 (medio) + #0A6799 (oscuro)
========================= */
:root{
  --nav-dark: #0A6799;
  --nav-light: #1CA5F1;

  --nav-bg: rgba(10, 103, 153, 0.98);      /* base drawer */
  --nav-card: rgba(255,255,255,0.10);      /* tarjetas */
  --nav-border: rgba(255,255,255,0.18);    /* bordes suaves */
  --nav-text: rgba(255,255,255,0.96);
  --nav-muted: rgba(255,255,255,0.78);
  --nav-shadow: rgba(0,0,0,0.55);

  /* ✅ degradado único para TODO el menú */
  --nav-grad: linear-gradient(180deg, rgb(0 76 117 / 98%), rgb(0 29 47 / 92%));
}

/* Header sticky */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999; /* por encima del contenido */
  margin: 0 -10px;
  padding: 10px 10px;

  backdrop-filter: blur(10px);
  background: var(--nav-grad);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.nav{
  max-width: 1150px;
  margin: 0 auto;
  display:flex;
  align-items:center;
  gap: 12px;
}

/* Marca */
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--nav-text);
  font-weight:800;
  padding:8px 10px;
  border-radius:12px;
}

.brand-mark{
  display:inline-grid;
  place-items:center;
  width:34px;
  height:34px;
  border-radius:12px;
  background: linear-gradient(135deg, rgb(0 76 117 / 60%), rgb(0 29 47 / 40%));
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.20);
}

.brand-text{
  font-family:'Cinzel', serif;
  letter-spacing: .3px;
}

/* Botón hamburguesa (solo móvil) */
.nav-toggle{
  margin-left:auto;
  width:46px;
  height:46px;
  border-radius:14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(135deg, rgb(0 76 117 / 40%), rgb(255 255 255 / 6%));
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.20);
  transition: transform .15s ease, background .15s ease;
}

.nav-toggle:hover{
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgb(0 76 117 / 55%), rgb(255 255 255 / 8%));
}

/* Icono CSS (hamburguesa -> X) */
.nav-icon{
  width: 20px;
  height: 2px;
  background: #fff;
  position:relative;
  border-radius: 2px;
  transition: transform .2s ease, background .2s ease;
}
.nav-icon::before,
.nav-icon::after{
  content:"";
  position:absolute;
  left:0;
  width:20px;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition: transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-icon::before{ top:-7px; }
.nav-icon::after{ top:7px; }

/* Overlay */
.nav-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
  display: none;
}

/* Drawer */
.nav-drawer{
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(92vw, 380px);

  background: var(--nav-grad);
  border-left: 1px solid rgba(255,255,255,0.18);
  box-shadow: -20px 0 45px var(--nav-shadow);
  z-index: 9999;

  transform: translateX(110%);
  transition: transform .22s ease;
  display:flex;
  flex-direction:column;
}

/* Header del drawer */
.nav-drawer-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.10);
}

.drawer-title{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--nav-text);
  font-weight:900;
  letter-spacing:.35px;
}

/* Botón cerrar */
.nav-close{
  width:42px;
  height:42px;
  border-radius:14px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  cursor:pointer;
  color: #fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: background .15s ease, transform .15s ease;
}
.nav-close:hover{
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

/* Contenido (scroll) */
.nav-drawer-content{
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  overflow:auto;
}

/* Links (dentro del drawer) */
.nav-link{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--nav-text);
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight:800;
  transition: transform .15s ease, background .15s ease;
}

.nav-link i{
  color: rgba(255,255,255,0.95);
  width: 20px;
  text-align:center;
}

.nav-link:hover{
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

/* CTA Donar */
.nav-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  text-decoration:none;
  color: #062a33;
  padding: 12px 12px;
  border-radius: 14px;
  font-weight:900;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,0.75));
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.20);
}

.nav-cta i{ color:#062a33; }

.nav-divider{
  height:1px;
  background: rgba(255,255,255,0.20);
  margin: 8px 0;
  border-radius: 99px;
}

/* Footer del menú (abajo, sin caja) */
.nav-footer{
  margin-top: auto;
  padding: 12px 14px;

  background: transparent;
  border: none;
  border-radius: 0;

  color: var(--nav-muted);
  font-size: 13px;
  text-align:center;
  line-height: 1.35;
}

.nav-footer-site{
  color: #fff;
  font-weight: 900;
}

/* Estado abierto */
body.nav-open .nav-drawer{ transform: translateX(0); }
body.nav-open .nav-overlay{ display:block; }
body.nav-open{ overflow: hidden; }

/* Hamburguesa a X */
body.nav-open .nav-icon{ background: transparent; }
body.nav-open .nav-icon::before{ top: 0; transform: rotate(45deg); }
body.nav-open .nav-icon::after{ top: 0; transform: rotate(-45deg); }

/* =========================================================
   ✅ CONTROL DE DUPLICADOS + ESCRITORIO SIN CAJAS
========================================================= */

/* ✅ Móvil: no mostrar la barra de escritorio */
.nav-desktop{ display:none; }

/* Escritorio */
@media (min-width: 900px){
  /* ✅ En escritorio: ocultar el drawer y el botón hamburguesa */
  .nav-toggle{ display:none !important; }
  .nav-overlay{ display:none !important; }
  .nav-drawer{ display:none !important; }

  /* ✅ Ocultar elementos "solo móvil" (si los usas en el drawer) */
  .nav-desktop-hide{ display:none !important; }

  /* ✅ Mostrar barra de escritorio */
  .nav{
    justify-content: space-between;
  }

  .nav-desktop{
    margin-left: auto;
    display:flex;
    align-items:center;
    gap: 12px;
  }

  /* ✅ Links SIN CAJAS en escritorio */
  .nav-desktop .nav-link{
    background: transparent !important;
    border: 1px solid transparent !important;
    padding: 10px 10px;
    border-radius: 12px;
  }

  .nav-desktop .nav-link:hover{
    background: rgba(255,255,255,0.14) !important;
    border-color: rgba(255,255,255,0.12) !important;
  }

  /* CTA (Donar) puede quedar como botón */
  .nav-desktop .nav-cta{
    padding: 10px 14px;
    border-radius: 12px;
  }
}

/* ✅ SOLO MÓVIL: separa el botón hamburguesa de la esquina */
@media (max-width: 899px){
  .nav-toggle{
    margin-right: 8px; /* ajusta a 10px/12px si lo quieres más separado */
  }
}

.brand-logo{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

