/*
Theme Name: Astra Child
Template: astra
Version: 1.0
Description: Tema hijo para FitWoman
Author: FitWoman
*/

:root {
  --fw-primary: #EF7B6E;
  --fw-primary-dark: #e36658;
  --fw-secondary: #00BCE4;
  --fw-soft: #fff4f2;
  --fw-text: #222222;
  --fw-muted: #666666;
  --fw-white: #ffffff;
  --fw-border: rgba(0,188,228,.18);
  --fw-shadow: 0 12px 30px rgba(0,188,228,.10);
}

/* ANCHO COMPLETO */
body.page-template-page-fitwoman-home .site-content .ast-container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

body.page-template-page-fitwoman-home .content-area,
body.page-template-page-fitwoman-home .site-main,
body.page-template-page-fitwoman-home article,
body.page-template-page-fitwoman-home .entry-content {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

body.page-template-page-fitwoman-home .entry-header {
  display: none;
}

/* BASE */
.fitwoman-home {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--fw-text);
}

.fw-container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* HERO */
.fw-hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--fw-white);
  background:
    linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.48)),
    url('https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=1800&q=80') center center / cover;
  padding-top: 110px;
  padding-bottom: 80px;
}

.fw-hero-content {
  max-width: 720px;
}

.fw-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: #ffffff;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0,0,0,.45);
}

.fw-hero h1 span {
  color: var(--fw-primary);
}

.fw-hero p {
  font-size: 21px;
  line-height: 1.5;
  margin-bottom: 32px;
  color: rgba(255,255,255,.95);
  max-width: 680px;
}

/* BOTONES */
.fw-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fw-btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 10px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
  transition: .3s ease;
}

.fw-btn-primary {
  background: var(--fw-primary);
  color: #ffffff !important;
}

.fw-btn-primary:hover {
  background: var(--fw-primary-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.fw-btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff !important;
}

.fw-btn-outline:hover {
  background: #ffffff;
  color: var(--fw-primary) !important;
}

.fw-btn-light {
  background: #ffffff;
  color: var(--fw-primary) !important;
}

.fw-btn-light:hover {
  background: var(--fw-secondary);
  color: #ffffff !important;
}

/* SECCIONES */
.fw-section {
  padding: 80px 0;
}

.fw-soft {
  background: var(--fw-soft);
}

.fw-section h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: var(--fw-text);
}

.fw-section h2 span {
  color: var(--fw-primary);
}

/* GRIDS */
.fw-grid-3,
.fw-grid-4 {
  display: grid;
  gap: 24px;
}

.fw-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.fw-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* TARJETAS */
.fw-card,
.fw-step,
.fw-program {
  background: #ffffff;
  border: 1px solid var(--fw-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--fw-shadow);
  transition: .3s ease;
}

.fw-card:hover,
.fw-step:hover,
.fw-program:hover {
  transform: translateY(-5px);
  border-color: var(--fw-secondary);
}

.fw-card {
  text-align: center;
  font-weight: 700;
}

.fw-step strong {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--fw-primary);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 20px;
}

.fw-step h3,
.fw-program h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--fw-text);
}

.fw-step p,
.fw-program p {
  color: var(--fw-muted);
}

/* LOCALIZACIONES */
.fw-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fw-locations span {
  background: #ffffff;
  border: 1px solid var(--fw-border);
  border-radius: 14px;
  padding: 22px;
  font-weight: 800;
  text-align: center;
  box-shadow: var(--fw-shadow);
}

/* FAQ */
.fw-faqs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.fw-faqs details {
  border: 1px solid var(--fw-border);
  border-radius: 14px;
  padding: 20px;
  background: #ffffff;
  box-shadow: var(--fw-shadow);
}

.fw-faqs summary {
  font-weight: 800;
  cursor: pointer;
  color: var(--fw-text);
}

.fw-faqs p {
  margin-top: 12px;
  color: var(--fw-muted);
}

/* CTA FINAL */
.fw-final-cta {
  background: linear-gradient(135deg, var(--fw-primary), var(--fw-secondary));
  color: #ffffff;
  text-align: center;
  padding: 90px 0;
}

.fw-final-cta h2 {
  font-size: clamp(34px, 5vw, 58px);
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #ffffff;
}

.fw-final-cta p {
  font-size: 20px;
  margin-bottom: 28px;
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .fw-grid-3,
  .fw-grid-4,
  .fw-locations,
  .fw-faqs {
    grid-template-columns: 1fr;
  }

  .fw-hero {
    min-height: 600px;
    padding-top: 90px;
  }

  .fw-hero h1 {
    font-size: clamp(32px, 9vw, 46px);
  }

  .fw-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
.fw-icon-card {
  box-shadow: none;
  border: none;
  background: transparent;
}

.fw-icon {
  width: 82px;
  height: 82px;
  border: 3px solid var(--fw-primary);
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  font-size: 34px;
  color: var(--fw-primary);
  background: #ffffff;
}

.fw-icon-card p {
  font-size: 18px;
  line-height: 1.45;
  max-width: 230px;
  margin: 0 auto;
}
/* QUIÉNES SOMOS */

.fw-about {
  background: #ffffff;
}

.fw-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.fw-about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--fw-shadow);
}

.fw-eyebrow {
  display: inline-block;
  color: var(--fw-secondary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.fw-about-content h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: var(--fw-text);
}

.fw-about-content p {
  font-size: 18px;
  color: var(--fw-muted);
  margin-bottom: 18px;
}

.fw-about-list {
  margin: 24px 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.fw-about-list li {
  list-style: none;
  font-weight: 700;
}

.fw-about-list li::before {
  content: "✓";
  color: var(--fw-primary);
  font-weight: 900;
  margin-right: 10px;
}

@media (max-width: 900px) {
  .fw-about-grid {
    grid-template-columns: 1fr;
  }

  .fw-about-image img {
    height: 360px;
  }
}