/* ====================================================================
   byRO (By Rocío) - Premium Fitness & Lifestyle Styling
   Mobile-First Architecture & High-End Aesthetic
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Syne:wght@700;800&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-script: 'Alex Brush', cursive;

  /* Color Palette - Inspired by idea/byro assets */
  --primary: #D8567A;
  --primary-hover: #C04366;
  --primary-deep: #8E2042;
  --primary-soft: #FDF1F4;
  --primary-soft-border: #F7D2DC;
  --primary-glow: rgba(216, 86, 122, 0.28);
  --primary-gradient: linear-gradient(135deg, #E66A8C 0%, #BA3259 100%);
  --accent-gold: #E5B374;
  
  /* Neutral & Dark */
  --dark-bg: #0F1015;
  --dark-surface: #181922;
  --dark-card: #20222D;
  --dark-border: rgba(255, 255, 255, 0.08);
  --dark-text: #FFFFFF;
  --dark-muted: #9CA3AF;

  /* Light Theme */
  --light-bg: #FCF8F9;
  --light-surface: #FFFFFF;
  --light-card: #FFFFFF;
  --light-border: #F0E2E6;
  --text-primary: #1A1C24;
  --text-secondary: #575D6D;
  --text-muted: #8E95A5;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(216, 86, 122, 0.08), 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 45px rgba(216, 86, 122, 0.14), 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 35px rgba(216, 86, 122, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(216, 86, 122, 0.15);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.25s ease-in-out;
}

/* Strict Box Model & Overflow Prevention */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0; /* Prevents flex/grid children from overflowing */
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Container Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
}

.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

/* Typography & Helpers */
.font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.font-script {
  font-family: var(--font-script);
}

/* Fluid text gradient that WRAPS nicely on mobile */
.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
  word-break: break-word;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--primary-soft-border);
  margin-bottom: 1.15rem;
  max-width: 100%;
}

.badge-tag.dark {
  background: rgba(216, 86, 122, 0.15);
  border-color: rgba(216, 86, 122, 0.3);
  color: #FFA5BD;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.75rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5.5vw, 2.65rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.18;
  margin-bottom: 0.85rem;
  word-break: break-word;
}

.section-header p {
  color: var(--text-secondary);
  font-size: clamp(0.92rem, 2.5vw, 1.05rem);
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #FFFFFF;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(216, 86, 122, 0.45);
  color: #FFFFFF;
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-primary);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(30deg);
  transition: 0.8s;
  pointer-events: none;
}

.btn-glow:hover::after {
  left: 100%;
}

/* ====================================================================
   NAVBAR (MOBILE FIRST & DESKTOP)
   ==================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 86, 122, 0.1);
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 0.55rem 0;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .brand-logo {
    font-size: 1.8rem;
  }
}

.brand-logo .brand-by {
  font-family: var(--font-script);
  font-size: 1.85rem;
  color: var(--primary);
  font-weight: 400;
  transform: rotate(-4deg);
  display: inline-block;
}

@media (min-width: 768px) {
  .brand-logo .brand-by {
    font-size: 2.1rem;
  }
}

.brand-logo .brand-ro {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--text-primary);
}

.brand-logo .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  margin-left: 2px;
}

/* Desktop Menu */
.desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    position: relative;
    padding: 0.35rem 0;
  }

  .nav-link:hover, .nav-link.active {
    color: var(--primary);
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
  }

  .nav-link:hover::after, .nav-link.active::after {
    width: 100%;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-login {
  display: none;
}

@media (min-width: 992px) {
  .btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
    white-space: nowrap;
  }

  .btn-login:hover {
    background: var(--primary);
    color: #FFFFFF;
    box-shadow: 0 4px 15px var(--primary-glow);
  }
}

/* Hamburger button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 36px;
  height: 36px;
  padding: 7px;
  background: var(--primary-soft);
  border-radius: var(--radius-sm);
  border: 1px solid var(--primary-soft-border);
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  height: 100dvh;
  background: #FFFFFF;
  z-index: 1050;
  padding: 1.5rem 1.25rem;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 16, 21, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--light-border);
}

.drawer-close {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1;
  padding: 0.25rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 0.4rem;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ====================================================================
   HERO SECTION (MOBILE FIRST RESOLUTION)
   ==================================================================== */
.hero-section {
  padding-top: 5.5rem;
  padding-bottom: 3.5rem;
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(253, 241, 244, 0.8) 0%, rgba(252, 248, 249, 1) 90%);
}

