:root {
  --bg: #ffffff;
  --ink: #0c0c0d;
  --orange: #ff5a1f;
  --orange-soft: #ff7a3d;
  --orange-deep: #d1440f;
  --grey: #5c5c62;
  --grey-soft: #8a8a90;
  --card: #f1f1f3; /* cinza claro pros cards se destacarem do fundo branco */
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  overflow-x: hidden;
  touch-action: manipulation; /* bloqueia pinch-zoom e double-tap-zoom no celular */
  -webkit-user-select: none;
  user-select: none; /* bloqueia seleção/cópia de texto */
}

img { display: block; max-width: 100%; -webkit-user-drag: none; }

/* Exceção ao bloqueio de seleção: telefone e e-mail do rodapé precisam
   ser copiáveis (agenda/discador), regra do CLAUDE.md do workspace. */
.copiavel {
  -webkit-user-select: text;
  user-select: text;
}

/* ============ INTRO ============ */
#intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--orange);
  overflow: hidden;
}

#orbs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.intro-logo {
  width: 340px;
  max-width: 60vw;
  filter: drop-shadow(0 0 60px rgba(255,90,31,0.5));
  transform: scale(0.4);
  opacity: 0;
}

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--orange);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* O logo.png é quadrado (1024x1024) mas o desenho ocupa só 746x278 no
   miolo (x 84..830, y 358..636) — 73% da altura é vazio transparente,
   e o conteúdo ainda é deslocado à esquerda. Era isso que inflava a
   nav: com height:110px a barra media 150px e a palavra "RENOFIT"
   saía com meros 29px.
   Aqui recortamos a moldura vazia (contêiner com overflow + img maior
   deslocada). A barra cai pra 82px E a palavra sobe pra ~46px — ou
   seja, o logo aparece MAIOR que antes, não menor.
   Se um dia o PNG for reexportado sem a moldura vazia, apagar os
   offsets e usar só `height` na img. */
.nav-logo {
  position: relative;
  width: 146px;
  height: 62px;
  flex: none;
  overflow: hidden;
}

.nav-logo img {
  position: absolute;
  width: 170px;
  height: 170px;
  left: -3px;
  top: -52px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.9;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--ink); }

.nav-cta {
  background: #ffffff;
  color: var(--orange-deep);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 24px;
  border-radius: 999px;
  transition: transform 0.2s, background 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(12,12,13,0.2); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 112px 32px 80px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--orange-deep);
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.6rem, 6.2vw, 5.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 1000px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
  padding-top: 0.15em;
  margin-top: -0.15em;
}

.hero-title em {
  font-style: normal;
  color: var(--grey-soft);
  text-decoration: line-through;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
}

.hero-title .accent { color: var(--orange-deep); }

.hero-sub {
  margin-top: 32px;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--grey);
  max-width: 540px;
  font-weight: 400;
}

.hero-sub em { color: var(--ink); font-style: normal; font-weight: 600; }

.hero-actions {
  margin-top: 44px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.btn-primary {
  background: var(--orange);
  color: #ffffff;
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }

.btn-ghost {
  border: 1px solid rgba(12,12,13,0.22);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-deep); transform: translateY(-2px); }

/* ============ BOTÕES: efeito líquido-metálico laranja ============
   Gradiente animado (metal em movimento) + brilho que segue o mouse
   + onda ao clicar. Tudo em CSS/JS puro, sem shader/WebGL. */
.btn-liquid {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.btn-liquid.btn-primary {
  background: linear-gradient(120deg,
    var(--orange-deep) 0%,
    var(--orange) 22%,
    var(--orange-soft) 45%,
    #ffb27a 55%,
    var(--orange-soft) 65%,
    var(--orange) 82%,
    var(--orange-deep) 100%);
  background-size: 260% 100%;
  animation: liquidShift 5s ease-in-out infinite;
}
.btn-liquid.btn-primary:hover { animation-duration: 1.8s; }

@keyframes liquidShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-liquid::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(90px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.55), transparent 65%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.btn-liquid:hover::before { opacity: 1; }

.btn-liquid.btn-ghost::before {
  background: radial-gradient(90px circle at var(--mx, 50%) var(--my, 50%), rgba(255,90,31,0.18), transparent 65%);
}

.btn-liquid span.btn-label {
  position: relative;
  z-index: 2;
}

.btn-ripple {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  left: 0;
  top: 0;
  background: rgba(255,255,255,0.55);
  transform: translate(-50%, -50%) scale(0);
  animation: btnRipple 0.6s ease-out forwards;
  pointer-events: none;
}
.btn-liquid.btn-ghost .btn-ripple {
  background: rgba(255,90,31,0.35);
}

@keyframes btnRipple {
  to { transform: translate(-50%, -50%) scale(9); opacity: 0; }
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey);
}

