/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
  color: #000;
}

body, html {
  background: transparent;
}

/* Cabecera */
.site-header {
  position: sticky;
  top: 0;
  background: #fff8be;
  background-image: url('simbolos-ocultismo.svg');
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center top;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand-text h1 {
  font-size: 18px;
  line-height: 1.1;
  margin: 0;
  text-transform: uppercase;
  font-family: 'Cinzel', serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.brand-text .sub {
  font-size: 10px;
  letter-spacing: 1px;
  margin: 0;
}

.menu-btn {
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero .video-wrapper {
  position: relative;
  width: 100%;
  max-height: 380px;
  overflow: hidden;
}

.hero .video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.hero-cta {
  margin: 14px auto;
  text-align: center;
  font-size: 14px;
  color: #826200;
  max-width: 90%;
}

.hero-cta a {
  color: #b28d00;
  text-decoration: none;
}

/* Botón de play centrado */
#playPauseBtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.85);
  border: none;
  color: #000;
  font-size: 40px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

#playPauseBtn:hover {
  background: rgba(255, 255, 255, 1);
}

#particles-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 3;
  background: transparent;
}

/* Grid de productos */
.grid-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1200px;
  padding: 40px 20px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.product-desc {
  padding: 16px 12px 18px 12px;
  background: #fff;
  border-radius: 0 0 18px 18px;
  text-align: center;
}

.product-desc h3 {
  font-size: 1.7rem;
  margin: 0 0 10px 0;
  color: #a17619;
  font-family: 'Special Elite', cursive;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(212,175,55,0.18), 0 1px 0 #fff8be;
  text-transform: uppercase;
}

.product-desc p {
  font-size: 0.98rem;
  color: #333;
  margin: 0;
  line-height: 1.4;
}

/* Bienvenida */
.bienvenida-container {
  background: linear-gradient(120deg, #fff8be 80%, #d4af37 100%);
  background-image: url('simbolos-ocultismo.svg');
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center top;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(212,175,55,0.10);
  margin: 32px auto 0 auto;
  padding: 32px 18px 24px 18px;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bienvenida-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  margin-bottom: 18px;
  border: 4px solid #d4af37;
}

.bienvenida-titulo {
  font-family: 'Special Elite', cursive;
  font-size: 2rem;
  color: #a17619;
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: 700;
}

.bienvenida-texto {
  font-size: 1.15rem;
  color: #3a2c0a;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Arial', serif;
}

/* Menú móvil */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 248, 190, 0.98);
  background-image: url('simbolos-ocultismo.svg');
  background-size: cover;
  background-repeat: repeat;
  background-position: center top;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

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

.mobile-menu-content {
  background: rgba(255,255,255,0.92);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(212,175,55,0.18);
  padding: 36px 28px;
  min-width: 70vw;
  max-width: 340px;
  text-align: center;
}

.mobile-menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-content li {
  margin: 18px 0;
}
.mobile-menu-content a {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  color: #a17619;
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 700;
  transition: color 0.2s;
}
.mobile-menu-content a:hover {
  color: #d4af37;
}

@media (max-width: 900px) {
  .mobile-menu {
    display: none;
  }
  .mobile-menu.open {
    display: flex;
  }
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
} 

/* Botón flotante WhatsApp */
.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 3000;
  background: none;
  border: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.18);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.18s;
  padding: 0;
}
.whatsapp-btn:hover {
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 8px 32px rgba(37,211,102,0.22);
}

/* Modal WhatsApp */
.whatsapp-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.38);
  z-index: 4000;
  align-items: center;
  justify-content: center;
}
.modal-contacto {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  width: 100%;
}