@media (min-width: 768px) {
  .hero-section {
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 8.5rem;
    padding-bottom: 6rem;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.hero-content {
  width: 100%;
  max-width: 100%;
}

.hero-content h1 {
  font-family: var(--font-display);
  /* Fluid font sizing calculated so long words fit perfectly on 320px+ */
  font-size: clamp(1.75rem, 7.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 1.15rem;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-content .hero-desc {
  font-size: clamp(0.95rem, 2.6vw, 1.12rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 580px;
}

/* Actions in Mobile: full-width or auto-wrap */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  width: 100%;
}

@media (min-width: 440px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-actions .btn {
    flex: 0 0 auto;
  }
}

@media (max-width: 439px) {
  .hero-actions .btn {
    width: 100%;
  }
}

/* Stats Grid on Mobile: Responsive wrap */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--light-border);
  width: 100%;
}

.stat-item {
  text-align: left;
}

.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 4.5vw, 1.75rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
  white-space: nowrap;
}

.stat-item .stat-label {
  font-size: clamp(0.7rem, 2.2vw, 0.8rem);
  color: var(--text-muted);
  line-height: 1.25;
}

/* Hero Visual / Image Frame */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #FFFFFF;
  background: #FFF;
  width: 100%;
  max-width: 380px;
}

@media (min-width: 768px) {
  .hero-image-wrapper {
    border-width: 6px;
    max-width: 420px;
  }
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Floating Card inside Hero - Contained inside bounds on mobile */
.hero-floating-badge {
  position: relative;
  margin-top: -18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--primary-soft-border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: calc(100% - 20px);
  max-width: 320px;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-floating-badge {
    position: absolute;
    bottom: 20px;
    left: -12px;
    margin-top: 0;
    width: auto;
    max-width: 270px;
    animation: float 4s ease-in-out infinite;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-floating-badge .badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero-floating-badge .badge-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.hero-floating-badge .badge-text p {
  font-size: 0.72rem;
  color: var(--text-secondary);
  line-height: 1.2;
}

/* ====================================================================
   AUDIENCE SECTION (¿Para quién es?)
   ==================================================================== */
.audience-section {
  background: #FFFFFF;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.35rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.audience-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  border-color: var(--primary-soft-border);
  box-shadow: var(--shadow-md);
}

.audience-card .card-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.15rem;
  border: 1px solid var(--primary-soft-border);
}

.audience-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.audience-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Contrast Box: "Para quién NO es" */
.not-for-box {
  margin-top: 2.75rem;
  background: #15161D;
  border-radius: var(--radius-lg);
  padding: 2rem 1.35rem;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .not-for-box {
    grid-template-columns: 1fr 1.6fr;
    padding: 3rem 3rem;
    margin-top: 3.5rem;
  }
}

.not-for-box h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
}

.not-for-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.not-for-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #D1D5DB;
}

.not-for-item svg {
  color: #EF4444;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ====================================================================
   APP EXPERIENCE SECTION ("No es un PDF, es una APP")
   ==================================================================== */
.app-section {
  background: linear-gradient(180deg, #FAF4F6 0%, #FFFFFF 100%);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 992px) {
  .app-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.app-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.app-feature-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.app-feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.app-feature-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* Phone Mockup - 100% responsive */
.mockup-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.phone-mockup {
  width: 100%;
  max-width: 310px;
  background: #000000;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2), 0 0 0 3px #26272E;
  position: relative;
}

.phone-screen {
  width: 100%;
  background: #14151B;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
}

.phone-island {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 18px;
  background: #000000;
  border-radius: 10px;
  z-index: 10;
}

.phone-header {
  padding: 34px 14px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-header .greeting {
  font-size: 0.75rem;
  color: #9CA3AF;
}

.phone-header .user-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.phone-badge-live {
  background: rgba(216, 86, 122, 0.2);
  color: #FFA5BD;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 8px;
}

.phone-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-card-workout {
  background: linear-gradient(145deg, #20222D 0%, #171821 100%);
  border: 1px solid rgba(216, 86, 122, 0.3);
  border-radius: 16px;
  padding: 14px;
}

.phone-card-workout .tag {
  font-size: 0.65rem;
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-card-workout h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 3px 0 8px;
}

.exercise-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: 0.74rem;
}

.exercise-row span:last-child {
  color: var(--primary);
  font-weight: 700;
}

.phone-metrics-box {
  background: #1C1D26;
  border-radius: 14px;
  padding: 12px;
}

.phone-metrics-box h6 {
  font-size: 0.74rem;
  color: #9CA3AF;
  margin-bottom: 6px;
}

.progress-bar-wrap {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  width: 78%;
  background: var(--primary-gradient);
}

.phone-chat-bubble {
  background: rgba(216, 86, 122, 0.12);
  border: 1px solid rgba(216, 86, 122, 0.25);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.72rem;
  color: #F8D7DF;
  display: flex;
  gap: 6px;
  align-items: center;
}

/* ====================================================================
   PROCESS SECTION (Paso a Paso)
   ==================================================================== */
.process-section {
  background: #FFFFFF;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.35rem;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-4px);
  background: #FFFFFF;
  border-color: var(--primary-soft-border);
  box-shadow: var(--shadow-md);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: rgba(216, 86, 122, 0.22);
  line-height: 1;
  margin-bottom: 0.85rem;
  transition: var(--transition);
}

.process-card:hover .process-step-num {
  color: var(--primary);
}

.process-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.process-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ====================================================================
   PLANS SECTION (Precios & Programas)
   ==================================================================== */
.plans-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF4F6 100%);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  max-width: 950px;
  margin: 0 auto;
}

@media (min-width: 860px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

.plan-card {
  background: #FFFFFF;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .plan-card {
    padding: 2.75rem 2.2rem;
  }
}

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

.plan-card.featured {
  background: #14151C;
  color: #FFFFFF;
  border: 2px solid var(--primary);
  box-shadow: 0 15px 40px rgba(216, 86, 122, 0.25);
}

.plan-top-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #FFFFFF;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
  box-shadow: 0 4px 12px var(--primary-glow);
}

.plan-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--light-border);
}