.scroll-hint span {
  width: 1px;
  height: 32px;
  background: var(--grey);
  position: relative;
  overflow: hidden;
}
.scroll-hint span::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* ============ MODALIDADES ============ */
@property --border-angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

.modalidades {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px;
  overflow: hidden;
}


.modalidades-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--orange-deep);
  font-weight: 700;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 780px;
  margin: 0 auto;
}

.section-title .accent { color: var(--orange-deep); }

.section-sub {
  margin-top: 22px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--grey);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.modalidades-cards {
  margin-top: 56px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
}

.mod-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 320px;
  max-width: 380px;
  gap: 20px;
}

.mod-card-cta {
  width: 100%;
}

/* card com linha de luz laranja girando em volta da borda */
.mod-card {
  position: relative;
  width: 100%;
  border-radius: 24px;
  padding: 2px;
  background: conic-gradient(
    from var(--border-angle),
    transparent 0%,
    transparent 74%,
    var(--orange-soft) 84%,
    var(--orange) 90%,
    var(--orange-soft) 96%,
    transparent 100%
  );
  animation: spinBorder 4s linear infinite;
  text-align: left;
}

@keyframes spinBorder {
  to { --border-angle: 360deg; }
}

.mod-card-inner {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 20px 40px rgba(12,12,13,0.06);
}

.mod-card-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.mod-card-inner h3,
.mod-card-inner p {
  padding-left: 32px;
  padding-right: 32px;
}

.mod-card-inner h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.mod-card-inner p {
  padding-bottom: 32px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--grey);
}

/* ============ SOBRE ============ */
.sobre {
  padding: 100px 32px;
}

.sobre-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.sobre-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(12,12,13,0.12);
}

.sobre-content {
  text-align: left;
}

.sobre-content .section-eyebrow { margin-bottom: 16px; }

.sobre-title {
  text-align: left;
  margin: 0;
  max-width: none;
}

.sobre-text {
  margin-top: 22px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--grey);
  max-width: 480px;
}

.sobre-content .btn {
  margin-top: 32px;
}

/* ============ PLANOS ============ */
.planos {
  position: relative;
  padding: 120px 32px;
}

.planos-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.planos-cards {
  margin-top: 56px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  justify-content: center;
}

.plan-card {
  position: relative;
  flex: 1 1 300px;
  max-width: 360px;
  border-radius: 24px;
  padding: 2px;
  background: conic-gradient(
    from var(--border-angle),
    transparent 0%,
    transparent 74%,
    var(--orange-soft) 84%,
    var(--orange) 90%,
    var(--orange-soft) 96%,
    transparent 100%
  );
  animation: spinBorder 4s linear infinite;
  text-align: left;
}

.plan-card-featured {
  transform: scale(1.04);
  z-index: 1;
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  z-index: 2;
  white-space: nowrap;
}

.plan-card-inner {
  background: var(--card);
  border-radius: 22px;
  height: 100%;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(12,12,13,0.06);
}

.plan-card-inner h3 {
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.plan-duration {
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 600;
}

.plan-price {
  margin-top: 16px;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange-deep);
}

.plan-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey);
}

.plan-includes {
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.plan-includes li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: var(--ink);
}

.plan-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 60% no-repeat;
}

.plan-tagline {
  margin-top: 20px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--grey);
  flex-grow: 1;
}

.plan-card-cta {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

.planos-extra {
  margin-top: 64px;
}

.planos-extra-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
}

