/* =============================================
   ZONA FAMILIAR AR — Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #2D2D2D;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── VARIABLES ── */
:root {
  --orange: #FF6B1A;
  --orange-dark: #e05510;
  --orange-light: #FFE8D6;
  --gold: #F4A723;
  --dark: #1A1A1A;
  --gray: #6B6B6B;
  --light: #FFF8F3;
  --radius: 16px;
  --shadow: 0 8px 32px rgba(255,107,26,0.12);
  --shadow-lg: 0 16px 48px rgba(255,107,26,0.18);
}

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.bg-warm { background: var(--light); }
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
em { font-style: italic; color: var(--orange); }

.section-label {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; }
.section-header p { color: var(--gray); font-size: 1.05rem; }

h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.15; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.25; }
h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,26,0.4); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-outline-dark {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-dark:hover { background: var(--orange); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
}
.btn-white:hover { background: var(--orange-light); }
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); }
.btn-lg { padding: 14px 36px; font-size: 1.05rem; }

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,26,0.1);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text { font-family: 'Nunito', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--dark); }
.logo-text strong { color: var(--orange); }
.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 6px; align-items: center; }
.main-nav a {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  transition: all 0.2s;
}
.main-nav a:hover, .main-nav a.active { background: var(--orange-light); color: var(--orange); }
.nav-cta { margin-left: auto; flex-shrink: 0; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,10,0,0.75) 0%, rgba(255,107,26,0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 60px 24px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-content h1 { margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-content h1 em { color: var(--gold); }
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 560px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat span { font-size: 0.85rem; color: rgba(255,255,255,0.75); margin-top: 2px; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 480px; object-fit: cover; }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 700;
}
.about-badge-float span { font-size: 2rem; display: block; margin-bottom: 6px; }
.about-text .section-label { margin-bottom: 12px; }
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--gray); margin-bottom: 14px; }
.about-features { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.about-features li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.feat-icon { font-size: 1.1rem; }

/* ── ACTIVITIES HOME ── */
.act-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.act-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.act-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.act-img { height: 220px; overflow: hidden; }
.act-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.act-card:hover .act-img img { transform: scale(1.05); }
.act-body { padding: 20px; }
.act-body h3 { color: var(--dark); }
.act-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 12px; }
.act-age {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

/* ── PACKAGES HOME ── */
.pkg-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.pkg-card {
  background: #fff;
  border: 2px solid #F0E8E0;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}
.pkg-card:hover { border-color: var(--orange); box-shadow: var(--shadow); transform: translateY(-4px); }
.pkg-featured {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.pkg-featured:hover { transform: scale(1.04) translateY(-4px); }
.pkg-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  font-size: 0.78rem;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pkg-icon { font-size: 3rem; margin-bottom: 14px; }
.pkg-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.pkg-card p { font-size: 0.92rem; margin-bottom: 20px; }
.pkg-featured p { color: rgba(255,255,255,0.85); }
.pkg-price { font-size: 1.05rem; margin-bottom: 24px; }
.pkg-price strong { font-size: 1.6rem; display: block; }
.pkg-featured .pkg-price { color: #fff; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}
.gal-item { border-radius: var(--radius); overflow: hidden; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gal-item:hover img { transform: scale(1.06); }
.gal-big { grid-row: span 2; }

/* ── SCHEDULE TABLE ── */
.schedule-table-wrap { overflow-x: auto; }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.schedule-table thead { background: var(--orange); color: #fff; }
.schedule-table th { padding: 16px 20px; font-weight: 800; font-size: 0.9rem; text-align: left; }
.schedule-table td { padding: 16px 20px; border-bottom: 1px solid #F0E8E0; font-size: 0.95rem; }
.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:nth-child(even) { background: var(--light); }
.highlight-row td { font-weight: 700; color: var(--orange); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; }
.testi-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 16px; font-style: italic; }
.testi-author { font-weight: 800; font-size: 0.9rem; }

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #FF8C42 100%);
  padding: 80px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 { color: #fff; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 0.9rem; margin-top: 12px; margin-bottom: 10px; }
.footer-addr, .footer-phone { font-size: 0.88rem; }
.footer-nav h4 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 16px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.9rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--orange); }
.footer-contact h4 { color: #fff; font-size: 1rem; font-weight: 800; margin-bottom: 16px; }
.footer-contact p { font-size: 0.9rem; margin-bottom: 6px; }
.footer-contact a:hover { color: var(--orange); }
.footer-hours { margin-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 14px; }
.footer-hours p { font-size: 0.85rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a:hover { color: var(--orange); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 540px;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 20px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 9999;
  font-size: 0.88rem;
  transition: opacity 0.4s, transform 0.4s;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
.cookie-banner a { color: var(--orange); text-decoration: underline; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3D1A00 100%);
  color: #fff;
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero .section-label { background: rgba(255,107,26,0.25); color: var(--gold); }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero h1 em { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }

/* ── BREADCRUMB ── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.6); justify-content: center; margin-top: 14px; }
.breadcrumb a { color: var(--gold); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info h3 { margin-bottom: 12px; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-info-icon { width: 48px; height: 48px; background: var(--orange-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-info-text strong { display: block; font-weight: 800; margin-bottom: 2px; }
.contact-info-text span { font-size: 0.9rem; color: var(--gray); }
.contact-form-wrap { background: var(--light); border-radius: var(--radius); padding: 40px; }
.contact-form-wrap h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8D8CC;
  border-radius: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s;
  background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 800px; margin: 0 auto; padding: 80px 24px; }
.legal-content h2 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--dark); }
.legal-content p, .legal-content li { color: var(--gray); margin-bottom: 10px; line-height: 1.7; }
.legal-content ul { padding-left: 20px; list-style: disc; }

/* ── PACKAGES PAGE ── */
.pkg-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pkg-full-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: all 0.3s;
}
.pkg-full-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.pkg-full-card.is-featured { border-color: var(--orange); }
.pkg-full-top { padding: 28px 28px 0; text-align: center; }
.pkg-full-icon { font-size: 3.5rem; margin-bottom: 10px; }
.pkg-full-name { font-size: 1.4rem; font-weight: 900; margin-bottom: 6px; }
.pkg-full-price { font-size: 2rem; font-weight: 900; color: var(--orange); }
.pkg-full-price sub { font-size: 0.9rem; color: var(--gray); font-weight: 600; }
.pkg-full-body { padding: 20px 28px 28px; }
.pkg-full-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 16px; }
.pkg-includes { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pkg-includes li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.pkg-includes .check { color: var(--orange); font-weight: 900; }
.pkg-badge { display: inline-block; background: var(--gold); color: #fff; font-weight: 800; font-size: 0.75rem; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }

/* ── ACTIVITIES PAGE ── */
.act-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.act-full-card { display: grid; grid-template-columns: 200px 1fr; gap: 24px; align-items: start; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.act-full-img { height: 100%; min-height: 200px; }
.act-full-img img { width: 100%; height: 100%; object-fit: cover; }
.act-full-body { padding: 24px 24px 24px 0; }
.act-full-body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.act-full-body p { color: var(--gray); font-size: 0.92rem; margin-bottom: 12px; }

/* ── SCHEDULE PAGE ── */
.schedule-full { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.schedule-card { background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.schedule-card h3 { margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.schedule-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid #F0E8E0; font-size: 0.93rem; }
.schedule-row:last-child { border-bottom: none; }
.schedule-row .day { font-weight: 700; }
.schedule-row .time { color: var(--orange); font-weight: 800; }
.schedule-note { background: var(--orange-light); border-radius: 10px; padding: 16px; margin-top: 16px; font-size: 0.88rem; color: var(--orange-dark); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .act-full-grid { grid-template-columns: 1fr; }
  .schedule-full { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-wrap img { height: 360px; }
  .about-badge-float { right: 0; bottom: -16px; }
  .act-grid { grid-template-columns: 1fr; }
  .pkg-grid-home { grid-template-columns: 1fr; }
  .pkg-featured { transform: scale(1); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gal-big { grid-row: span 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .pkg-full-grid { grid-template-columns: 1fr; }
  .act-full-card { grid-template-columns: 1fr; }
  .act-full-img { min-height: 200px; }
  .act-full-body { padding: 24px; }
}

@media (max-width: 768px) {
  .header-inner { padding: 12px 20px; }
  .main-nav {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    flex-direction: column;
    z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 12px 16px; border-radius: 10px; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .section-pad { padding: 60px 0; }
  .hero-content { padding: 40px 20px; }
  .hero-stats { gap: 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .cookie-banner { flex-direction: column; align-items: flex-start; }
}
