/* ===== RESET Y BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold-primary: #ffd700;
  --gold-secondary: #ffdf80;
  --dark-bg: rgba(0, 0, 0, 0.9);
  --green-whatsapp: #25d366;
  --red-call: #ff4444;
  --font-primary: 'Cinzel', serif;
  --font-secondary: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
background: url(https://blogger.googleusercontent.com/img/a/AVvXsEhsmHWTmOxMi-MnDmlsAMqtlewW98FIEdCoGOknj38vRtKHOT_rFYMkcRyCxh-NirRBtTdM54GiMfOgBjjRfcrXjeXUEgFfrg-bJsDCus9Ojlgbu6q-jh08PYx3KgEBC8sg1HPyDeg2bSFA1iLHBPYgKyaYCzCZqpaJWWNGQewHBA3OqqSedjLyo5rA=s16000);
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: #fff;
  background-color: black;
   background-attachment: fixed;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
  background: linear-gradient(135deg, #591717 0%, #8B0000 100%);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: cinzel;
  color: var(--gold-primary);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.phone-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  font-size: 1.5rem;
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #fff;
}

.call-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  animation: pulse 2s infinite;
}

.description2 {
  font-size: 0.9rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 0.5rem;
}

/* ===== ANIMACIONES ===== */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

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

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

@keyframes glow {
  0%, 100% { text-shadow: 0 0 20px var(--gold-primary); }
  50% { text-shadow: 0 0 40px var(--gold-primary), 0 0 60px var(--gold-primary); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.main-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* ===== TÍTULOS MÍSTICOS ===== */
.titulo-mistico {
  text-align: center;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}

.titulo-dorado {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(45deg, var(--gold-primary) 25%, #fff3b0 50%, var(--gold-primary) 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glow 3s ease-in-out infinite;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding: 0 2rem;
}

.separador-aura {
  height: 3px;
  width: 50%;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent 10%, var(--gold-primary) 50%, transparent 90%);
  position: relative;
  animation: float 3s ease-in-out infinite;
}

/* ===== DESCRIPCIONES ===== */
.description {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  line-height: 1.8;
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.8) 30%, rgba(20, 20, 20, 0.9) 70%);
  padding: 2rem;
  border: 2px solid;
  border-image: linear-gradient(45deg, var(--gold-primary), #ffdf80, transparent, #ffdf80, var(--gold-primary)) 1;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  animation: fadeIn 1s ease-out;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.1), inset 0 0 20px rgba(255, 215, 0, 0.1);
  margin: 2rem 0;
  text-align: justify;
}

.description::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 25%, rgba(255, 215, 0, 0.05) 50%, transparent 75%);
  animation: slideIn 5s linear infinite;
  z-index: -1;
}

/* ===== ANUNCIOS MÍSTICOS ===== */
.mystic-announcement {
  position: relative;
  max-width: 800px;
  margin: 3rem auto;
  padding: 2rem;
  text-align: center;
  overflow: hidden;
  transform: translateZ(0);
}

.mystic-proclamation {
  position: relative;
  z-index: 3;
  font-family: var(--font-primary);
  margin: 0;
  line-height: 1.4;
}

.mystic-text {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(45deg, var(--gold-primary) 25%, #fff3b0 50%, var(--gold-primary) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  animation: glow 4s linear infinite;
}

.mystic-flare {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold-primary);
  text-shadow: 0 0 15px var(--gold-primary), 0 0 30px var(--gold-primary), 0 0 45px var(--gold-primary);
  animation: pulse 1.5s ease-in-out infinite;
  margin-top: 1rem;
}

/* ===== TARJETAS MÍSTICAS ===== */
.mystic-card {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 20px;
  overflow: hidden;
  transform: translateZ(0);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.mystic-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.9) 30%, transparent 100%);
  z-index: 1;
}

.mystic-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.4s ease;
}

.mystic-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 90%;
}

.mystic-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(45deg, var(--gold-primary), #fff3b0, var(--gold-primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  margin: 0;
  animation: glow 2s ease-in-out infinite;
}

