:root {
  --cream: #f6f0e6;
  --sage: #a8c3a0;
  --forest: #315944;
  --lavender: #b8a4d8;
  --sky: #7fafd4;
  --night: #24364b;
  --gold: #d6b56d;
  --text: #243028;
  --white: #fffaf2;
  --shadow: 0 18px 45px rgba(36, 54, 75, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--cream);
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 6%;
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,.05);
}

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--forest); }
.brand-icon { font-size: 44px; color: var(--gold); }
.brand strong { display: block; font-size: 36px; line-height: .8; font-weight: 500; }
.brand small { display: block; margin-top: 8px; letter-spacing: 4px; text-transform: uppercase; }

.nav { margin-left: auto; display: flex; gap: 22px; align-items: center; }
.nav a { color: var(--night); text-decoration: none; font-family: Arial, sans-serif; font-size: 14px; text-transform: uppercase; }
.nav a:hover { color: var(--gold); }
.menu-btn { display: none; margin-left: auto; border: 0; background: transparent; font-size: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--lavender);
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  cursor: pointer;
}
.btn-dark { background: var(--forest); color: var(--white); border-color: var(--gold); box-shadow: var(--shadow); }
.btn-light { background: rgba(255,255,255,.55); color: #6b5497; }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  padding: 70px 8%;
  background:
    radial-gradient(circle at 20% 20%, rgba(184,164,216,.45), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(127,175,212,.45), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f6f0e6 45%, #e8f1eb 100%);
  overflow: hidden;
}

.eyebrow { color: #a37d36; text-transform: uppercase; letter-spacing: 2px; font: 700 13px Arial, sans-serif; }
h1 { font-size: clamp(46px, 6vw, 82px); line-height: .96; color: var(--forest); margin: 8px 0 12px; font-weight: 500; }
h2 { font-size: clamp(34px, 4vw, 54px); line-height: 1.05; color: var(--forest); font-weight: 500; margin: 8px 0 18px; }
h3 { color: #6b5497; text-transform: uppercase; letter-spacing: 1px; font: 700 15px Arial, sans-serif; }
p { font-size: 18px; line-height: 1.65; }
.script { color: #a37d36; font-size: 28px; font-style: italic; }
.intro { max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-image { position: relative; }
.hero-image img { width: 100%; max-height: 560px; object-fit: cover; border-radius: 40px; box-shadow: var(--shadow); }
.floating-card { position: absolute; right: -12px; bottom: 28px; background: rgba(49,89,68,.92); color: var(--white); padding: 24px; border-radius: 26px; border: 1px solid var(--gold); font-size: 22px; box-shadow: var(--shadow); }

.quick-services { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; padding: 34px 6%; background: var(--white); text-align: center; }
.quick-services article { padding: 18px 26px; border-right: 1px solid rgba(214,181,109,.45); }
.quick-services article:last-child { border-right: 0; }
.quick-services span { font-size: 34px; color: var(--lavender); }
.quick-services p { font-size: 15px; margin: 0; }

.two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; padding: 90px 10%; align-items: center; }
.section-soft { background: linear-gradient(135deg, rgba(184,164,216,.15), rgba(168,195,160,.18)); }
.quote { color: #7c62a8; font-style: italic; }
.values, .oracle-card { background: var(--forest); color: var(--white); border: 1px solid var(--gold); border-radius: 36px; padding: 42px; box-shadow: var(--shadow); }
.values div { display: grid; gap: 4px; padding: 16px 0; border-bottom: 1px solid rgba(214,181,109,.3); }
.values strong { color: var(--gold); font-size: 26px; }
.values span { font-size: 18px; }

.cards-section { padding: 90px 8%; text-align: center; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 34px; text-align: left; }
.cards article { background: rgba(255,250,242,.78); border: 1px solid rgba(214,181,109,.35); border-radius: 28px; padding: 30px; box-shadow: var(--shadow); }
.section-dark { padding: 90px 8%; color: var(--white); text-align: center; background: linear-gradient(135deg, var(--night), var(--forest)); }
.section-dark h2 { color: var(--white); }
.dark-cards article { background: rgba(255,255,255,.08); color: var(--white); }
.oracle-card { text-align: center; }
.oracle-card span { font-size: 62px; color: var(--gold); }
.oracle-card h3 { color: var(--gold); }

.contact { padding: 90px 8%; text-align: center; background: var(--cream); }
form { max-width: 720px; margin: 26px auto 0; display: grid; gap: 16px; }
input, select, textarea { width: 100%; padding: 16px 18px; border: 1px solid rgba(49,89,68,.25); border-radius: 18px; background: var(--white); font-size: 16px; }
.form-message { color: var(--forest); font-weight: bold; }
.footer { padding: 28px; text-align: center; background: var(--night); color: var(--white); }
.footer p { font-size: 14px; margin: 0; }
.reveal { opacity: 0; transform: translateY(28px); transition: all .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .header { flex-wrap: wrap; }
  .menu-btn { display: block; }
  .nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; margin-left: 0; }
  .nav.open { display: flex; }
  .header > .btn { display: none; }
  .hero, .two-columns { grid-template-columns: 1fr; }
  .quick-services, .cards { grid-template-columns: 1fr; }
  .quick-services article { border-right: 0; border-bottom: 1px solid rgba(214,181,109,.35); }
  .floating-card { position: static; margin-top: -24px; }
}


/* Página Oráculo Araceli */
.oracle-hero {
  padding: 92px 8% 48px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(184,164,216,.32), transparent 35%),
    radial-gradient(circle at top right, rgba(168,195,160,.35), transparent 32%),
    linear-gradient(135deg, #fffaf2 0%, #f6f0e6 55%, #e8f1eb 100%);
}

.intro-center {
  max-width: 820px;
  margin: 0 auto;
}

.oracle-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.oracle-buttons button {
  cursor: pointer;
}

.question-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 38px 8% 14px;
  text-align: center;
}

.question-box label {
  display: block;
  margin-bottom: 14px;
  color: var(--forest);
  font-weight: 700;
  letter-spacing: 1px;
}

.draw-area {
  padding: 42px 6% 88px;
  background: linear-gradient(180deg, rgba(255,250,242,.65), rgba(232,241,235,.7));
}

.empty-draw {
  text-align: center;
  color: var(--forest);
}

.empty-draw img {
  width: min(230px, 70vw);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.oracle-reading-intro {
  text-align: center;
  margin-bottom: 30px;
}

.oracle-reading-intro h2 {
  font-size: clamp(26px, 3vw, 42px);
}

.draw-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.draw-grid.one {
  max-width: 520px;
  margin: 0 auto;
}

.draw-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.draw-card {
  background: rgba(255,250,242,.9);
  border: 1px solid rgba(214,181,109,.45);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
  text-align: center;
}

.draw-card img {
  width: 100%;
  border-radius: 22px;
  display: block;
}

.draw-position {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.draw-text {
  padding: 18px 8px 8px;
}

.draw-text h3 {
  color: var(--forest);
}

.keywords {
  color: #7c62a8;
  font-style: italic;
  font-size: 16px;
}

.deck-preview {
  margin-top: 30px;
  width: min(1100px, 100%);
  border-radius: 28px;
  border: 1px solid rgba(214,181,109,.55);
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .draw-grid.three {
    grid-template-columns: 1fr;
  }
}

.service-link{display:block;color:inherit;text-decoration:none}.service-link span{display:block}

/* Página Plantas Medicinales */
.plant-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: 44px;
  padding: 80px 8%;
  background:
    radial-gradient(circle at 15% 25%, rgba(168,195,160,.45), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(184,164,216,.35), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f6f0e6 48%, #e8f1eb 100%);
}

.plant-orb {
  min-height: 330px;
  border-radius: 44px;
  border: 1px solid rgba(214,181,109,.55);
  background: linear-gradient(135deg, rgba(49,89,68,.95), rgba(36,54,75,.92));
  box-shadow: var(--shadow);
  color: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 38px;
}

.plant-orb span {
  font-size: 110px;
  display: block;
}

.plant-orb strong {
  color: var(--gold);
  font-size: 22px;
  font-weight: 500;
}

.plant-tools {
  max-width: 720px;
  margin: 28px auto 0;
}

.plant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
  text-align: left;
}

.plant-card {
  background: rgba(255,250,242,.9);
  border: 1px solid rgba(214,181,109,.4);
  border-radius: 28px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.plant-symbol {
  font-size: 34px;
  color: var(--forest);
}

.plant-warning {
  margin-top: 18px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(184,164,216,.16);
  font-size: 15px;
  line-height: 1.55;
}

.plant-form {
  background: rgba(255,250,242,.85);
  border: 1px solid rgba(214,181,109,.35);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .plant-hero,
  .plant-grid {
    grid-template-columns: 1fr;
  }
}


/* ===============================
   TERAPIAS NATURALES
   =============================== */

.therapy-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
  gap: 25px;
  margin-top: 30px;
}


.therapy-card {
  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,.95),
    rgba(184,164,216,.20)
  );

  border-radius: 25px;
  padding: 28px;

  border:
  1px solid rgba(214,181,109,.4);

  box-shadow:
  0 15px 35px rgba(36,54,75,.15);

  cursor: pointer;

  transition: .4s ease;
}


.therapy-card:hover {

  transform: translateY(-8px);

  box-shadow:
  0 18px 45px rgba(63,107,88,.25);
}


.therapy-card h3 {

  color:#3f6b58;
  margin-bottom:15px;

}


.therapy-card p {

  line-height:1.6;

}


#therapyDetail {

  margin-top:35px;

  padding:30px;

  border-radius:25px;

  background:
  linear-gradient(
    135deg,
    rgba(168,195,160,.25),
    rgba(184,164,216,.25)
  );


  border:
  1px solid rgba(214,181,109,.5);


  font-size:1.1rem;

  color:#24364b;

}

/* ===============================
   PAGINAS INTERNAS
   consultas - pendulo - terapias
   =============================== */

.page-content {
    width: min(1100px, 92%);
    margin: 0 auto;
    padding: 60px 20px;
}


/* CABECERA DE PAGINA */

.page-hero {
    text-align: center;

    max-width: 900px;
    margin: 0 auto 50px auto;

    padding: 50px;

    border-radius: 35px;

    background:
    linear-gradient(
        135deg,
        rgba(168,195,160,.30),
        rgba(184,164,216,.25)
    );

    box-shadow:
    0 20px 45px rgba(36,54,75,.12);
}


.page-hero h2 {

    font-size: clamp(2rem,5vw,4rem);

    color:#24364b;

    margin-bottom:20px;

}


.page-hero p {

    max-width:700px;

    margin:auto;

    line-height:1.8;

}



/* BLOQUES DE FORMULARIOS */

.form-section {

    max-width:800px;

    margin:0 auto 60px auto;

    padding:45px;

    border-radius:30px;

    background:
    rgba(255,255,255,.75);


    box-shadow:
    0 18px 45px rgba(36,54,75,.12);

}


.form-section h3 {

    text-align:center;

    color:#3f6b58;

    margin-bottom:30px;

}

/* ===============================
   PRODUCTOS / PLANTAS MEDICINALES
   =============================== */

.plant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 25px;
}

