﻿:root{
  --bg:#f7f1ea;
  --surface:#ffffff;
  --surface-2:#fff6eb;
  --surface-3:#f2fbf7;

  --text:#1f1b16;
  --muted:#5f564d;
  --border:#eadfce;

  --accent:#ff6b35;
  --accent-2:#2ec4b6;
  --accent-3:#ffd166;
  --accent-dark:#1f1b16;

  --radius-1:14px;
  --radius-2:20px;
  --radius-3:28px;

  --space-1:6px;
  --space-2:10px;
  --space-3:14px;
  --space-4:18px;
  --space-5:24px;
  --space-6:32px;
  --space-7:48px;
  --space-8:72px;
  --space-9:96px;

  --maxw:1180px;
  --textw:820px;

  --shadow: 0 16px 40px rgba(36, 24, 16, .12);
  --shadow-soft: 0 12px 24px rgba(36, 24, 16, .08);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at top, #fff9f2 0%, #f7f1ea 60%, #f3efe9 100%);
  color:var(--text);
  line-height:1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a{ color:inherit; text-decoration:none; }
a:focus-visible{
  outline: 3px solid rgba(46, 196, 182, .6);
  outline-offset: 3px;
  border-radius: 10px;
}

.bg-orbs{
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bg-orbs::before,
.bg-orbs::after{
  content:"";
  position:absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(0px);
  opacity:.35;
}
.bg-orbs::before{
  background: radial-gradient(circle, rgba(255,107,53,.6), rgba(255,107,53,0));
  top: -80px;
  left: -60px;
  animation: float 10s ease-in-out infinite;
}
.bg-orbs::after{
  background: radial-gradient(circle, rgba(46,196,182,.55), rgba(46,196,182,0));
  bottom: -120px;
  right: -80px;
  animation: float 12s ease-in-out infinite reverse;
}

.container{
  width: min(100% - 2*var(--space-6), var(--maxw));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 249, 242, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--space-4);
  padding: var(--space-4) 0;
}

.logo{
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 20px;
}

.nav-links{
  display:flex;
  gap: var(--space-5);
  font-weight: 600;
  color: var(--muted);
}

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

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 46px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn.primary{
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(255,107,53,.25);
}

.btn.ghost{
  background: transparent;
  border-color: rgba(46,196,182,.3);
  color: var(--accent-dark);
}

.btn.ghost:hover{
  background: rgba(46,196,182,.12);
}

.hero{
  padding: var(--space-9) 0 var(--space-8);
  min-height: 80vh;
}

.hero-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-8);
  align-items:center;
}

.hero-content h1{
  font-family: "Fraunces", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  margin: 0 0 var(--space-4) 0;
}

.eyebrow{
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-2);
  margin-bottom: var(--space-3);
}

.lead{
  font-size: 18px;
  max-width: var(--textw);
  color: var(--muted);
  margin-bottom: var(--space-5);
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.cta-row.cta-top{
  margin-top: var(--space-4);
}

.hero-highlights{
  display:flex;
  flex-wrap:wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.pill{
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid rgba(46,196,182,.2);
  font-weight: 600;
  color: var(--accent-dark);
}

.hero-visual{
  display:grid;
  gap: var(--space-4);
  position: relative;
  align-items: stretch;
}

.photo-stack{
  display:grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  max-width: 420px;
  margin-left: auto;
  height: 100%;
}

.photo-stack img{
  width: 100%;
  border-radius: var(--radius-2);
  object-fit: cover;
  height: 80%;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.section#horarios{
  padding-bottom: var(--space-9);
}

.section{
  padding: var(--space-8) 0;
}

.section.soft{
  background: var(--surface-2);
}

.section.accent{
  background: linear-gradient(135deg, rgba(255,209,102,.2), rgba(46,196,182,.15));
}

.section.split{
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head{
  margin-bottom: var(--space-6);
  max-width: var(--textw);
}

.section-head h2{
  font-family: "Fraunces", serif;
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 var(--space-3) 0;
}

.section-head p{
  color: var(--muted);
  margin: 0;
}

.card-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
}

.card{
  background: var(--surface);
  padding: var(--space-6) var(--space-5) var(--space-5);
  border-radius: var(--radius-2);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.card h3{
  margin-top: 0;
  margin-bottom: var(--space-2);
  font-size: 18px;
}

.carousel{
  display:grid;
  gap: var(--space-4);
  overflow: hidden;
}

.carousel-track{
  display:flex;
  gap: var(--space-4);
  width: max-content;
  padding: var(--space-2) 0;
  animation: marquee 28s linear infinite reverse;
  will-change: transform;
}

.carousel-slide{
  min-width: min(70vw, 420px);
  background: var(--surface);
  border-radius: var(--radius-2);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel-slide img{
  width: 100%;
  height: 280px;
  object-fit: cover;
  display:block;
}

.schedule-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.schedule-card{
  padding: var(--space-5);
  background: var(--surface);
  border-radius: var(--radius-2);
  border: 1px solid var(--border);
  text-align:center;
  box-shadow: var(--shadow-soft);
}

.day{
  display:block;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.time{
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
}

.price-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: var(--space-5);
}

.price-card{
  background: var(--surface);
  border-radius: var(--radius-2);
  padding: var(--space-6);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.price-card.highlight{
  border: 2px solid rgba(255,107,53,.4);
  background: #fffaf5;
  transform: translateY(-6px);
}

.price{
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 var(--space-4) 0;
}

.price span{
  display:block;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.clean{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display:grid;
  gap: var(--space-2);
  color: var(--muted);
}

.steps{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
}

.step{
  background: var(--surface);
  border-radius: var(--radius-2);
  padding: var(--space-5);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  display:grid;
  gap: var(--space-2);
}

.step-number{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-2);
  color: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 700;
}

.split-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-7);
}

.faq{
  display:grid;
  gap: var(--space-3);
}

.faq details{
  background: var(--surface);
  border-radius: var(--radius-2);
  padding: var(--space-4);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.faq summary{
  cursor: pointer;
  font-weight: 700;
}

.faq p{
  margin-top: var(--space-3);
  color: var(--muted);
}

.cta{
  padding: var(--space-9) 0;
}

.cta-box{
  background: var(--accent-dark);
  color: #fff;
  border-radius: var(--radius-3);
  padding: var(--space-7);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: var(--space-5);
}

.cta-box h2{
  font-family: "Fraunces", serif;
  margin: 0 0 var(--space-2) 0;
}

.cta-box p{
  margin: 0;
  color: rgba(255,255,255,.8);
}

.site-footer{
  border-top: 1px solid var(--border);
  padding: var(--space-6) 0 var(--space-7);
  background: var(--surface);
}

.site-footer p{
  color: var(--muted);
  margin-top: var(--space-2);
}

.reveal{
  animation: fadeUp .7s ease both;
}

.delay-1{ animation-delay: .12s; }
.delay-2{ animation-delay: .24s; }

@keyframes fadeUp{
  from{ opacity:0; transform: translateY(16px); }
  to{ opacity:1; transform: translateY(0); }
}

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

@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (max-width: 960px){
  .hero-grid{
    grid-template-columns: 1fr;
  }
  .split-grid{
    grid-template-columns: 1fr;
  }
  .cta-box{
    flex-direction: column;
    align-items:flex-start;
  }
}

@media (max-width: 720px){
  .nav-links{
    display:none;
  }
  .container{
    width: min(100% - 2*var(--space-5), var(--maxw));
  }
  .photo-stack img{
    height: 160px;
  }
  .cta-row{
    flex-direction: column;
    align-items: stretch;
  }
  .btn{
    width: 100%;
  }
}
