:root {
  --primary: #6c3fc5;
  --primary-dark: #5a32a3;
  --primary-light: #8b5cf6;
  --secondary: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  --dark: #1e1b2e;
  --gray: #6b7280;
  --light-bg: #f8f7ff;
  --card-shadow: 0 4px 24px rgba(108,63,197,0.10);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e1b2e;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar { background: #fff; padding: 1rem 0; box-shadow: 0 2px 20px rgba(0,0,0,.06); position: sticky; top: 0; z-index: 1000; }
.navbar-brand { font-size: 1.5rem; font-weight: 800; color: var(--primary) !important; letter-spacing: -.5px; }
.navbar-brand span { color: var(--secondary); }
.nav-link { font-weight: 500; color: var(--dark) !important; transition: var(--transition); }
.nav-link:hover { color: var(--primary) !important; }
.btn-book-nav { background: var(--primary); color: #fff !important; border-radius: 50px; padding: .5rem 1.5rem !important; font-weight: 600; }
.btn-book-nav:hover { background: var(--primary-dark) !important; transform: translateY(-2px); }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #a78bfa 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge { background: rgba(255,255,255,.2); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.3); color: #fff; padding: .4rem 1rem; border-radius: 50px; font-size: .85rem; font-weight: 600; display: inline-block; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; }
.hero p { font-size: 1.15rem; opacity: .9; margin-bottom: 2.5rem; max-width: 520px; }
.btn-hero { background: #fff; color: var(--primary); padding: 1rem 2.5rem; border-radius: 50px; font-weight: 700; font-size: 1.1rem; text-decoration: none; display: inline-block; transition: var(--transition); box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,.3); color: var(--primary-dark); }
.btn-hero-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); padding: 1rem 2rem; border-radius: 50px; font-weight: 600; text-decoration: none; display: inline-block; transition: var(--transition); margin-left: 1rem; }
.btn-hero-outline:hover { background: rgba(255,255,255,.15); color: #fff; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat-item h3 { font-size: 2rem; font-weight: 800; margin: 0; }
.hero-stat-item p { font-size: .85rem; opacity: .8; margin: 0; }
.hero-image { position: relative; z-index: 2; }
.hero-card { background: rgba(255,255,255,.15); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.3); border-radius: 20px; padding: 2rem; color: #fff; }
.hero-card-icon { width: 60px; height: 60px; background: rgba(255,255,255,.2); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1rem; }
.floating-card { position: absolute; background: #fff; border-radius: 12px; padding: .8rem 1.2rem; box-shadow: 0 8px 30px rgba(0,0,0,.15); font-size: .85rem; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: .5rem; animation: float 3s ease-in-out infinite; }
.floating-card-1 { top: 10%; right: -5%; }
.floating-card-2 { bottom: 20%; left: -5%; animation-delay: 1s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* SECTIONS */
section { padding: 5rem 0; }
.section-badge { font-size: .85rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: .5rem; }
.section-title { font-size: 2.2rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; line-height: 1.3; }
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 540px; }

/* SERVICE CARDS */
.services-section { background: var(--light-bg); }
.service-card { background: #fff; border-radius: var(--radius); padding: 2rem; box-shadow: var(--card-shadow); transition: var(--transition); border: 2px solid transparent; cursor: pointer; height: 100%; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(108,63,197,.15); border-color: var(--primary-light); }
.service-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 1.2rem; }
.service-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; color: var(--dark); }
.service-card p { color: var(--gray); font-size: .9rem; margin-bottom: 1rem; }
.service-meta { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid #f3f4f6; }
.service-price { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.service-duration { font-size: .82rem; color: var(--gray); background: #f3f4f6; padding: .3rem .7rem; border-radius: 20px; }
.btn-agendar-card { width: 100%; background: var(--primary); color: #fff; border: none; border-radius: 50px; padding: .7rem; font-weight: 600; font-size: .95rem; margin-top: 1rem; transition: var(--transition); cursor: pointer; }
.btn-agendar-card:hover { background: var(--primary-dark); }

/* ABOUT */
.about-img { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.feature-icon { width: 48px; height: 48px; min-width: 48px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: #fff; }
.feature-item h5 { font-weight: 700; margin-bottom: .2rem; }
.feature-item p { color: var(--gray); font-size: .9rem; margin: 0; }

/* HOURS */
.hours-section { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; }
.hours-card { background: rgba(255,255,255,.12); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,.2); border-radius: 16px; padding: 2rem; }
.hours-row { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: .95rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; }
.hours-row .time { opacity: .9; }
.hours-row.closed .time { color: #fca5a5; }

/* CTA */
.cta-section { background: var(--light-bg); text-align: center; }
.cta-box { background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 24px; padding: 4rem; color: #fff; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50px; right: -50px; width: 200px; height: 200px; background: rgba(255,255,255,.1); border-radius: 50%; }
.cta-box h2 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; }
.cta-box p { font-size: 1.1rem; opacity: .9; margin-bottom: 2rem; }

/* FOOTER */
footer { background: var(--dark); color: #fff; padding: 3rem 0 1.5rem; }
footer .footer-brand { font-size: 1.4rem; font-weight: 800; color: #fff; }
footer .footer-brand span { color: var(--secondary); }
footer p { color: rgba(255,255,255,.6); font-size: .9rem; }
footer a { color: rgba(255,255,255,.6); text-decoration: none; transition: var(--transition); font-size: .9rem; }
footer a:hover { color: #fff; }
footer h6 { font-weight: 700; color: #fff; margin-bottom: 1rem; font-size: .95rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.social-icons a { width: 36px; height: 36px; background: rgba(255,255,255,.1); border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; color: #fff; margin-right: .4rem; transition: var(--transition); }
.social-icons a:hover { background: var(--primary); }

/* WHATSAPP FLOAT */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 9999; }
.whatsapp-float a { width: 58px; height: 58px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: var(--transition); text-decoration: none; animation: pulse 2s infinite; }
.whatsapp-float a:hover { transform: scale(1.1); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 70%{box-shadow:0 0 0 12px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

/* BOOKING STEPS */
.booking-container { max-width: 680px; margin: 0 auto; }
.step-indicator { display: flex; align-items: center; justify-content: center; margin-bottom: 2.5rem; gap: 0; }
.step-dot { width: 36px; height: 36px; border-radius: 50%; background: #e5e7eb; color: #9ca3af; font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.step-dot.active { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(108,63,197,.4); }
.step-dot.done { background: var(--success); color: #fff; }
.step-line { flex: 1; height: 3px; background: #e5e7eb; max-width: 60px; transition: var(--transition); }
.step-line.done { background: var(--success); }
.booking-step { display: none; animation: fadeIn .3s ease; }
.booking-step.active { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.booking-card { background: #fff; border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--card-shadow); border: 1px solid #f0f0f0; }
.booking-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; }
.booking-card p.subtitle { color: var(--gray); margin-bottom: 2rem; }

.service-option { border: 2px solid #e5e7eb; border-radius: 12px; padding: 1.2rem 1.5rem; cursor: pointer; transition: var(--transition); display: flex; align-items: center; gap: 1rem; margin-bottom: .8rem; }
.service-option:hover { border-color: var(--primary-light); background: #faf8ff; }
.service-option.selected { border-color: var(--primary); background: #faf8ff; }
.service-option input[type=radio] { accent-color: var(--primary); }
.service-option-name { font-weight: 600; }
.service-option-meta { font-size: .85rem; color: var(--gray); }
.service-option-price { font-weight: 700; color: var(--primary); margin-left: auto; }

.horario-btn { border: 2px solid #e5e7eb; border-radius: 8px; padding: .6rem 1rem; font-weight: 600; cursor: pointer; transition: var(--transition); background: #fff; font-size: .9rem; }
.horario-btn:hover { border-color: var(--primary); color: var(--primary); }
.horario-btn.selected { background: var(--primary); border-color: var(--primary); color: #fff; }

.form-control { border: 2px solid #e5e7eb; border-radius: 10px; padding: .8rem 1rem; font-size: .95rem; transition: var(--transition); }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(108,63,197,.1); }
.btn-primary-custom { background: var(--primary); border: none; border-radius: 50px; padding: .85rem 2rem; font-weight: 700; color: #fff; width: 100%; font-size: 1rem; transition: var(--transition); cursor: pointer; }
.btn-primary-custom:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary-custom { background: transparent; border: 2px solid #e5e7eb; border-radius: 50px; padding: .85rem 2rem; font-weight: 600; color: var(--gray); cursor: pointer; transition: var(--transition); }
.btn-secondary-custom:hover { border-color: var(--primary); color: var(--primary); }

/* PIX */
.pix-container { text-align: center; }
.qr-code-wrapper { display: inline-block; padding: 1.5rem; background: #fff; border-radius: 16px; box-shadow: var(--card-shadow); margin: 1.5rem 0; }
.qr-code-wrapper img { width: 220px; height: 220px; }
.copia-cola-box { background: #f8f7ff; border: 2px dashed var(--primary-light); border-radius: 10px; padding: 1rem 1.5rem; font-family: monospace; font-size: .8rem; word-break: break-all; text-align: left; position: relative; }
.btn-copiar { position: absolute; top: .5rem; right: .5rem; background: var(--primary); color: #fff; border: none; border-radius: 6px; padding: .3rem .8rem; font-size: .8rem; cursor: pointer; }
.countdown { font-size: 2rem; font-weight: 800; color: var(--primary); font-variant-numeric: tabular-nums; }
.status-check { display: inline-flex; align-items: center; gap: .5rem; background: #fff8e1; color: #f59e0b; border-radius: 20px; padding: .4rem 1rem; font-size: .9rem; font-weight: 600; }
.confirmed-animation { font-size: 4rem; animation: bounceIn .5s; }
@keyframes bounceIn { 0%{transform:scale(0)} 60%{transform:scale(1.2)} 100%{transform:scale(1)} }

/* CALENDAR */
.calendar { user-select: none; }
.calendar-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.calendar-day-header { text-align: center; font-size: .75rem; font-weight: 600; color: var(--gray); padding: .3rem 0; }
.calendar-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: 8px; font-size: .9rem; cursor: pointer; transition: var(--transition); }
.calendar-day:hover:not(.disabled):not(.empty) { background: #f3f0ff; color: var(--primary); }
.calendar-day.today { font-weight: 700; color: var(--primary); }
.calendar-day.selected { background: var(--primary); color: #fff; font-weight: 700; }
.calendar-day.disabled { color: #d1d5db; cursor: not-allowed; }
.calendar-day.empty { cursor: default; }
.calendar-nav { background: none; border: 1px solid #e5e7eb; border-radius: 8px; padding: .4rem .8rem; cursor: pointer; transition: var(--transition); }
.calendar-nav:hover { background: var(--light-bg); }

/* ALERTS & MISC */
.alert-custom { border-radius: 10px; border: none; padding: 1rem 1.5rem; }
.badge-status-confirmed { background: #d1fae5; color: #065f46; }
.badge-status-pending { background: #fef3c7; color: #92400e; }
.badge-status-cancelled { background: #fee2e2; color: #991b1b; }

/* ─── HERO SLIDER (custom, sem Bootstrap carousel) ─── */
.site-hero { position: relative; min-height: 88vh; overflow: hidden; }
.hero-slides { position: relative; min-height: 88vh; }
.hero-slide {
  position: absolute; inset: 0;
  min-height: 88vh;
  display: flex; align-items: center;
  color: #fff;
  opacity: 0; z-index: 0;
  transition: opacity .8s ease;
  pointer-events: none;
}
.hero-slide.active { opacity: 1; z-index: 2; pointer-events: auto; }
.hero-slide::before {
  content: '';
  position: absolute; top: -30%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,.07); border-radius: 50%; pointer-events: none;
}
.hero-slide::after {
  content: '';
  position: absolute; bottom: -20%; left: -8%;
  width: 360px; height: 360px;
  background: rgba(255,255,255,.05); border-radius: 50%; pointer-events: none;
}
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-slide-overlay { position: absolute; inset: 0; z-index: 1; }
.hero-slide-inner { position: relative; z-index: 3; width: 100%; padding: 5rem 0; }

/* slider navigation */
.hero-nav {
  position: absolute; bottom: 2rem; left: 0; right: 0;
  display: flex; justify-content: center; align-items: center;
  gap: 1rem; z-index: 10;
}
.hero-nav-btn {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3); border-radius: 50%;
  color: #fff; font-size: 1.3rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.hero-nav-btn:hover { background: rgba(255,255,255,.32); }
.hero-dots { display: flex; gap: .5rem; align-items: center; }
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.45); border: 2px solid rgba(255,255,255,.6);
  cursor: pointer; transition: all .3s;
}
.hero-dot.active { background: #fff; width: 26px; border-radius: 6px; }

/* LOGO styles */
.navbar-logo-img { height: 42px; max-width: 160px; object-fit: contain; }
.footer-logo-img { height: 34px; object-fit: contain; filter: brightness(0) invert(1); }

/* TRUST STRIP */
.trust-strip { background: #fff; padding: 1.2rem 0; border-bottom: 1px solid #f1f5f9; box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.trust-item { display: flex; align-items: center; gap: .6rem; color: var(--dark); font-weight: 600; font-size: .9rem; }
.trust-item-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem; flex-shrink: 0; }

/* TESTIMONIALS */
.testimonials-section { background: var(--light-bg); }
.testimonial-card { background: #fff; border-radius: 18px; padding: 1.8rem; box-shadow: var(--card-shadow); border: 1px solid #f1f5f9; height: 100%; }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: .8rem; }
.testimonial-text { color: #374151; font-size: .95rem; line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 1rem; }
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--dark); }
.testimonial-role { font-size: .8rem; color: var(--gray); }

/* SERVICE CATEGORIES */
.category-pills { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.category-pill { background: #fff; border: 2px solid #e5e7eb; color: var(--dark); padding: .4rem 1.1rem; border-radius: 50px; font-size: .85rem; font-weight: 600; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.category-pill:hover, .category-pill.active { background: var(--primary); border-color: var(--primary); color: #fff; }

@media (max-width: 768px) {
  .site-hero, .hero-slides, .hero-slide { min-height: 100svh; }
  .hero-slide-inner { padding: 4.5rem 0 6rem; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 1rem; }
  .btn-hero-outline { margin-left: 0; margin-top: .5rem; }
  .section-title { font-size: 1.7rem; }
  .booking-card { padding: 1.5rem; }
  .cta-box { padding: 2rem; }
  .cta-box h2 { font-size: 1.6rem; }
  .hero-nav-btn { display: none; }
}