.plant-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(36, 54, 75, 0.13);
  border: 1px solid rgba(214, 181, 109, 0.35);
  transition: 0.3s ease;
}

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

.plant-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

.plant-symbol {
  font-size: 2rem;
  color: #3f6b58;
}

.plant-card h3 {
  color: #24364b;
  margin: 10px 0;
}

.keywords {
  color: #3f6b58;
  font-weight: bold;
}

.plant-warning {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(184, 164, 216, 0.18);
  color: #24364b;
}/* ===============================
   PRODUCTOS / PLANTAS MEDICINALES
   =============================== */

.plant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 25px;
}

.plant-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(36, 54, 75, 0.13);
  border: 1px solid rgba(214, 181, 109, 0.35);
  transition: 0.3s ease;
}

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

.plant-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

.plant-symbol {
  font-size: 2rem;
  color: #3f6b58;
}

.plant-card h3 {
  color: #24364b;
  margin: 10px 0;
}

.keywords {
  color: #3f6b58;
  font-weight: bold;
}

.plant-warning {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(184, 164, 216, 0.18);
  color: #24364b;
}/* ===============================
   PRODUCTOS / PLANTAS MEDICINALES
   =============================== */

.plant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 25px;
}

.plant-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(36, 54, 75, 0.13);
  border: 1px solid rgba(214, 181, 109, 0.35);
  transition: 0.3s ease;
}

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

