:root {
  --em: #10b981;
  --em-d: #047857;
  --em-l: #d1fae5;
  --teal: #14b8a6;
  --teal-d: #0d9488;
  --teal-9: #115e59;
  --vio: #8b5cf6;
  --vio-l: #ede9fe;
  --ora: #f97316;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Open Sans", sans-serif;
  background: #f8fafc;
  color: #334155;
}
h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}
.glass {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
}
.glass-dark {
  background: rgba(20, 184, 166, 0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  color: #f1f5f9;
}
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--em), var(--teal));
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  transition: all 0.3s;
}
.btn-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(16, 185, 129, 0.5);
}
.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: #334155;
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  border: 2px solid #e2e8f0;
  font-weight: 600;
  transition: all 0.3s;
}
.btn-s:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}
.nav {
  position: fixed;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 100;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  padding: 0.5rem 1.5rem;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  padding: 0.5rem 0;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--em);
}
.lang-sel {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: #f1f5f9;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: #475569;
}
.lang-dd {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s;
  min-width: 70px;
  overflow: hidden;
}
.lang-sel:hover .lang-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-opt {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  color: #475569;
}
.lang-opt:hover,
.lang-opt.active {
  background: var(--em-l);
  color: var(--em-d);
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.65)
  );
}
.hero-c {
  position: relative;
  z-index: 10;
  max-width: 42rem; /* Reduced from 48rem */
  text-align: center;
  padding: 2rem; /* Reduced from 3rem */
  margin-top: 4rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--em-l);
  color: var(--em-d);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Reduced from 2.5-4rem */
  color: #1e293b;
  margin-bottom: 1rem; /* Reduced from 1.5rem */
  line-height: 1.1;
}
.hero h1 .hl {
  color: var(--em);
}
.hero-sub {
  font-size: 1.15rem;
  color: #475569;
  max-width: 38rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.quote-c {
  background: linear-gradient(135deg, var(--em-l), rgba(204, 251, 241, 0.5));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
  max-width: 32rem;
  margin: 0 auto;
}
.quote-c p {
  color: var(--em-d);
  font-style: italic;
  font-size: 1.05rem;
}
.sec {
  padding: 5rem 1.5rem;
}
.sec-h {
  text-align: center;
  margin-bottom: 3rem;
}
.sec-h h1,
.sec-h h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #1e293b;
  margin-bottom: 0.75rem;
}
.sec-h p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 36rem;
  margin: 0 auto;
}
.cont {
  max-width: 75rem;
  margin: 0 auto;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}
