/* ========================================
   ANA WELLNESS - ESTILO PROFESIONAL RAMÓN
   Diseño limpio, moderno, orientado a servicios
   ======================================== */

:root {
  /* Colores principales */
  --yellow: #F9B233;
  --yellow-dark: #E09B1F;
  --navy: #0B2144;
  --navy-light: #1a3a6b;
  
  /* Neutros */
  --white: #FFFFFF;
  --gray-light: #F4F6F8;
  --gray-mid: #E1E4E8;
  --gray-dark: #333333;
  --text-body: #555555;
  
  /* Verde oliva (acento secundario) */
  --olive: #6E7259;
  
  /* Tipografía */
  --font-main: 'Montserrat', sans-serif;
  --font-handwritten: 'Caveat', cursive;
  
  /* Espaciado */
  --container-max: 1200px;
  --section-padding: 80px 24px;
  
  /* Efectos */
  --transition: all 0.3s ease;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-body);
  line-height: 1.6;
  font-size: 16px;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.header-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 1px;
}

.logo svg {
  flex-shrink: 0;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav a:hover {
  color: var(--yellow);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-call:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
}

/* ============ HERO SPLIT ============ */
.hero {
  margin-top: 80px;
  padding: 80px 0;
  background: var(--white);
}

.hero-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  padding-right: 40px;
}

.hero-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-highlight {
  color: var(--yellow);
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  gap: 40px;
}

.badge {
  display: flex;
  gap: 12px;
  align-items: center;
}

.badge-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.badge-text span {
  font-size: 13px;
  color: var(--text-body);
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
}

.hero-note {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.note-handwritten {
  font-family: var(--font-handwritten);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ============ SERVICIOS ============ */
.servicios {
  padding: var(--section-padding);
  background: var(--gray-light);
}

.servicios-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.section-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-body);
  margin-bottom: 60px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.servicio-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  text-align: left;
}

.servicio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.servicio-image {
  height: 200px;
  overflow: hidden;
}

.servicio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.servicio-card:hover .servicio-image img {
  transform: scale(1.05);
}

.servicio-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 20px 12px;
}

.servicio-card p {
  font-size: 14px;
  color: var(--text-body);
  margin: 0 20px 20px;
  line-height: 1.6;
}

.servicios-cta {
  margin-top: 48px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  border: 2px solid var(--navy);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============ SOBRE MÍ ============ */
.sobre-mi {
  padding: var(--section-padding);
  background: var(--navy);
}

.sobre-mi-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-mi-content {
  padding-right: 40px;
}

.section-tag-white {
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title-white {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}

.sobre-mi-text {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 48px;
}

.sobre-mi-badges {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.badge-white {
  display: flex;
  gap: 16px;
  align-items: center;
}

.badge-icon-white {
  font-size: 32px;
  flex-shrink: 0;
}

.badge-text-white {
  display: flex;
  flex-direction: column;
}

.badge-text-white strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.badge-text-white span {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.sobre-mi-image {
  position: relative;
}

.sobre-mi-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
}

.sobre-mi-note {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.note-handwritten-white {
  font-family: var(--font-handwritten);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ============ TESTIMONIOS ============ */
.testimonios {
  padding: var(--section-padding);
  background: var(--white);
}

.testimonios-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.testimonio-card {
  background: var(--gray-light);
  padding: 32px 28px;
  border-radius: 8px;
  text-align: left;
  border: 1px solid var(--gray-mid);
  transition: var(--transition);
}

.testimonio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.testimonio-quote {
  font-size: 48px;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonio-stars {
  color: var(--yellow);
  font-size: 16px;
  margin-bottom: 16px;
}

.testimonio-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 24px;
}

.testimonio-autor strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.testimonio-autor span {
  font-size: 13px;
  color: var(--text-body);
}

.testimonios-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-mid);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--yellow);
}

/* ============ CTA FINAL ============ */
.cta-final {
  padding: 100px 24px;
  background: url('https://images.unsplash.com/photo-1588286840104-8957b019727f?w=1600&q=80') center/cover;
  position: relative;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 33, 68, 0.9);
}

.cta-container {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-primary-large {
  background: var(--yellow);
  color: var(--navy);
  border: none;
}

.btn-primary-large:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(249, 178, 51, 0.4);
}

.btn-secondary-large {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary-large:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}

.cta-note {
  position: absolute;
  bottom: -50px;
  right: 80px;
  background: var(--yellow);
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-hover);
}

.note-handwritten-yellow {
  font-family: var(--font-handwritten);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* ============ FOOTER ============ */
.footer {
  padding: 60px 24px 24px;
  background: var(--white);
  border-top: 1px solid var(--gray-mid);
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-mid);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-col a {
  color: var(--text-body);
}

.footer-col a:hover {
  color: var(--yellow);
}

.link-map {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--olive);
  margin-top: 8px;
}

.btn-whatsapp-footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #25D366;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  margin-top: 16px;
  transition: var(--transition);
}

.btn-whatsapp-footer:hover {
  background: #1fb854;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-body);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a:hover {
  color: var(--yellow);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-container,
  .sobre-mi-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .servicios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-content,
  .sobre-mi-content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .nav,
  .btn-call {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .section-title,
  .section-title-white {
    font-size: 28px;
  }
  
  .servicios-grid,
  .testimonios-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }
  
  .hero-badges {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .cta-note {
    display: none;
  }
}
