/* ======== Base ======== */
:root{
  --zarvela-pink: #d79ca7;
  --zarvela-gold: #e8c89d;
  --footer-deep: #0b1124;
  --contact-dark: #0e1630;
}
html { scroll-behavior: smooth; }

body { 
  background-color: #ffffff; 
  font-family: 'Poppins', sans-serif;
}

/* ======== HERO ======== */
.hero{
  min-height: 100vh;
  background: linear-gradient(90deg, #6284FF 0%, #FF70B8 100%);
  padding-top: 120px;
}

/* ======== Cards ======== */
.service-card{ 
  border-radius: 18px; 
  overflow: hidden; 
  transition: transform .35s ease, box-shadow .3s ease; 
}

.service-card:hover{ 
  transform: translateY(-8px); 
  box-shadow: 0 12px 28px rgba(0,0,0,.18); 
}

.service-card img{ 
  height: 180px; 
  object-fit: cover; 
  transition: transform .45s ease, filter .3s ease; 
}

.service-card:hover img{ 
  transform: translateY(-6px) scale(1.08); 
  filter: brightness(1.1) saturate(1.08); 
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card .btn {
  margin-top: auto;
  align-self: center;
}

/* Botón cards */
.card_btn { 
  background: linear-gradient(90deg, #6284FF, #FF70B8);
  border:none;
  color: #fff;
}

a.card_btn { 
  margin-top: 20px !important;
}

/* ======== Reveal Animations ======== */
.reveal{ 
  opacity:0; 
  transform:translateY(30px); 
  transition: all .7s ease-out; 
}

.reveal.visible{ 
  opacity:1; 
  transform:translateY(0); 
}

/* ======== FISIOTERAPEUTA ======== */
.text-purple{ color:#8a3ffc; }

.therapist-photo{ 
  max-height:480px; 
  object-fit:cover; 
  border-radius:20px; 
}

.icon-box{
  width:48px; 
  height:48px; 
  border-radius:12px;
  background: linear-gradient(135deg, #6284FF, #FF70B8);
  color:#fff; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
  font-size:20px;
}

.therapist-card{ 
  background:#fff; 
  border-radius:16px; 
  border:1px solid rgba(0,0,0,.06); 
  transition: all .3s ease; 
}

.therapist-card:hover{ 
  transform: translateY(-3px); 
  box-shadow: 0 8px 22px rgba(0,0,0,.12); 
}

/* ======== CONTACTO ======== */
.contact-section{ 
  background-color: var(--contact-dark); 
  color:#eaeaea; 
  margin-bottom:0; 
  padding-bottom:0; 
}

.footer-title{ 
  color:#9aa4ff; 
  font-weight:600; 
}

.form-control-dark{ 
  background:#1a233d; 
  border:1px solid #2a3555; 
  color:#fff; 
}

.form-control-dark:focus{ 
  background:#1a233d; 
  border-color:#7b61ff; 
  box-shadow: 0 0 0 .2rem rgba(123,97,255,.3); 
  color:#fff; 
}

/* WhatsApp */
.whatsapp-btn{
  background: linear-gradient(90deg, #6284FF, #FF70B8);
  border:none; 
  color:#fff; 
  font-weight:600; 
  padding:10px; 
  border-radius:8px;
}

.whatsapp-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

/* Redes */
.social-btn{
  width:42px; 
  height:42px; 
  border-radius:50%;
  background: linear-gradient(120deg,#6284FF,#FF70B8);
  color:#fff; 
  display:inline-flex; 
  align-items:center; 
  justify-content:center;
  font-size:18px; 
  transition: transform .25s;
  margin-bottom: 10px;
}

.social-btn:hover{ 
  transform: scale(1.1); 
}

/* Otros */
iframe {
  max-width: 100%;
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

body, html {
  overflow-x: hidden;
}