.plan-card.featured .plan-header {
  border-color: rgba(255, 255, 255, 0.1);
}

.plan-category {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.plan-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.plan-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.plan-card.featured .plan-desc {
  color: #A0A5B5;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
  flex: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.plan-card.featured .plan-feature-item {
  color: #E2E8F0;
}

.plan-feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-feature-item.negative {
  color: var(--text-muted);
}

.plan-card.featured .plan-feature-item.negative {
  color: #64748B;
}

.plan-feature-item.negative svg {
  color: #94A3B8;
}

.plan-card .btn {
  width: 100%;
}

/* ====================================================================
   ABOUT ROCIO SECTION (Coach & Atleta NPC Bikini)
   ==================================================================== */
.about-section {
  background: #0E0F14;
  color: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.75rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  width: 100%;
}

.about-photo-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 3 / 4;
}

.about-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-photo-wrap:hover img {
  transform: scale(1.03);
}

.about-photo-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(15, 16, 21, 0.88);
  backdrop-filter: blur(8px);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 700;
  color: #FFA5BD;
  text-align: center;
  border: 1px solid rgba(216, 86, 122, 0.3);
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.about-content .about-role {
  font-size: 0.98rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.about-text strong {
  color: #FFFFFF;
}

.about-signature-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.coach-signature {
  font-family: var(--font-script);
  font-size: 2.6rem;
  color: var(--primary);
  line-height: 1;
}

/* ====================================================================
   EBOOKS / MARKETPLACE SECTION
   ==================================================================== */
.ebooks-section {
  background: var(--light-bg);
}

.ebooks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .ebooks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ebooks-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ebook-card {
  background: #FFFFFF;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.4rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.ebook-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-soft-border);
  box-shadow: var(--shadow-md);
}

.ebook-badge {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 1.15rem;
}

.ebook-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.ebook-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.35rem;
  flex: 1;
}

.ebook-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-border);
}

.ebook-price {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ====================================================================
   FAQS SECTION (Acordeón)
   ==================================================================== */
.faqs-section {
  background: #FFFFFF;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: var(--light-bg);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-soft-border);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.faq-trigger {
  width: 100%;
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-icon-arrow {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  background: var(--primary);
  color: #FFFFFF;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-content {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ====================================================================
   CONTACT & APPLICATION SECTION
   ==================================================================== */
.contact-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF3F5 100%);
}

.contact-card-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--primary-soft-border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 860px) {
  .contact-card-wrap {
    grid-template-columns: 1fr 1.3fr;
  }
}

.contact-info-panel {
  background: #14151B;
  color: #FFFFFF;
  padding: 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .contact-info-panel {
    padding: 3rem 2.2rem;
  }
}

.contact-info-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.contact-info-panel p {
  color: #9CA3AF;
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: #E2E8F0;
}

.method-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(216, 86, 122, 0.15);
  color: #FFA5BD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form-panel {
  padding: 2.25rem 1.5rem;
}

@media (min-width: 768px) {
  .contact-form-panel {
    padding: 3rem 2.2rem;
  }
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--light-border);
  background: var(--light-bg);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ====================================================================
   FOOTER
   ==================================================================== */
.site-footer {
  background: #0B0C10;
  color: #8C92A4;
  padding: 3.5rem 0 1.75rem;
  font-size: 0.88rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.75rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

.footer-brand .brand-logo {
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.footer-brand p {
  line-height: 1.55;
  max-width: 320px;
}

.footer-col h5 {
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ====================================================================
   FLOATING WHATSAPP BUTTON (Optimized positioning)
   ==================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 18px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
}

.floating-whatsapp .ping {
  position: absolute;
  top: 0;
  right: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #FF3B30;
  border: 2px solid #FFFFFF;
}

/* ====================================================================
   LOGIN MODAL
   ==================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 16, 21, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #FFFFFF;
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(15px) scale(0.97);
  transition: var(--transition);
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  color: var(--text-muted);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
}

.modal-close:hover {
  color: var(--text-primary);
  background: #E5E7EB;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}
