/* Importación de tipografías modernas */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap");

/* 🎨 Estilo Moderno - Maproart Holístika */
:root {
  --violet-1: #6a1b9a;
  --violet-2: #ab47bc;
  --text: #1f1f1f;
  --muted: #f2f2f2;
  --card-bg: #fff;
  --bg-gradient: linear-gradient(180deg, #faf7ff 0%, #ffffff 100%);
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "Montserrat", "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.6;
}

/* 🧭 HEADER */
.site-header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  padding: 28px 56px;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.bg-soft {
  background: rgba(15, 15, 15, 0.02);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 12px;
  
  transition: 0.25s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-cta {
  background: linear-gradient(90deg, var(--violet-1), var(--violet-2));
  color: #fff !important;
  padding: 8px 16px;

  font-weight: 600;
}

/* 📱 MENU RESPONSIVO */
.burger {
  display: none;
  background: transparent;
  border: none;
  font-size: 26px;
  color: #fff;
  z-index: 300;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Animación cuando se convierte en cruz */
.burger.open i {
  transform: rotate(90deg);
}

/* Menú móvil (overlay a pantalla completa) */
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.96);
  backdrop-filter: blur(6px);
  z-index: 200;
  gap: 26px;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Estilo de los enlaces dentro del overlay */
.nav-links.open a {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links.open a:hover {
  color: #ab47bc;
  transform: scale(1.05);
}

/* Mostrar el botón de menú en móviles */
@media (max-width: 900px) {
  .burger {
    display: block;
  }

  .nav-links {
    display: none;
  }
}

/* 🪶 HERO */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /*darken linear bg tarot*/
  background: linear-gradient(0deg, rgb(70, 23, 145), rgb(76, 5, 82));
  background-image: url("Imagenes/hero.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 60px 20px;
}

.hero-text h1 {
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.75);
  font-size: 42px;
  font-weight: 700;
  margin: 64px 0px;
  line-height: 1.2;
}

.hero-text p {
   text-shadow: 0 4px 15px rgba(0, 0, 0, 0.75);
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin: 8px 0 18px;
}

.hero-cta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 64px 0;
    gap: 12px;
}

.hero-cta .btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 22px;

  text-decoration: none;
  margin: 0 8px;
  text-transform: uppercase;
  font-size: 14px;
}

.hero-cta a {
  text-shadow: 0 4px 12px rgb(0, 0, 0);
}

.hero-cta .btn:hover {
  background: #fff;
  color: var(--violet-1);
}

/* 📘 SECCIONES */
.section {
  padding: 90px 20px 48px 20px;
}

#testimonios {
  padding: 90px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  align-items: center;
}

.grid-sm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--violet-1);
}

/* 📦 TARJETAS */
.card {
  background: var(--card-bg);
 display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  padding: 24px;
  text-align: left;
}

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

.card img {
  width: 100%;
  margin-top: auto;
  margin-bottom: 16px;
}

.card h3 {
  margin-top: auto;
}

.card-tools {
  margin-bottom: 48px;
}

/* 🧘🏻‍♀️ SOBRE MÍ */
.card-tools img {
  width: 100%;

  margin-bottom: 16px;
}

.tools-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tools-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  margin-bottom: 8px;
}

/* 💬 TESTIMONIOS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.testimonials blockquote {
  background: #fff;
  border-left: 5px solid var(--violet-2);
  padding: 20px;
  color: #444;
  font-style: italic;
}

/* 🔗 FOOTER */
.site-footer {
  background: linear-gradient(135deg, var(--violet-1), var(--violet-2));
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.site-footer a {
  color: #ffeaa7;
  text-decoration: none;
  margin: 8px;
}

/* ⚙️ UTILIDADES */
.text-center {
  text-align: center;
  margin: 48px 0;
}

.btn-primary {
  background: linear-gradient(90deg, var(--violet-1), var(--violet-2));
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
}

/* 📱 RESPONSIVE */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1200px) {
  .nav-links {
    display: none;
  }
  .burger {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-cta .btn {
    width: 100%;
  }
  .brand span {
    font-size: 14px;
    margin-right: 16px;
  }
  .site-header {
    padding: 20px 24px;
  }
  .grid-sm {
    grid-template-columns: 1fr;
  }
}
/* --- NUEVOS FONDOS NOTABLES --- */

/* 1. Oro Intenso (Efecto seda/lujo) */
.bg-gold-power {
  background: #fff9e6; /* Color base crema/oro */
  background-image: 
    linear-gradient(135deg, rgba(255, 196, 0, 0.15) 0%, rgba(255, 255, 255, 0) 50%, rgba(212, 175, 55, 0.15) 100%),
    radial-gradient(circle at center, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.4) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* 2. Violeta Místico Fuerte (Transmuta el blanco) */
.bg-mystic-vibe {
  background: #f4eeff;
  background-image: 
    radial-gradient(at 0% 0%, rgba(106, 27, 154, 0.12) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(106, 27, 154, 0.08) 0px, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236a1b9a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM34 4v4h4v2h-4v4h-2V10h-4V8h4V4h2zm0 30v4h4v2h-4v4h-2v-4h-4v-2h4v-4h2zm-30 0v4h4v2H4v4H2v-4H0v-2h2v-4h2zm30-30v4h4v2h-4v4h-2V10h-4V8h4V4h2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* 3. Gradiente Dual (Dorado + Violeta enfrentados) */
.bg-dual-energy {
  background: #ffffff;
  background-image: 
    linear-gradient(45deg, rgba(240, 184, 1, 0.2) 0%, transparent 60%),
    linear-gradient(-45deg, rgba(157, 0, 255, 0.2) 0%, transparent 60%);
}