.planos-extra-list {
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 36px;
}

.planos-extra-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.planos-extra-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 60% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 60% no-repeat;
}

/* ============ LINHA DECORATIVA (desenhada no scroll) ============ */
.sections-wrap {
  position: relative;
}

.scroll-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}

.scroll-line path {
  stroke: var(--orange);
  stroke-width: 2;
  opacity: 0.35;
}

/* as seções ficam acima da linha (ela é só decorativa, fica atrás) */
.sections-wrap > section {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .scroll-line path { stroke-width: 1.5; opacity: 0.28; }
}

/* ============ RODAPÉ ============ */
.rodape {
  background: var(--ink);
  color: #ffffff;
  padding: 72px 32px calc(28px + env(safe-area-inset-bottom));
}

.rodape-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr 1fr 1.1fr;
  gap: 40px;
}

.rodape-logo {
  height: 56px;
  width: auto;
  border-radius: 12px;
}

.rodape-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  max-width: 240px;
  line-height: 1.5;
}

.rodape-titulo {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-soft);
  margin-bottom: 16px;
}

.rodape-col {
  display: flex;
  flex-direction: column;
}

.rodape-col a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.rodape-col a:hover { color: var(--orange-soft); }

.rodape-horarios {
  list-style: none;
}

.rodape-horarios li {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.7;
}

.rodape-horarios span {
  color: rgba(255,255,255,0.45);
  display: inline-block;
  min-width: 74px;
}

.rodape-base {
  max-width: 1240px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
}

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

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner { padding: 8px 20px; }
  .nav-logo { width: 124px; height: 54px; }
  .nav-logo img { width: 145px; height: 145px; left: -3px; top: -43px; }
  .hero { padding: 96px 20px 60px; }
  /* desce o "role" pro rodapé da hero sem mexer na altura da seção
     (é absolute, então não empurra nada) */
  .scroll-hint { bottom: 10px; left: 20px; }
  .hero-actions { flex-wrap: nowrap; gap: 10px; }
  .hero-actions .btn { flex: 1 1 0; padding: 14px 10px; font-size: 0.78rem; white-space: nowrap; }

  .modalidades { padding: 80px 20px; min-height: auto; }
  .modalidades-cards { gap: 16px; }
  .mod-column { flex: 1 1 0; max-width: none; gap: 14px; }
  .mod-card-photo { height: 160px; }
  .mod-card-inner h3, .mod-card-inner p { padding-left: 18px; padding-right: 18px; }
  .mod-card-inner h3 { font-size: 1.1rem; margin-top: 18px; }
  .mod-card-inner p { font-size: 0.85rem; padding-bottom: 18px; }
  .mod-card-cta { padding: 12px 14px; font-size: 0.78rem; text-align: center; }

  .planos { padding: 80px 20px; }
  .planos-cards { flex-direction: column; align-items: center; gap: 40px; }
  .plan-card { max-width: 360px; width: 100%; }
  .plan-card-featured { transform: none; }
  .planos-extra-list { flex-direction: column; align-items: flex-start; gap: 12px; }

  .sobre { padding: 70px 20px; }
  .sobre-inner { grid-template-columns: 1fr; gap: 32px; }
  .sobre-content, .sobre-title { text-align: center; }
  .sobre-text { max-width: none; margin-left: auto; margin-right: auto; }

  .rodape { padding: 56px 20px calc(24px + env(safe-area-inset-bottom)); }
  .rodape-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand brand"
      "links contato"
      "horarios horarios"
      "endereco endereco";
    gap: 32px 16px;
    text-align: center;
  }
  .rodape-brand { grid-area: brand; text-align: center; }
  .rodape-brand p { margin-left: auto; margin-right: auto; }
  .rodape-col-links { grid-area: links; align-items: center; }
  .rodape-col-contato { grid-area: contato; align-items: center; }
  .rodape-col-horarios { grid-area: horarios; align-items: center; }
  .rodape-col-endereco { grid-area: endereco; text-align: center; }
  .rodape-horarios span { min-width: 88px; text-align: left; }
  .rodape-base { flex-direction: column; text-align: center; }
}