.plant-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

.plant-symbol {
  font-size: 2rem;
  color: #3f6b58;
}

.plant-card h3 {
  color: #24364b;
  margin: 10px 0;
}

.keywords {
  color: #3f6b58;
  font-weight: bold;
}

.plant-warning {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(184, 164, 216, 0.18);
  color: #24364b;
}/* ===============================
   PRODUCTOS / PLANTAS MEDICINALES
   =============================== */

.plant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 25px;
}

.plant-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 18px 45px rgba(36, 54, 75, 0.13);
  border: 1px solid rgba(214, 181, 109, 0.35);
  transition: 0.3s ease;
}

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

.plant-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

.plant-symbol {
  font-size: 2rem;
  color: #3f6b58;
}

.plant-card h3 {
  color: #24364b;
  margin: 10px 0;
}

.keywords {
  color: #3f6b58;
  font-weight: bold;
}

.plant-warning {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(184, 164, 216, 0.18);
  color: #24364b;
}

.search-input{

width:100%;

padding:16px 20px;

border-radius:25px;

border:
1px solid rgba(63,107,88,.3);

font-size:1rem;

margin-bottom:30px;

background:
rgba(255,255,255,.8);

}


.search-input:focus{

outline:none;

box-shadow:
0 0 15px rgba(184,164,216,.5);

}