.mystic-subtitle {
  font-size: 1.5rem;
  color: var(--gold-primary);
  margin: 1.5rem 0;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
  position: relative;
}

.mystic-subtitle::after {
  content: '';
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== BOTONES ===== */
.mystic-button, .button, .whatsapp-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2.5rem;
  background: linear-gradient(45deg, var(--gold-primary), #b8860b, var(--gold-primary));
  border: 2px solid var(--gold-primary);
  border-radius: 50px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
  cursor: pointer;
  font-size: 1.1rem;
  margin: 1rem 0;
}

.mystic-button:hover, .button:hover, .whatsapp-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 60px rgba(255, 215, 0, 0.5);
}

.whatsapp-button {
  background: linear-gradient(45deg, var(--green-whatsapp), #128c7e, var(--green-whatsapp));
  border-color: var(--green-whatsapp);
  color: #fff;
}

/* ===== CONTENEDOR ARCANO ===== */
.arcane-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.arcane-portal-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  position: relative;
  background: var(--dark-bg);
  border-radius: 20px;
  padding: 2rem;
  border: 2px solid transparent;
  border-image: linear-gradient(45deg, var(--gold-primary), #ffdf80) 1;
  animation: glow 3s linear infinite;
}

.arcane-visual-section {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.arcane-main-visual {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.arcane-emblem {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 200px;
  filter: drop-shadow(0 0 10px var(--gold-primary));
  animation: float 3s ease-in-out infinite;
}

.arcane-content-section {
  position: relative;
  z-index: 2;
  text-align: center;
}

.arcane-main-title {
  font-family: var(--font-primary);
  font-size: 3rem;
  color: var(--gold-primary);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  margin-bottom: 2rem;
}

.arcane-highlight-name {
  background: linear-gradient(45deg, var(--gold-primary), #ffdf80);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glow 2s ease-in-out infinite;
}

.arcane-description-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #ffdf80;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
  backdrop-filter: blur(5px);
  padding: 2rem;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.7);
  position: relative;
  text-align: justify;
}

.arcane-gold-text {
  color: var(--gold-primary);
  font-weight: bold;
  text-shadow: 0 0 15px var(--gold-primary);
}

/* ===== PALABRAS CONTAINER ===== */
#wordsContainer {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.9) 30%, rgba(20, 20, 20, 0.95) 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.1);
}

#wordsContainer strong {
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffdf80;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(5px);
  animation: float 6s ease-in-out infinite;
  font-family: var(--font-primary);
  text-transform: lowercase;
  letter-spacing: 1px;
}

#wordsContainer strong::first-letter {
  text-transform: uppercase;
}

#wordsContainer strong:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: var(--gold-primary);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  color: var(--gold-primary);
  background: rgba(0, 0, 0, 0.8);
  z-index: 2;
}

/* ===== TESTIMONIOS ===== */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
}

.testimonial, .testimonial2 {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial:hover, .testimonial2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-date {
  font-size: 0.9rem;
  color: var(--gold-secondary);
  margin-bottom: 1rem;
}

.testimonial-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
}

.testimonial-name, .testimonial-name2 {
  font-weight: bold;
  color: var(--gold-primary);
  margin-bottom: 0.25rem;
}

.testimonial-city, .testimonial-city2 {
  font-size: 0.9rem;
  color: #ccc;
}

/* ===== GALERÍA MASONRY ===== */
.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2rem;
}

.masonry-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.masonry-grid-item .mystic-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1rem 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.masonry-grid-item:hover .mystic-content {
  transform: translateY(0);
}

.masonry-grid-item .mystic-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.masonry-grid-item .mystic-subtitle {
  font-size: 1rem;
  margin: 0;
}

.masonry-grid-item:hover {
  transform: scale(1.05);
}

.masonry-grid-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.masonry-grid-item:hover img {
  transform: scale(1.1);
}

/* ===== FORMULARIO WHATSAPP ===== */
.whatsapp-form {
  background: rgba(0, 0, 0, 0.9);
  padding: 2rem;
  border-radius: 20px;
  max-width: 600px;
  margin: 3rem auto;
  border: 2px solid var(--green-whatsapp);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.3);
}

