/* 
====================================================================
  ESTILOS PRINCIPALES - VISIÓN DEPORTIVA Y HÁBITOS
====================================================================
*/

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&family=Oswald:wght@400;500;700&display=swap');

:root {
  /* Paleta de colores principal (Colorida y contrastante) */
  --brand-sun: #FF9F1C;
  --brand-ocean: #2EC4B6;
  --brand-leaf: #80ED99;
  --ui-dark-slate: #011627;
  --ui-light-base: #FDFFFC;
  --tone-highlight: #FF5A5F;
  --text-muted: #4B5563;

  /* Fuentes */
  --font-heading-accent: 'Oswald', sans-serif;
  --font-text-body: 'Open Sans', sans-serif;

  /* Gradientes */
  --grad-lively: linear-gradient(135deg, var(--brand-ocean) 0%, var(--brand-leaf) 100%);
  --grad-sunset: linear-gradient(135deg, var(--brand-sun) 0%, var(--tone-highlight) 100%);
  --grad-dark: linear-gradient(135deg, var(--ui-dark-slate) 0%, #0a253d 100%);
}

/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-text-body);
  background-color: var(--ui-light-base);
  color: var(--ui-dark-slate);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Navegación y Header */
.top-nav-bar {
  background-color: var(--ui-light-base);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-link-item {
  color: var(--ui-dark-slate);
  font-weight: 600;
  transition: color 0.3s ease;
  font-family: var(--font-heading-accent);
  letter-spacing: 1px;
}

.nav-link-item:hover {
  color: var(--brand-sun);
}

.mobile-menu-wrap {
  display: none;
  background-color: var(--ui-light-base);
  border-top: 1px solid #e5e7eb;
}

.mobile-menu-wrap.active {
  display: flex;
  flex-direction: column;
}

/* Componentes Únicos Generales */
.action-btn-primary {
  display: inline-block;
  color: var(--ui-light-base);
  font-family: var(--font-heading-accent);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.action-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(46, 196, 182, 0.4);
}

/* Clases específicas para evitar footprints */
.ocular-fitness-intro {
  color: var(--ui-light-base);
  position: relative;
  overflow: hidden;
}

.ocular-fitness-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ui-dark-slate);
  opacity: 0.7;
  z-index: 1;
}

.intro-content-layer {
  position: relative;
  z-index: 2;
}

.habit-stat-box {
  background-color: var(--ui-light-base);
  border-left: 5px solid var(--brand-sun);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.habit-stat-box:hover {
  transform: translateY(-5px);
}

.icon-circle-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.numbered-step-orb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--ui-light-base);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading-accent);
  font-size: 1.2rem;
  font-weight: bold;
}

.colored-dot-list {
  list-style: none;
  padding: 0;
}

.colored-dot-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0.5rem;
}

.colored-dot-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--brand-ocean);
}

/* Estilos de Footer */
.site-footer-zone {
  background-color: var(--ui-dark-slate);
  color: var(--ui-light-base);
  border-top: 4px solid var(--brand-leaf);
}

.footer-disclaimer-text {
  font-size: 0.85rem;
  color: #9CA3AF;
  border-top: 1px solid #374151;
}

/* Cookie Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--ui-dark-slate);
  color: var(--ui-light-base);
  z-index: 9999;
  padding: 1.5rem;
  box-shadow: 0 -10px 25px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 2px solid var(--brand-sun);
}

@media (min-width: 768px) {
  #cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-btn-accept {
  background-color: var(--brand-sun);
  color: var(--ui-dark-slate);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-heading-accent);
  font-weight: bold;
  cursor: pointer;
  border: none;
}

.cookie-btn-decline {
  background-color: #4B5563;
  color: var(--ui-light-base);
  padding: 0.5rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-heading-accent);
  cursor: pointer;
  border: none;
}