.srv-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.25rem;
  padding: 1rem;
  transition: all 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.srv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.srv-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.srv-icon.em {
  background: var(--em-l);
  color: var(--em);
}
.srv-icon.bl {
  background: #dbeafe;
  color: #2563eb;
}
.srv-icon.ro {
  background: #ffe4e6;
  color: #f43f5e;
}
.srv-icon.vi {
  background: var(--vio-l);
  color: var(--vio);
}
.srv-icon.am {
  background: #fef3c7;
  color: #f59e0b;
}
.srv-icon.tl {
  background: #ccfbf1;
  color: var(--teal-d);
}
.srv-icon.cy {
  background: #ecfeff;
  color: #06b6d4;
}
.srv-card h3 {
  font-size: 0.95rem;
  color: #1e293b;
  margin-bottom: 0.35rem;
  font-weight: 700;
}
.srv-card p {
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--em);
  transition: gap 0.2s;
  margin-top: auto;
}
.srv-link:hover {
  gap: 0.75rem;
}
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}
.about-img {
  position: relative;
}
.about-img-w {
  /* aspect-ratio: 4/5; Removed to show full original image quality */
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  max-width: 450px;
  margin: 0 auto;
}
.about-img-w img {
  width: 100%;
  height: auto;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.about-badge .lb {
  color: var(--em);
  font-weight: 700;
  font-size: 1.1rem;
}
.about-badge .vl {
  color: #64748b;
  font-size: 0.85rem;
}
.about-role {
  color: var(--em);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.about-col {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.about-txt {
  color: #475569;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.meth-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  padding: 2rem;
  margin-top: 2rem;
}
.meth-box h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e293b;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.meth-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}
.meth-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--em-l);
  border-radius: 0.75rem;
}
.meth-item span {
  color: #334155;
  font-size: 0.95rem;
}
.rates-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (max-width: 1200px) {
  .rates-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.rate-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 1.5rem;
  padding: 1.5rem; /* Increase padding for "poquito más grandes" */
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.rate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
.rate-card.feat {
  background: linear-gradient(135deg, var(--em), var(--teal));
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.3);
  border: none;
}
.rate-icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.rate-card:not(.feat) .rate-icon {
  background: var(--em-l);
  color: var(--em);
}
.rate-card.feat .rate-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.rate-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.rate-card:not(.feat) h3 {
  color: #1e293b;
}
.rate-desc {
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rate-card:not(.feat) .rate-desc {
  color: #64748b;
}
.rate-card.feat .rate-desc {
  color: rgba(255, 255, 255, 0.85);
}
.rate-price {
  font-size: 2rem;
  font-weight: 800;
  margin-top: auto;
}
.rate-card:not(.feat) .rate-price {
  color: var(--em);
}
.rates-note {
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 1.5rem;
}
.res-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
}
.res-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1.5rem;
  padding: 1.5rem;
  height: 280px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.res-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.25);
}
.res-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: auto;
}
.res-cat-pill {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: #f3e8ff;
  color: #7e22ce;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.res-prog {
  width: 100%;
  height: 6px;
  background: #e2e8f0;
  border-radius: 99px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.res-prog-bar {
  height: 100%;
  background: linear-gradient(90deg, #a855f7, #6366f1);
  width: 0%;
  border-radius: 99px;
  transition: width 0.3s;
}
.res-play-float {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #6366f1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(168, 85, 247, 0.4);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.res-card:hover .res-play-float, .res-card.playing .res-play-float {
  opacity: 1;
  transform: scale(1);
}
.res-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}
.res-meta div { display: flex; align-items: center; gap: 0.5rem; }
@keyframes vis {
  from {
    transform: scaleY(0.5);
  }
  to {
    transform: scaleY(1);
  }
}
.aca-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.crs-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}
.crs-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}
.crs-img {
  height: 12rem;
  position: relative;
  overflow: hidden;
}
.crs-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.crs-card:hover .crs-img img {
  transform: scale(1.1);
}
.crs-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 60%);
}
.crs-type {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ora);
  text-transform: uppercase;
}
.crs-date {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  color: #fff;
  font-weight: 700;
}
.crs-cont {
  padding: 2rem;
}
.crs-cont h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 1rem;
}
.crs-prog {
  margin-bottom: 1.5rem;
}
.crs-prog-h {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.crs-prog-h .sp {
  color: #64748b;
}
.crs-prog-h .pr {
  color: var(--ora);
}
.crs-prog-bar {
  height: 0.5rem;
  background: #f1f5f9;
  border-radius: 9999px;
  overflow: hidden;
}
.crs-prog-fill {
  height: 100%;
  background: var(--ora);
  border-radius: 9999px;
}
.crs-btn {
  width: 100%;
  padding: 0.9rem;
  border-radius: 0.75rem;
  font-weight: 700;
  transition: all 0.2s;
}
.crs-btn.av {
  background: #1e293b;
  color: #fff;
}
.crs-btn.av:hover {
  background: #0f172a;
}
.crs-btn.fl {
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
}
.crisis-v {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.crisis-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/hojas-verdes.jpg");
  opacity: 1;
}
.crisis-ov {
  position: absolute;
  inset: 0;
  background: rgba(19, 78, 74, 0.3);
}
.crisis-c {
  position: relative;
  z-index: 10;
  max-width: 28rem;
  width: 100%;
  text-align: center;
}
.crisis-p {
  background: rgba(20, 184, 166, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(153, 246, 228, 0.2);
  border-radius: 2rem;
  padding: 3rem 2rem;
  box-shadow: 0 25px 50px -12px rgba(19, 78, 74, 0.4);
}
.crisis-p h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.crisis-p .sub {
  color: rgba(204, 251, 241, 0.9);
  margin-bottom: 2.5rem;
}
.breath-cont {
  position: relative;
  width: 14rem;
  height: 14rem;
  margin: 0 auto 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breath-cir {
  position: absolute;
  border-radius: 50%;
  transition: transform 4s ease-in-out;
}
.breath-cir.out {
  inset: 0;
  background: rgba(94, 234, 212, 0.25);
}
.breath-cir.inn {
  inset: 1rem;
  background: rgba(94, 234, 212, 0.35);
}
.breath-cir.exp {
  transform: scale(1.4);
}
.breath-ui {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.breath-btn {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #fff;
  color: var(--teal-d);
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
}
.breath-btn:hover {
  transform: scale(1.1);
}
.breath-disp {
  text-align: center;
  color: #fff;
}
.breath-disp .ph {
  font-size: 1.5rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}
.breath-disp .cnt {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}
.crisis-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.crisis-tool {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: left;
  transition: all 0.2s;
  cursor: pointer;
}
.crisis-tool:hover {
  background: rgba(255, 255, 255, 0.15);
}
.crisis-tool h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.crisis-tool.sos h4 {
  color: #fca5a5;
}
.crisis-tool p {
  color: rgba(204, 251, 241, 0.8);
  font-size: 0.8rem;
}
.crisis-exit {
  color: rgba(204, 251, 241, 0.7);
  font-size: 0.9rem;
  text-decoration: underline;
}
.crisis-exit:hover {
  color: #fff;
}
.login-v {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}
.login-bg {
  position: absolute;
  inset: 0;
  background-image: url("img/Hojas .jpg");
  background-size: cover;
}
.login-ov {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.2);
  backdrop-filter: none;
}
.login-p {
  position: relative;
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2rem;
  padding: 2.5rem;
  max-width: 26rem;
  width: 100%;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.login-icon {
  width: 4rem;
  height: 4rem;
  background: var(--em);
  color: #fff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}
.login-p h2 {
  font-size: 1.75rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}
.login-p .sub {
  color: #64748b;
  margin-bottom: 2rem;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-inp {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  color: #334155;
}
.login-inp:focus {
  outline: none;
  border-color: var(--em);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}
.login-sub {
  width: 100%;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--em);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}
.login-sub:hover {
  background: var(--em-d);
}
.login-links {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.login-links button {
  color: #64748b;
  font-size: 0.9rem;
}
.login-links button:hover {
  color: var(--em);
}
.patient-v {
  min-height: 100vh;
  padding: 7rem 1rem 3rem;
  position: relative;
}
.patient-bg {
  position: fixed;
  inset: 0;
  background-image: url("img/Hojas .jpg");
  background-size: cover;
  z-index: 0;
}
.patient-ov {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.2);
  backdrop-filter: none;
  z-index: 1;
}
.patient-c {
  position: relative;
  z-index: 10;
  max-width: 75rem;
  margin: 0 auto;
}
.patient-w {
  margin-bottom: 2rem;
}
.patient-w h2 {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: 1rem;
}
.patient-q {
  color: #6ee7b7;
  font-style: italic;
  font-size: 1.15rem;
  border-left: 4px solid var(--em);
  padding-left: 1rem;
  max-width: 36rem;
}
.patient-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .patient-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.patient-sec {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 2rem;
}
.patient-sec-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.patient-sec-t {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #6ee7b7;
  font-weight: 700;
  font-size: 1.15rem;
}
.patient-sec-t .dot {
  width: 8px;
  height: 8px;
  background: #6ee7b7;
  border-radius: 50%;
}
.patient-badge {
  background: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.task-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.task-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  text-align: left;
}
.task-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.task-item.done {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.25);
}
.task-chk {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #64748b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.task-item.done .task-chk {
  background: var(--em);
  border-color: var(--em);
}
.task-info h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.task-item.done .task-info h4 {
  color: #6ee7b7;
  text-decoration: line-through;
}
.task-info p {
  color: #94a3b8;
  font-size: 0.85rem;
}
.chk-sec h3 {
  color: #e2e8f0;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.chk-q {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.chk-ta {
  width: 100%;
  height: 7rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #475569;
  border-radius: 0.75rem;
  color: #e2e8f0;
  font-size: 0.95rem;
  resize: none;
}
.chk-ta:focus {
  outline: none;
  border-color: var(--em);
}
.chk-save {
  margin-top: 1rem;
  padding: 0.65rem 1.5rem;
  background: var(--em);
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 700;
}
.files-sec h3 {
  color: #fcd34d;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.files-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.file-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  cursor: pointer;
}
.file-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.file-item span {
  flex: 1;
  color: #cbd5e1;
  font-size: 0.9rem;
}
.admin-v {
  min-height: 100vh;
  padding: 7rem 1rem 3rem;
  background: #f8fafc;
}
.admin-c {
  max-width: 80rem;
  margin: 0 auto;
}
.admin-h {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.admin-h h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 0.25rem;
}
.admin-h p {
  color: #64748b;
}
.admin-save {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--em);
  color: #fff;
  border-radius: 0.75rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}
.admin-save:hover {
  background: var(--em-d);
}
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.stat-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem;
}
.stat-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.stat-icon.em {
  background: var(--em-l);
  color: var(--em);
}
.stat-icon.bl {
  background: #dbeafe;
  color: #2563eb;
}
.stat-icon.or {
  background: #ffedd5;
  color: var(--ora);
}
.stat-icon.vi {
  background: var(--vio-l);
  color: var(--vio);
}
.stat-val {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.25rem;
}
.stat-lb {
  color: #64748b;
  font-size: 0.9rem;
}
.admin-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .admin-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.admin-pan {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 2rem;
}
.admin-pan h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
}
.admin-tbl {
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
}
.admin-tbl thead {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.admin-tbl th {
  padding: 0.85rem 1rem;
  font-weight: 600;
  color: #475569;
}
.admin-tbl tbody tr {
  border-bottom: 1px solid #f1f5f9;
}
.admin-tbl tbody tr:hover {
  background: #f8fafc;
}
.admin-tbl td {
  padding: 0.85rem 1rem;
}
.admin-tbl .nm {
  font-weight: 600;
  color: #1e293b;
}
.admin-tbl .st {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: var(--em-l);
  color: var(--em-d);
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.admin-ta {
  width: 100%;
  height: 14rem;
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 0.9rem;
  color: #334155;
  resize: none;
}
.admin-ta:focus {
  outline: none;
  border-color: var(--em);
}
.admin-hint {
  color: #94a3b8;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4rem 1.5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 75rem;
  margin: 0 auto 2.5rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-brand .logo {
  width: 2rem;
  height: 2rem;
  background: var(--em);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}
.footer-brand span {
  color: #fff;
  font-weight: 700;
}
.footer-sec h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.footer-sec a {
  display: block;
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-sec a:hover {
  color: #fff;
}
.footer-cont-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer-soc {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-soc a {
  width: 2.25rem;
  height: 2.25rem;
  background: #1e293b;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-soc a:hover {
  background: var(--em);
}
.footer-bot {
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  max-width: 75rem;
  margin: 0 auto;
}
.cta-ban {
  background: linear-gradient(135deg, var(--teal), var(--em));
  border-radius: 2rem;
  padding: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.25);
}
.cta-ban-c {
  flex: 1;
  min-width: 280px;
}
.cta-ban h3 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.cta-ban p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}
.cta-ban-btn {
  padding: 1rem 2rem;
  background: #fff;
  color: var(--em-d);
  border-radius: 1.5rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}
.cta-ban-btn:hover {
  transform: translateY(-3px);
}
.mob-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #e2e8f0;
}
.mob-menu.active {
  display: flex;
}
.mob-menu button {
  padding: 0.75rem 1rem;
  text-align: left;
  color: #475569;
  font-weight: 500;
  border-radius: 0.5rem;
}
.mob-menu button:hover {
  background: var(--em-l);
  color: var(--em-d);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-fade {
  animation: fadeIn 0.6s ease forwards;
}
@media (max-width: 768px) {
  .hero-c {
    padding: 2rem 1.5rem;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .sec {
    padding: 3rem 1rem;
  }
  .cta-ban {
    padding: 2rem;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .hero-btns {
    flex-direction: column;
  }
  .hero-btns .btn-p,
  .hero-btns .btn-s {
    width: 100%;
  }
}

/* Academy Refactoring */
.aca-v {
  padding-top: 6rem;
  background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
  min-height: 100vh;
}
.aca-hero {
  text-align: center;
  padding: 4rem 1.5rem 2rem;
}
.aca-hero h1 {
  font-size: 2.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
}
.aca-hero p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}
.aca-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.aca-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}
.course-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}
.course-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.course-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.course-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.course-date {
  color: #64748b;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.course-act {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
}
.course-btn {
  padding: 0.75rem 1.5rem;
  background: #0f172a;
  color: white;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.course-btn:hover {
  background: #334155;
}
.price {
  font-weight: 800;
  font-size: 1.25rem;
  color: #059669;
}

/* --- HEALTH CARENDAR --- */
/* --- HEALTH CARENDAR --- */
/* --- HEALTH CARENDAR --- */
.cal-w {
  background: linear-gradient(
    135deg,
    rgba(15, 118, 110, 0.4),
    rgba(15, 23, 42, 0.6)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 500px;
  max-width: 400px;
  width: 100%;
  position: relative;
  transition: all 0.3s ease;
}
.cal-h {
  background: rgba(13, 148, 136, 0.3);
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.cal-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
.cal-scroll::-webkit-scrollbar {
  width: 4px;
}
.cal-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.cal-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.cal-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}
.cal-d-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}
.cal-date {
  color: #a7f3d0; /* Soft emerald */
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.cal-ti {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
}
.cal-badge {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 9999px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cal-badge.today {
  background: linear-gradient(135deg, #f43f5e, #e11d48);
  color: white;
  border: none;
  box-shadow: 0 2px 8px rgba(244, 63, 94, 0.4);
}

/* Detail View */
.cal-det {
  position: absolute;
  inset: 0;
  background: transparent; /* Full transparency */
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.3s ease;
  z-index: 10;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.cal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s;
}
.cal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}
.cal-det-d {
  color: #a7f3d0;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.cal-det-t {
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.2;
  background: linear-gradient(to bottom right, #fff, #cbd5e1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- FLIP CARD FOR RATES --- */
.flip-card-container {
  perspective: 2000px;
  cursor: pointer;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
  transform: rotateY(0deg);
  will-change: transform;
}
.flip-card-container:hover .flip-card-inner {
  transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 1.5rem;
  width: 100%;
  height: 100%;
}
.flip-card-front {
  background: white; /* Ensures opacity over back face */
}
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #0f766e, #0d9488);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  align-items: flex-start; /* Changed from center to allow left alignment of list */
  padding-left: 2rem; /* Add padding to center the block visually */
}
.flip-card-back h4 {
  width: 100%;
  text-align: center; /* Keep title centered */
  margin-left: -1rem; /* Offset the padding-left of container to keep title true center */
}
.flip-back-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.flip-back-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-start; /* Left align list items */
  text-align: left; /* Ensure text wraps left-aligned */
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}
.cal-lbl {
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.25rem;
  display: inline-block;
}
.cal-txt {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.cal-back {
  margin-top: auto;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 1rem;
  border-radius: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
  text-transform: uppercase;
}
.cal-back:hover {
  background: rgba(255, 255, 255, 0.2);
  letter-spacing: 2px;
}

/* --- GLOBAL MODAL STYLES --- */
.glass-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease-out;
}

.glass-modal-content {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 90vw;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* --- COOKIE BANNER --- */
.cookie-ban {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #fff;
  padding: 1rem;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform 0.3s;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}
.cookie-ban.show {
  transform: translateY(0);
}
.cookie-ban button {
  background: #fff;
  color: #0f172a;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-ban button:hover {
  background: var(--em);
  color: #fff;
}

/* Mood Widget Animations */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* WhatsApp Button */
.wsp-float { position: fixed; bottom: 2rem; right: 2rem; background: #25D366; color: white; width: 3.5rem; height: 3.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(0,0,0,0.15); z-index: 1000; transition: transform 0.2s; } .wsp-float:hover { transform: scale(1.1); }