.hidden{
 display:none !important;
}


.modal{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:
rgba(0,0,0,.55);

display:flex;

align-items:center;
justify-content:center;

z-index:9999;

}



.modal-content{

background:white;

width:90%;
max-width:600px;

border-radius:25px;

padding:30px;

max-height:90vh;

overflow:auto;

}



.modal-close{

position:absolute;

right:30px;

font-size:30px;

cursor:pointer;

}

.hidden {
  display: none !important;
}

#editOrderModal.hidden,
#editProductModal.hidden {
  display: none !important;
}

#editCardModal.hidden {
  display: none !important;
}

#editGroupModal.hidden {
  display: none !important;
}


/* ======================
   PENDULO
====================== */

.pendulum-area{

text-align:center;

padding:50px;

}


#pendulum{

width:150px;

height:260px;

margin:auto;

transform-origin:top center;

}



.pendulum-line{

height:170px;

width:3px;

background:#3f6b58;

margin:auto;

}



.pendulum-ball{

width:70px;

height:70px;

border-radius:50%;

background:white;

box-shadow:
0 10px 30px rgba(0,0,0,.25);

display:flex;

align-items:center;

justify-content:center;

font-size:35px;

margin:auto;

}




.moving{

animation:
swing 1s infinite alternate;

}



.yes{

animation:
verticalPendulum 1s infinite alternate;

}



.no{

animation:
horizontalPendulum 1s infinite alternate;

}



.circle{

animation:
circlePendulum 2s infinite linear;

}



@keyframes swing{

from{
transform:rotate(-20deg);
}

to{
transform:rotate(20deg);
}

}



@keyframes horizontalPendulum{

from{
transform:rotate(-35deg);
}

to{
transform:rotate(35deg);
}

}



@keyframes verticalPendulum{

from{
transform:translateY(-15px);
}

to{
transform:translateY(15px);
}

}



@keyframes circlePendulum{

from{
transform:rotate(0deg);
}

to{
transform:rotate(360deg);
}

}