@media (max-width: 768px) {
  .modal-contacto {
    flex-direction: column;
  }
  
  .modal-contacto .btn-consulta,
  .modal-contacto .cta-wa-btn {
    width: 100%;
    margin-right: 0 !important;
  }
}
button#whatsapp-btn svg {
  width: 50px;
  height: 50px;
}
.cta-img-consulta{
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  background: #000;
}
.cta-img-wrapper{
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  background: #000;
}
.whatsapp-modal.open {
  display: flex;
}
.whatsapp-modal-content {
  background: linear-gradient(120deg, #fff8be 80%, #d4af37 100%);
   background-size: cover;
  background-repeat: repeat-x;
  background-position: center top;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(212,175,55,0.18);
  padding: 36px 28px 32px 28px;
  min-width: 320px;
  max-width: 95vw;
  text-align: center;
  position: relative;
  animation: modalIn 0.4s cubic-bezier(.7,-0.2,.5,1.4);
}
@keyframes modalIn {
  0% { transform: scale(0.7) translateY(60px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.whatsapp-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #a17619;
  cursor: pointer;
  font-weight: bold;
  z-index: 2;
  transition: color 0.2s;
}
.whatsapp-modal-close:hover {
  color: #b30000;
}
.whatsapp-modal-body h2 {
  font-family: 'Special Elite', cursive;
  color: #a17619;
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.whatsapp-modal-body p {
  color: #3a2c0a;
  font-size: 1.08rem;
  margin-bottom: 22px;
  line-height: 1.5;
}
.whatsapp-modal-btn {
  display: inline-block;
  background: #25D366;
  color: #fff;
  font-family: 'Special Elite', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37,211,102,0.18);
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
.whatsapp-modal-btn:hover {
  background: #128C7E;
  color: #fff8be;
  transform: scale(1.06);
} 

/* CTA Video Consulta Gratis */
.cta-video-consulta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
  background: linear-gradient(120deg, #fff8be 80%, #d4af37 100%);
  background-image: url('simbolos-ocultismo.svg');
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center top;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(212,175,55,0.10);
  margin: 48px auto 0 auto;
  padding: 36px 24px;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}
.cta-video-wrapper {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-video-wrapper video {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  background: #000;
}
.cta-video-content {
  flex: 2 1 340px;
  min-width: 260px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.cta-video-content h2 {
  font-family: 'Special Elite', cursive;
  color: #a17619;
  font-size: 2rem;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.cta-video-content p {
  color: #3a2c0a;
  font-size: 1.13rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.cta-wa-btn {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37,211,102,0.18);
  transition: background 0.2s, color 0.2s, transform 0.18s;
  margin-top: 8px;
}
.cta-wa-btn:hover {
  background: #128C7E;
  color: #fff8be;
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .cta-video-consulta {
    flex-direction: column;
    gap: 24px;
    padding: 28px 8px;
  }
  .cta-video-content {
    align-items: center;
    text-align: center;
  }
} 

/* Footer */
.site-footer {
  background: #fff8be;
  background-image: url('simbolos-ocultismo.svg');
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center top;
  border-top: 3px solid #d4af37;
  box-shadow: 0 -2px 16px rgba(212,175,55,0.10);
  padding: 36px 0 18px 0;
  margin-top: 48px;
  position: relative;
  z-index: 10;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-logo-titulo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid #d4af37;
  background: #fff;
  box-shadow: 0 2px 8px rgba(212,175,55,0.10);
}
.hero-cta{
  font-family: 'Special Elite', cursive;
  font-size: 15px;
  color: #a17619;
  font-weight: 400;
  letter-spacing: 1px;
}
.footer-titulo {
  font-family: cinzel;
  font-size: 11px;
  color: #a17619;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 #fff8be;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.footer-links a {
  color: #a17619;
  font-family: 'Special Elite', cursive;
  font-size: 1.05rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #b30000;
}
.footer-sep {
  color: #d4af37;
  font-size: 1.2rem;
  font-weight: bold;
}
.footer-copy {
  color: #826200;
  font-size: 0.98rem;
  text-align: center;
  margin-top: 6px;
}
@media (max-width: 600px) {
  .footer-logo-titulo {
    flex-direction: column;
    gap: 6px;
  }
  .footer-content {
    gap: 10px;
    padding: 0 8px;
  }
} 

/* Footer Accordion */
.footer-accordion {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 8px auto;
}
.footer-accordion-item {
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(212,175,55,0.06);
}
.footer-accordion-btn {
  width: 100%;
  background: #fff8be;
  color: #a17619;
  font-family: 'Special Elite', cursive;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  outline: none;
  padding: 14px 18px;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid #d4af37;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.footer-accordion-btn[aria-expanded="true"] {
  background: #d4af37;
  color: #fff;
}
.footer-accordion-btn::after {
  content: '\25BC';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s;
  font-size: 1.1em;
  color: #a17619;
}
.footer-accordion-btn[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(180deg);
  color: #fff;
}
.footer-accordion-panel {
  max-height: 0;
  overflow: hidden;
  background: #fffbe6;
  color: #3a2c0a;
  font-size: 0.98rem;
  padding: 0 18px;
  transition: max-height 0.35s cubic-bezier(.7,-0.2,.5,1.4), padding 0.2s;
}
.footer-accordion-panel p {
  margin: 14px 0 14px 0;
}
.footer-accordion-btn[aria-expanded="true"] + .footer-accordion-panel {
  max-height: 200px;
  padding: 10px 18px 18px 18px;
} 

.cta-img-consulta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 36px;
  background: linear-gradient(120deg, #fff8be 80%, #d4af37 100%);
  background-image: url('simbolos-ocultismo.svg');
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center top;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(212,175,55,0.10);
  margin: 48px auto 0 auto;
  padding: 36px 24px;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
}
.cta-img-wrapper {
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-video-img {
  width: 100%;
  max-width: 420px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  background: #000;
  object-fit: cover;
}
.cta-img-content {
  flex: 2 1 340px;
  min-width: 260px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.cta-img-content h2 {
  font-family: cinzel;
  color: #a17619;
  font-size: 2rem;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.cta-img-content p {
  color: #3a2c0a;
  font-size: 1.13rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.cta-img-content .cta-wa-btn {
  display: inline-flex;
  align-items: center;
  background: #25D366;
  color: #fff;
  font-family: cinzel;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37,211,102,0.18);
  transition: background 0.2s, color 0.2s, transform 0.18s;
  margin-top: 8px;
}
.cta-img-content .cta-wa-btn:hover {
  background: #128C7E;
  color: #fff8be;
  transform: scale(1.06);
}
@media (max-width: 900px) {
  .cta-img-consulta {
    flex-direction: column;
    gap: 24px;
    padding: 28px 8px;
  }
  .cta-img-content {
    align-items: center;
    text-align: center;
  }
  .cta-img-wrapper {
    max-width: 100%;
  }
  .cta-video-img {
    max-width: 100%;
  }
} 

.btn-vermas {
  display: block;
  margin: 18px auto 0 auto;
  padding: 12px 36px;
  background: linear-gradient(90deg, #fff8be 60%, #d4af37 100%);
  color: #a17619;
  font-family: 'Special Elite', cursive;
  font-size: 1.08rem;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.18s, border 0.2s;
  text-align: center;
  letter-spacing: 1px;
}
.btn-vermas:hover {
  background: linear-gradient(90deg, #d4af37 60%, #fff8be 100%);
  color: #fff;
  border-color: #d4af37;
  transform: scale(1.06);
} 

.modal-servicio {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background:#000000cf;
  z-index: 5000;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
}
.modal-servicio.open {
  display: flex;
}
.modal-servicio-content {
  background: linear-gradient(120deg, #fff8be 80%, #d4af37 100%);
   background-size: cover;
  background-repeat: repeat-x;
  background-position: center top;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(212,175,55,0.18);
  padding: 44px 32px 36px 32px;
  min-width: 320px;
  max-width: 700px;
  width: 90vw;
  max-height: 90vh;
  text-align: left;
  position: relative;
  animation: modalIn 0.4s cubic-bezier(.7,-0.2,.5,1.4);
  overflow-y: auto;
}
.modal-servicio-close {
  position: absolute;
  top: -8px;
  right: 10px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #a17619;
  cursor: pointer;
  font-weight: bold;
  z-index: 2;
  transition: color 0.2s;
}
.modal-servicio-close:hover {
  color: #b30000;
}
 
.modal-servicio-body h2 {
   color: #a17619;
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: 1px;
  font-family: 'Special Elite', cursive;
  text-align: center; 
}
.modal-servicio-info {
  color: #3a2c0a;
  font-size: 1.13rem;
  line-height: 1.6;
  font-family: 'Special Elite', cursive;
  margin-bottom: 8px;
}
@media (max-width: 600px) {
  .modal-servicio-content {
    padding: 24px 6vw 18px 6vw;
    min-width: 0;
    max-width: 98vw;
  }
  .modal-servicio-body h2 {
    font-size: 1.3rem;
  }
} 

.envivo-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f3f3f3;
  color: #b30000;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  font-weight: 700;
  border-radius: 18px;
  padding: 6px 18px 6px 12px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 2;
  letter-spacing: 1px;
}
.envivo-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e60026;
  margin-right: 8px;
  box-shadow: 0 0 4px 1px #e60026;
  vertical-align: middle;
}
.video-consulta-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  gap: 10px;
}
.video-consulta-btn-wrapper svg{
  width: 12px;
  height: 12px;
  fill: #ffffff;
  padding-top: 4px;
}
.btn-consulta {    
  display: inline-block;
  background: linear-gradient(90deg, #94241f 60%, #ff2d2d 100%);
  color: #ffffff;
  font-family: cinzel;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 30px;
  border: 2px solid #d4af37;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(212,175,55,0.10);
  transition: background 0.2s, color 0.2s, transform 0.18s, border 0.2s;
  letter-spacing: 1px;
  text-align: center;
  width: fit-content;
  max-width: 100%;
}
.btn-consulta:hover {
  background: linear-gradient(90deg, #d4af37 60%, #fff8be 100%);
  color: #fff;
  border-color: #d4af37;
  transform: scale(1.06);
} 

.modal-amarre-content {
  font-family: 'Special Elite', cursive;
  font-size: 1.08rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.modal-amarre-content h3, .modal-amarre-content h4 {
  color: #a17619;
  font-family: 'Special Elite', cursive;
  font-weight: 700;
  margin-top: 18px;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.modal-amarre-content ul {
  margin: 0 0 12px 18px;
  padding: 0 0 0 18px;
}
.modal-amarre-content li {
  margin-bottom: 6px;
}
.modal-amarre-content blockquote {
  background: #fffbe6;
  border-left: 4px solid #d4af37;
  margin: 14px 0 10px 0;
  padding: 10px 18px;
  font-style: italic;
  color: #3a2c0a;
  border-radius: 8px;
  font-size: 1rem;
}
.modal-amarre-content .firma {
  display: block;
  margin-top: 6px;
  color: #a17619;
  font-size: 0.98em;
  font-style: normal;
  font-family: 'Special Elite', cursive;
} 

.modal-check-svg {
  display: inline-block;
  vertical-align: middle;
  margin-right: 7px;
  margin-bottom: 2px;
  width: 18px;
  height: 18px;
  fill: #e60026;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
} 

.modal-img-elegante {
  display: block;
  margin: 0 auto 18px auto;
  max-width: 320px;
  width: 100%;
  border-radius: 18px;
  border: 4px solid #d4af37;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  background: #fffbe6;
} 

.mapa-cta-section {
  background: linear-gradient(120deg, #fff8be 80%, #d4af37 100%);
  background-image: url('simbolos-ocultismo.svg');
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center top;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(212,175,55,0.10);
  margin: 48px auto 0 auto;
  padding: 36px 24px 32px 24px;
  max-width: 1100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.mapa-cta-titulo {
  font-family: 'Cinzel', serif;
  color: #a17619;
  font-size: 1.4rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.btn-mapa-modal {    display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #fff8be 60%, #d4af37 100%);
  color: #a17619;
  font-family: cinzel;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 30px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.10);
  cursor: pointer;
  padding: 12px 36px;
  margin-bottom: 24px;
  margin-top: 0;
  transition: background 0.2s, color 0.2s, transform 0.18s, border 0.2s;
  letter-spacing: 1px;
}
.btn-mapa-modal:hover {
  background: linear-gradient(90deg, #d4af37 60%, #fff8be 100%);
  color: #fff;
  border-color: #d4af37;
  transform: scale(1.06);
}
.mapa-svg-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mapa-usa-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto 10px auto;
  display: block;
}
.mapa-leyenda {
  color: #a17619;
  font-size: 1.05rem;
  font-family: 'Special Elite', cursive;
  margin-top: 8px;
}
.modal-mapa-content {
  max-width: 900px;
  width: 98vw;
}
.modal-mapa-titulo {
  font-family: 'Cinzel', serif;
  color: #a17619;
  font-size: 1.3rem;
  margin: 18px 0 10px 0;
  letter-spacing: 1px;
  text-align: center;
}
.modal-mapa-explicacion {
  font-family: 'Special Elite', cursive;
  color: #3a2c0a;
  font-size: 1.08rem;
  margin-bottom: 18px;
  line-height: 1.6;
  text-align: center;
}
.modal-mapa-listados {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 18px;
}
.modal-mapa-estado {
  background: #fffbe6;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(212,175,55,0.08);
  padding: 16px 18px 12px 18px;
  min-width: 180px;
  max-width: 220px;
 }
.modal-mapa-estado h3 {
  font-family: 'Special Elite', cursive;
  color: #a17619;
  font-size: 1.08rem;
  margin-bottom: 8px;
  text-align: center;
}
.modal-mapa-estado ul {
  list-style: disc inside;
  color: #3a2c0a;
  font-size: 0.98rem;
  margin: 0;
  padding: 0;
}
.modal-mapa-estado li {
  margin-bottom: 4px;
}
.modal-mapa-contacto {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .mapa-cta-section {
    padding: 18px 4px 18px 4px;
  }
  .modal-mapa-listados {
    flex-direction: column;
    gap: 12px;
  }
  .modal-mapa-estado {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}