.whatsapp-form img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.whatsapp-form form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.whatsapp-form label {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
}

.whatsapp-form input[type="text"],
.whatsapp-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
}

.whatsapp-form input[type="text"]:focus,
.whatsapp-form textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}
section.container img {
    max-width: 90%;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
}section#whatsapp-container {
    font-size: 16px !important;
    width: 290px !important;
    background: linear-gradient(45deg, #452f2f00, #00630a) !important;
}h2#fire {
    text-align: center;
    text-transform: uppercase;
}a.more-info,.arcane-connection-btns,section#whatsapp-container {
    text-align: center;
    background: green;
    color: white;
    padding: 20px;
    margin: 0 auto;
    display: block;
    width: 197px;
    text-decoration: auto;
    font-size: 26px;
    border-radius: 24px;
}a.arcane-phone-link {
    color: white;
    font-size: 15px;
    text-decoration: none;
}
.whatsapp-form .btn {
  background: linear-gradient(45deg, var(--green-whatsapp), #128c7e);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
  width: 100%;
}

.whatsapp-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* ===== BANNER WHATSAPP ===== */
.whatsapp-banner {
  background: linear-gradient(135deg, var(--green-whatsapp), #128c7e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-banner img {
  width: 60px;
  height: 60px;
  margin-right: 1.5rem;
}

.whatsapp-content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.whatsapp-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

/* ===== BOTONES FLOTANTES ===== */
.contenedor-botones-misticos {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 9999;
}

.boton-magico {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transform: translateZ(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: 2px solid;
  backdrop-filter: blur(10px);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.llamada-btn {
  border-color: var(--red-call);
  box-shadow: 0 0 40px rgba(255, 68, 68, 0.3);
}

.whatsapp-btn {
  border-color: var(--green-whatsapp);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.3);
}

.orb-magico {
  position: relative;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icono-magico {
  font-size: 1.5rem;
  z-index: 3;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  color: #fff;
}

.texto-boton {
  font-family: var(--font-secondary);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.boton-magico:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.boton-magico:hover .icono-magico {
  transform: rotate(360deg);
}

.llamada-btn:hover {
  box-shadow: 0 0 60px rgba(255, 68, 68, 0.6);
}

.whatsapp-btn:hover {
  box-shadow: 0 0 60px rgba(37, 211, 102, 0.6);
}

/* ===== FOOTER ===== */
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 2rem;
  margin-top: 4rem;
  border-top: 2px solid var(--gold-primary);
}

#footer-info {
  font-size: 0.9rem;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .main-container {
    padding: 1rem;
  }
  
  .arcane-portal-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .arcane-main-title {
    font-size: 2rem;
  }
  
  .arcane-description-text {
    padding: 1rem;
    font-size: 1.1rem;
  }
  
  .contenedor-botones-misticos {
    bottom: 1rem;
    right: 1rem;
  }
  
  .boton-magico {
    padding: 0.8rem 1.5rem;
  }
  
  .orb-magico {
    width: 40px;
    height: 40px;
  }
  
  .icono-magico {
    font-size: 1.2rem;
  }
  
  .texto-boton {
    font-size: 0.9rem;
  }
  
  .testimonials-container {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  
  .masonry-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 1rem;
  }
  
  .whatsapp-form {
    margin: 2rem 1rem;
    padding: 1.5rem;
  }
  
  .whatsapp-form form {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .titulo-dorado {
    font-size: 2rem;
  }
  
  .description {
    padding: 1.5rem;
    font-size: 1rem;
  }
  
  .mystic-title {
    font-size: 2rem;
  }
  
  .mystic-subtitle {
    font-size: 1.2rem;
  }
  
  .mystic-button, .button, .whatsapp-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* ===== UTILIDADES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

/* ===== EFECTOS ESPECIALES ===== */
.glow-effect {
  animation: glow 2s ease-in-out infinite alternate;
}

.float-effect {
  animation: float 3s ease-in-out infinite;
}

.fade-in {
  animation: fadeIn 1s ease-out;
}

.slide-in {
  animation: slideIn 0.5s ease-out;
}
