@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: radial-gradient(circle at 20% 20%, rgba(255, 127, 187, 0.14), rgba(255, 255, 255, 0.95)), #fff5fb;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-border: rgba(255, 127, 187, 0.18);
  --text: #1f1027;
  --muted: #5f4a68;
  --primary: #ff4fa3;
  --primary-strong: #ff7bbb;
  --shadow: 0 24px 70px rgba(255, 79, 163, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  background-attachment: fixed;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  padding: 28px clamp(18px, 3vw, 48px) 56px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 40px rgba(255, 79, 163, 0.12);
}

.brand-logo {
  height: 44px;
  width: 44px;
  border-radius: 12px;
  border: 1px solid var(--panel-border);
  object-fit: cover;
  background: var(--panel);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-weight: 700;
}

.brand-text small {
  color: var(--muted);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.brand img {
  height: 28px;
  width: auto;
}

.menu {
  display: flex;
  gap: 14px;
  justify-content: center;
  font-weight: 600;
}

.menu a {
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.menu a:hover {
  color: var(--text);
  background: var(--panel);
}

.actions {
  display: flex;
  gap: 10px;
}

.solid,
.ghost {
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.solid {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #2b0f24;
  box-shadow: 0 15px 35px rgba(255, 79, 163, 0.32);
}

.solid:hover {
  transform: translateY(-1px);
}

.ghost {
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--panel-border);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(14px, 3vw, 26px);
}

.copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 79, 163, 0.16);
  color: var(--primary-strong);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 12px;
}

.copy h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.copy .lede {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  max-width: 640px;
}

.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
}

.badges span {
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  font-size: 13px;
}

.visual {
  position: relative;
  display: grid;
  place-items: center;
}

.card {
  width: min(540px, 100%);
  height: 320px;
  background: linear-gradient(145deg, rgba(255, 79, 163, 0.08), rgba(255, 255, 255, 0.82));
  border-radius: 18px;
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.gradient-card {
  isolation: isolate;
}

.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(1.05);
}

.gradient-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 127, 187, 0.18), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(255, 79, 163, 0.24), transparent 45%);
  opacity: 0.9;
}

.card-overlay {
  position: absolute;
  inset: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  z-index: 1;
}

.card-title {
  font-size: 28px;
  font-weight: 800;
}

.card-sub {
  color: var(--muted);
}

.card-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 79, 163, 0.16);
  color: var(--primary);
  border: 1px solid rgba(255, 79, 163, 0.4);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  width: fit-content;
}

.pill {
  position: absolute;
  bottom: -12px;
  right: -10px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 600;
  color: var(--muted);
}

.section {
  padding: clamp(12px, 2vw, 24px);
  border-top: 1px solid var(--panel-border);
}

.section-head {
  margin-bottom: 18px;
}

.section-head h2 {
  margin: 6px 0 8px;
  font-size: clamp(24px, 4vw, 32px);
}

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

.features .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.feature-card {
  padding: 16px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.feature-card .icon {
  font-size: 20px;
  margin-bottom: 8px;
}

.feature-card h3 {
  margin: 0 0 6px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.step-id {
  height: 34px;
  width: 34px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  border-radius: 50%;
  color: #0b0817;
  font-weight: 800;
}

.steps-list h4 {
  margin: 0 0 4px;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.shot {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.shot img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  border: 1px solid var(--panel-border);
}

.shot figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.cta {
  margin-top: 12px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 79, 163, 0.18), rgba(255, 79, 163, 0.08));
  border: 1px solid var(--panel-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.feature-card.visible,
.steps-list li.visible,
.shot.visible,
.cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta h2 {
  margin: 0 0 4px;
}

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

.agendar .section-head {
  margin-bottom: 14px;
}

.form-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.form-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.input-group span {
  font-weight: 600;
  color: var(--text);
}

.input-group input,
.input-group select,
.input-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--panel-border);
  color: var(--text);
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: rgba(255, 79, 163, 0.6);
  box-shadow: 0 0 0 2px rgba(255, 79, 163, 0.12);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.form-actions small {
  color: var(--muted);
}

.map-section .map-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
}

.map-section iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  display: block;
  filter: grayscale(0.2);
}

.map-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  flex-wrap: wrap;
}

.map-info p {
  margin: 4px 0 0;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--panel-border);
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #2b0f24;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 12px 28px rgba(255, 79, 163, 0.25);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .actions {
    justify-content: flex-start;
  }

  .pill {
    position: static;
    margin-top: 8px;
  }
}
