/* ============================================
   NUTRIRE 360 — DESIGN SYSTEM
   Paleta fiel ao logo: oliva → dourado sobre creme
   ============================================ */

:root {
  /* Dourados (do "360" e do círculo) */
  --primary:           #C9A84C;     /* Dourado do logo */
  --primary-hover:     #B0913F;
  --primary-light:     rgba(201, 168, 76, 0.14);
  --gold-bright:       #E0C566;
  --gold-deep:         #A8852F;

  /* Verde-oliva (da palavra NUTRIRE) */
  --olive:             #7A8052;
  --olive-dark:        #565B38;
  --olive-light:       rgba(122, 128, 82, 0.10);

  /* Degradês — espelham o logo (oliva → dourado) */
  --gradient-logo:     linear-gradient(115deg, #6E7447 0%, #A8852F 48%, #E0C566 100%);
  --gradient-gold:     linear-gradient(120deg, #C9A84C 0%, #E0C566 100%);
  --gradient-olive:    linear-gradient(135deg, #565B38 0%, #7A8052 100%);
  --hairline-gold:     linear-gradient(90deg, transparent, var(--primary), transparent);

  /* Neutros */
  --dark:              #2B2E26;     /* verde-grafite quente */
  --dark-hover:        #3D413A;

  --bg-page:           #FCFAF4;     /* creme do logo (não branco puro) */
  --bg-card:           #FFFFFF;
  --bg-warm:           #F7F2E6;     /* bege claro */
  --bg-warm-darker:    #F1EADB;     /* bege seção serviços */
  --bg-footer:         #F4EFE3;

  --text:              #2B2E26;
  --text-body:         #696459;
  --text-muted:        #9C9384;
  --text-light:        #BEB8AC;
  --text-inverse:      #FFFDF7;

  --overlay-dark:      linear-gradient(120deg, rgba(33, 36, 28, 0.86) 0%, rgba(56, 56, 38, 0.74) 100%);
  --overlay-subtle:    rgba(0, 0, 0, 0.05);
  --border-soft:       rgba(86, 91, 56, 0.12);
  --border-gold:       rgba(201, 168, 76, 0.32);

  /* Tipografia */
  --font-display:      'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:         'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container-max:     1250px;
  --container-padding: 20px;
  --navbar-height:     112px;

  /* Bordas e raios */
  --radius-sm:         4px;
  --radius-md:         8px;
  --radius-lg:         16px;

  /* Sombras suaves */
  --shadow-soft:       0 2px 14px rgba(86, 91, 56, 0.06);
  --shadow-card:       0 18px 44px rgba(86, 91, 56, 0.12);
  --shadow-gold:       0 10px 28px rgba(201, 168, 76, 0.28);

  /* Transições */
  --transition:        all 0.25s ease;
  --ease-soft:         cubic-bezier(.21, .61, .35, 1);
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

::selection {
  background: var(--primary-light);
  color: var(--olive-dark);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Reveal on scroll (aplicado via JS) */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   ELEMENTOS DE SEÇÃO
   ============================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--primary);
  margin-bottom: 18px;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.8vw, 27px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--dark);
  line-height: 1.3;
}

/* Texto com degradê do logo */
.text-gradient {
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-icon {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: var(--gradient-gold);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: #fff;
  border-color: rgba(168, 133, 47, 0.25);
  box-shadow: var(--shadow-gold);
  transition: background-position 0.45s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(201, 168, 76, 0.38);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-inverse);
  border-color: rgba(255, 253, 247, 0.6);
}
.btn-outline-light:hover {
  background: rgba(255, 253, 247, 0.12);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--text-inverse);
}

.btn-outline-sm {
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 1.2px;
  background: transparent;
  color: var(--olive-dark);
  border-color: var(--border-gold);
}
.btn-outline-sm:hover {
  background: var(--olive-dark);
  color: var(--text-inverse);
  border-color: var(--olive-dark);
}

.btn-dark-sm {
  padding: 10px 18px;
  font-size: 11px;
  letter-spacing: 1.2px;
  background: var(--olive-dark);
  color: var(--text-inverse);
  border-color: var(--olive-dark);
}
.btn-dark-sm:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #fff;
}

.btn-lg {
  padding: 16px 38px;
  font-size: 13px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.navbar.scrolled {
  position: fixed;
  height: 84px;
  background: rgba(252, 250, 244, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-soft), 0 6px 22px rgba(86, 91, 56, 0.05);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

.navbar-inner {
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  margin-left: -4px;
  align-self: flex-start;
  margin-top: 44px;
}
.navbar-logo img {
  height: 200px;
  width: auto;
  transition: height 0.3s ease;
}

.navbar.scrolled .navbar-logo {
  align-self: center;
  margin-top: 0;
}
.navbar.scrolled .navbar-logo img {
  height: 64px;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-right: 0;
}

.navbar.scrolled .btn-outline-light {
  color: var(--olive-dark);
  border-color: var(--border-gold);
}
.navbar.scrolled .btn-outline-light:hover {
  background: var(--olive-dark);
  color: var(--text-inverse);
}

.navbar-menu-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  transition: var(--transition);
}
.navbar-menu-btn svg {
  width: 24px;
  height: 24px;
}
.navbar.scrolled .navbar-menu-btn {
  color: var(--dark);
}

/* Menu drawer */
.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background: var(--bg-warm);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-soft);
  box-shadow: -10px 0 50px rgba(43, 46, 38, 0.18);
}
.menu-drawer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--gradient-logo);
}
.menu-drawer.open {
  transform: translateX(0);
}

.menu-drawer-inner {
  padding: 32px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.menu-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  margin-bottom: 24px;
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.menu-links a {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  transition: color 0.2s, padding-left 0.2s;
}
.menu-links a:hover {
  color: var(--primary);
  padding-left: 8px;
}
.menu-links .menu-cta {
  margin-top: 24px;
  padding: 14px 24px;
  background: var(--gradient-gold);
  color: #fff;
  text-align: center;
  border-bottom: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: var(--shadow-gold);
}
.menu-links .menu-cta:hover {
  padding-left: 24px;
  transform: translateY(-2px);
  color: #fff;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(252, 250, 244, 0.96) 0%,
    rgba(252, 250, 244, 0.80) 42%,
    rgba(247, 242, 230, 0.22) 72%,
    rgba(247, 242, 230, 0) 100%
  );
}

/* Arco dourado decorativo — eco do "360" do logo */
.hero-arc {
  position: absolute;
  z-index: 1;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg-page), var(--bg-page)) padding-box,
    var(--gradient-logo) border-box;
  opacity: 0.5;
  pointer-events: none;
  mask: radial-gradient(circle, transparent 67%, #000 68%);
  -webkit-mask: radial-gradient(circle, transparent 67%, #000 68%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 80px var(--container-padding) 100px;
}

.hero-text {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold-deep);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 22px;
  letter-spacing: -1.2px;
}
.hero-title em {
  font-style: normal;
  font-weight: 600;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 38px;
  max-width: 470px;
}
.hero-subtitle strong {
  font-weight: 600;
  color: var(--olive-dark);
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dots .dot {
  width: 30px;
  height: 2px;
  background: rgba(86, 91, 56, 0.25);
  transition: background 0.3s;
}
.hero-dots .dot.active {
  background: var(--gradient-gold);
}

/* ============================================
   SERVIÇOS
   ============================================ */
.services {
  padding: 104px 0;
  background: var(--bg-warm-darker);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-logo);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card:hover::before {
  opacity: 1;
}

.service-card-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-image img {
  transform: scale(1.06);
}

.service-card-body {
  padding: 30px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.service-card-pillar {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card-title {
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.35;
}

.service-card-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.7;
  flex: 1;
}

.service-card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  position: relative;
  padding: 124px 0;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
}

.about-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  color: var(--text-inverse);
}

.about-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.play-button {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 1.5px solid rgba(224, 197, 102, 0.7);
  background: rgba(255, 253, 247, 0.06);
  color: var(--text-inverse);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.play-button:hover {
  background: var(--gradient-gold);
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: var(--shadow-gold);
}
.play-button svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.play-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 253, 247, 0.85);
}

.about-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold-bright);
  margin-bottom: 18px;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 26px;
  letter-spacing: -1px;
}

.about-desc {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 253, 247, 0.9);
  margin-bottom: 16px;
}
.about-desc strong {
  font-weight: 500;
  color: var(--gold-bright);
}

.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ============================================
   PLANOS TEASER
   ============================================ */
.plans-teaser {
  padding: 88px 0;
  background: var(--bg-warm);
}

.plans-card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 36px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.plans-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-logo);
}

.plans-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 300;
  letter-spacing: -0.8px;
  color: var(--dark);
  margin-bottom: 18px;
  line-height: 1.15;
}

.plans-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 34px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
  padding: 104px 0;
  background: var(--bg-page);
}

.location-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}

.location-info {
  padding: 44px 34px;
  background: var(--bg-warm);
}

.location-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.location-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.4px;
  color: var(--dark);
  margin-bottom: 26px;
  line-height: 1.25;
}

.location-address,
.location-hours,
.location-contact {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.6;
}
.location-address svg,
.location-hours svg,
.location-contact svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.location-map {
  position: relative;
  min-height: 440px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) sepia(0.12) contrast(1.04);
}

/* ============================================
   BLOG
   ============================================ */
.blog {
  padding: 104px 0;
  background: var(--bg-warm);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 30px;
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  margin-bottom: 22px;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-date {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--gold-deep);
  padding: 0 24px;
  margin-bottom: 10px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--dark);
  line-height: 1.35;
  padding: 0 24px;
  margin-bottom: 12px;
}

.blog-card-excerpt {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  padding: 0 24px;
  margin-bottom: 22px;
  flex: 1;
  line-height: 1.7;
}

.blog-card .btn {
  margin: 0 24px;
  align-self: flex-start;
}

.blog-cta {
  text-align: center;
  margin-top: 60px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: var(--bg-footer);
  padding: 68px 0 0;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--hairline-gold);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dark);
  margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 10px;
  line-height: 1.7;
}
.footer-col a:hover {
  color: var(--primary);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  margin: 0;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gradient-gold);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-copyright {
  border-top: 1px solid var(--border-soft);
  padding: 22px 0;
  background: var(--bg-footer);
}

.footer-copyright .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .hero-arc { width: 460px; height: 460px; right: -150px; opacity: 0.35; }

  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .about-eyebrow { justify-content: center; }
  .about-actions { justify-content: center; }

  .location-grid {
    grid-template-columns: 1fr;
  }
  .location-map { min-height: 320px; }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 112px;
  }

  .navbar-logo { margin-left: 6px; }
  .navbar-actions { margin-right: 6px; }
  .navbar-logo img { height: 86px; }
  .navbar.scrolled { height: 66px; }
  .navbar.scrolled .navbar-logo img { height: 56px; }

  /* On mobile, show only essential buttons */
  .navbar-actions .btn-outline-light { display: none; }
  .btn { padding: 12px 20px; font-size: 11px; }
  .btn-lg { padding: 14px 28px; font-size: 12px; }

  .hero { min-height: 90vh; }
  .hero-content { padding: 60px var(--container-padding) 80px; }
  .hero-arc { display: none; }
  .hero-bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(252, 250, 244, 0.62) 0%,
      rgba(252, 250, 244, 0.86) 50%,
      rgba(252, 250, 244, 0.96) 100%
    );
  }

  .services,
  .about,
  .location,
  .blog,
  .plans-teaser {
    padding: 66px 0;
  }

  .section-heading { margin-bottom: 44px; }

  .services-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-social { justify-content: center; }
  .footer-copyright .container {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

@media (max-width: 480px) {
  .navbar-inner {
    padding: 0 16px;
  }

  .plans-card { padding: 44px 22px; }
  .location-info { padding: 32px 24px; }
}

/* ============================================
   PRÉ-LANÇAMENTO — ADIÇÕES
   (anexado; não altera nenhum estilo acima)
   ============================================ */

/* Destaque dourado em palavras-chave (sem itálico) */
.gold-em {
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 600;
}

/* Botão extragrande para CTAs principais */
.btn-xl {
  padding: 19px 44px;
  font-size: 14px;
  letter-spacing: 2px;
}

/* Botão boleado (pill) — reutilizável */
.btn-pill {
  border-radius: 999px;
}

/* Botão boleado com degradê do logo, sem brilho/glow (navbar + CTAs) */
.btn-nav-vip,
.btn-logo-grad {
  background-image: var(--gradient-logo);
  background-origin: border-box;
  background-clip: border-box;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  color: #fff;
  border: none;
  border-radius: 999px;
  box-shadow: none;
  font-weight: 500;
}
.btn-nav-vip:hover,
.btn-logo-grad:hover {
  box-shadow: none;
  filter: brightness(1.06);
  transform: translateY(-1px);
}
.navbar.scrolled .btn-nav-vip {
  background: var(--gradient-logo);
}
/* Texto curto do botão da navbar no mobile */
.nav-vip-short { display: none; }

/* Desktop: botões um pouco maiores; cluster alinhado verticalmente com o
   logo grande (que fica mais baixo). No estado fixo (scrolled) volta ao topo. */
@media (min-width: 769px) {
  .btn-nav-vip,
  .btn-nav-outline {
    padding: 11px 20px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }
  /* fixa o cluster de botões na borda direita da janela (em telas largas o
     container central deixava uma folga à direita) */
  .navbar-actions {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(calc(-50% + 20px));
  }
  .navbar.scrolled .navbar-actions {
    transform: translateY(-50%);
  }
}
.btn-nav-vip .btn-icon { width: 14px; height: 14px; }
/* botão contornado recolhe para o menu em telas médias (evita apertar o logo) */
@media (max-width: 991px) {
  .btn-nav-outline { display: none; }
}

/* ---------- Botão contornado (estilo da referência, adaptado ao tema claro) ---------- */
.btn-nav-outline {
  background: transparent;
  color: var(--olive-dark);
  border: 1.5px solid rgba(86, 91, 56, 0.45);
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}
.btn-nav-outline:hover {
  background: var(--olive-dark);
  color: var(--text-inverse);
  border-color: var(--olive-dark);
}
.navbar.scrolled .btn-nav-outline {
  color: var(--olive-dark);
  border-color: var(--border-gold);
}

/* ---------- Ícone hambúrguer (3 riscos -> X) ---------- */
.navbar-menu-btn {
  color: var(--dark);
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-bars {
  position: relative;
  display: block;
  width: 26px;
  height: 16px;
}
.menu-bars span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}
.menu-bars span:nth-child(1) { top: 0; }
.menu-bars span:nth-child(2) { top: 7px; }
.menu-bars span:nth-child(3) { top: 14px; }
.navbar-menu-btn[aria-expanded="true"] .menu-bars span:nth-child(1) { top: 7px; transform: rotate(45deg); }
.navbar-menu-btn[aria-expanded="true"] .menu-bars span:nth-child(2) { opacity: 0; }
.navbar-menu-btn[aria-expanded="true"] .menu-bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); }

/* ---------- Mega-menu (abas da estrutura) ---------- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 26px 54px rgba(43, 46, 38, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
  z-index: 120;
}
.mega-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 38px var(--container-padding) 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 50px;
}
.mega-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.mega-col-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark);
  padding-bottom: 14px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border-soft);
}
.mega-col-title:hover { color: var(--olive-dark); }
.mega-col a:not(.mega-col-title) {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gold-deep);
  line-height: 1.3;
  transition: color 0.18s ease, padding-left 0.18s ease;
}
.mega-col a:not(.mega-col-title):hover {
  color: var(--primary);
  padding-left: 5px;
}
.mega-cta {
  margin-top: 8px;
  align-self: flex-start;
  padding: 11px 20px;
  background: var(--gradient-logo);
  color: #fff !important;
  border-radius: 999px;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
}
.mega-cta:hover { filter: brightness(1.06); padding-left: 20px !important; }

/* Overlay atrás do mega-menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 46, 38, 0.30);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 90;
}
.menu-overlay.open { opacity: 1; visibility: visible; }

/* Mega-menu responsivo */
@media (max-width: 1100px) {
  .mega-menu-inner { grid-template-columns: repeat(3, 1fr); gap: 26px 30px; }
}
@media (max-width: 768px) {
  /* IMPORTANTE: usar 'absolute' (relativo à navbar), e NÃO 'fixed' — quando a
     navbar fica .scrolled ela ganha backdrop-filter, que cria bloco de conteúdo
     para filhos 'fixed' e fazia o menu colapsar (aparecia vazio). */
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    /* altura = tela menos a navbar, para o FIM do menu não cair fora da view
       (assim dá para rolar e ver Inauguração/Lista VIP) */
    height: calc(100vh - var(--navbar-height));
    height: calc(100dvh - var(--navbar-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mega-menu-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px 24px 40px;
  }
  .btn-nav-outline { display: none; }   /* no mobile, Lista VIP fica no menu */
}

/* Bolinha dourada piscante */
.dot-blink {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.45); }
  50%      { opacity: 0.35; box-shadow: 0 0 0 6px rgba(201, 168, 76, 0); }
}

/* ---------- Fundo único (foto) cobrindo capa + Lista VIP ---------- */
.cover-wrap {
  position: relative;
  /* Imagem com o topo (parede vazia) já recortado na origem: o topo da cabeça
     do homem nasce na altura do logo, sem precisar de zoom. */
  background-image: url("../assets/equipe-capa.jpg?v=4");
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

/* ---------- Seção 1: Hero pré-lançamento ---------- */
.ph-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: calc(var(--navbar-height) + 6px) var(--container-padding) 52px;
  overflow: hidden;
}
.ph-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ph-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
}
.ph-hero-overlay {
  position: absolute;
  inset: 0;
  /* sem clareamento na base do hero: ele terminava nos 100vh e criava um
     degrau de contraste com o topo da seção VIP. A foto agora corre
     contínua entre hero e VIP; o realce do texto vem só do glow atrás
     dele (.ph-hero-content::before) e o "role para saber mais" tem
     text-shadow próprio. */
  background: none;
}
.ph-hero-arc {
  position: absolute;
  z-index: 1;
  width: 680px;
  height: 680px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid transparent;
  background:
    linear-gradient(var(--bg-page), var(--bg-page)) padding-box,
    var(--gradient-logo) border-box;
  opacity: 0.35;
  pointer-events: none;
  mask: radial-gradient(circle, transparent 68%, #000 69%);
  -webkit-mask: radial-gradient(circle, transparent 68%, #000 69%);
}
.ph-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Glow sutil ancorado no bloco de texto: fica atrás do texto (acompanha
   o texto em qualquer tela) e some antes de chegar aos rostos */
.ph-hero-content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 128%;
  height: 152%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(252, 250, 244, 0.90) 0%,
      rgba(252, 250, 244, 0.78) 38%,
      rgba(252, 250, 244, 0.40) 62%,
      rgba(252, 250, 244, 0) 80%);
  filter: blur(7px);
}
.ph-subtitle,
.ph-title {
  margin-left: auto;
  margin-right: auto;
}
.ph-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: #7a5f12;
  margin-bottom: 12px;
  text-shadow: 0 1px 2px rgba(252, 250, 244, 0.95), 0 0 10px rgba(252, 250, 244, 0.9);
}
.ph-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -1.3px;
  color: #262626;
  margin-bottom: 14px;
  /* halo creme controlado (sem lavar as letras) */
  text-shadow: 0 1px 1px rgba(252, 250, 244, 0.98), 0 1px 10px rgba(252, 250, 244, 0.9), 0 0 22px rgba(252, 250, 244, 0.7);
}
/* No hero, a ênfase é dourado SÓLIDO (não degradê recortado, que sumia sobre
   a foto) — com halo próprio, garantindo leitura nítida. */
.ph-hero .ph-title .gold-em {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #7d5e15;
  color: #7d5e15;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(252, 250, 244, 0.98), 0 1px 9px rgba(252, 250, 244, 0.85);
}
.ph-subtitle {
  font-size: clamp(13.5px, 1.7vw, 16.5px);
  font-weight: 600;
  line-height: 1.6;
  color: #33312c;
  max-width: 430px;
  margin-top: 2px;
  margin-bottom: 22px;
  text-shadow: 0 1px 1px rgba(252, 250, 244, 0.98), 0 0 10px rgba(252, 250, 244, 0.9);
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 32px);
  margin-bottom: 22px;
}
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
}
.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--dark);
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 14px rgba(252, 250, 244, 0.96), 0 1px 16px rgba(252, 250, 244, 0.9);
}
.countdown-label {
  margin-top: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--olive-dark);
  text-shadow: 0 0 8px rgba(252, 250, 244, 0.95);
}
.countdown-separator {
  width: 1px;
  height: 44px;
  background: var(--primary);
  opacity: 0.4;
}
.countdown-soon {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.5px;
  color: var(--dark);
}
.ph-cta-note {
  margin-top: 11px;
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--olive-dark);
  text-shadow: 0 0 10px rgba(252, 250, 244, 0.95), 0 1px 12px rgba(252, 250, 244, 0.9);
}

/* Indicador de scroll */
.scroll-indicator {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  /* dourado luminoso + halo escuro: escurece o fundo imediato e faz o
     dourado saltar tanto sobre o terno escuro quanto sobre o glow claro */
  color: #EED592;
  text-shadow:
    0 0 4px rgba(18, 16, 10, 0.92),
    0 0 9px rgba(18, 16, 10, 0.78),
    0 1px 2px rgba(18, 16, 10, 0.95);
}
.scroll-indicator svg {
  width: 18px;
  height: 18px;
  color: #EED592;
  filter: drop-shadow(0 0 4px rgba(18, 16, 10, 0.85));
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(5px); }
}

/* ---------- Seção 2: Manifesto ---------- */
.manifesto {
  padding: 104px 0;
  background: var(--bg-page);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.manifesto-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 56px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 18px;
  background: var(--gradient-logo);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.manifesto-item-title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--dark);
  margin-bottom: 12px;
}
.manifesto-item-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
}

/* ---------- Seção 3: Pilares ---------- */
.pillars {
  padding: 104px 0;
  background: var(--bg-warm-darker);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}
.pillar-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 42px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.pillar-card.featured {
  border-color: var(--border-gold);
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
}
.pillar-card.featured:hover {
  transform: translateY(-14px);
}
.pillar-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
}
.pillar-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--gold-deep);
  margin-bottom: 22px;
}
.pillar-card.featured .pillar-icon {
  background: var(--gradient-gold);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.pillar-icon svg {
  width: 30px;
  height: 30px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--dark);
  margin-bottom: 14px;
}
.pillar-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 22px;
  flex: 1;
}
.pillar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-deep);
}

/* ---------- Seção 4: Lista VIP ---------- */
.vip {
  position: relative;
  padding: 100px 0;
  /* sem filtro branco — a foto aparece em cheio nesta seção */
  background: transparent;
}
.vip-card {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 56px clamp(28px, 5vw, 56px);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(43, 46, 38, 0.28);
}
.vip-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-logo);
}
.vip-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.vip-eyebrow svg {
  width: 15px;
  height: 15px;
}
.vip-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 300;
  letter-spacing: -0.8px;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 36px;
}
.vip-benefits {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 30px;
  text-align: left;
  margin-bottom: 40px;
}
.vip-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.vip-benefit svg {
  width: 24px;
  height: 24px;
  padding: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  color: #fff;
  background: var(--gradient-gold);
  border-radius: 50%;
}
.vip-benefit strong {
  display: block;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}
.vip-benefit span {
  display: block;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-body);
}
.vip-note {
  margin-top: 20px;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ---------- Seção 5: Equipe ---------- */
.team {
  padding: 104px 0;
  background: var(--bg-page);
}
.team-subtitle {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-body);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 42px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-soft), box-shadow 0.3s var(--ease-soft);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.team-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--gold-deep);
  border: 1.5px solid var(--border-gold);
  margin-bottom: 20px;
}
.team-avatar svg {
  width: 36px;
  height: 36px;
}
/* Foto real do profissional (substitui o avatar de ícone) */
.team-photo {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
  background: var(--primary-light);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: var(--dark);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 5px;
}
.team-credential {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.team-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-body);
}
.team-cta {
  text-align: center;
  margin-top: 52px;
}

/* ---------- Seção 6: Em breve em Jacareí ---------- */
.coming {
  padding: 104px 0;
  background: var(--bg-warm);
}
.coming-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.coming-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--dark);
  margin: 6px 0 20px;
}
.coming-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 28px;
  max-width: 460px;
}
.coming-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.coming-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--dark);
}
.coming-meta svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}
.coming-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coming-badge-circle {
  position: relative;
  width: min(360px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}
.coming-badge-circle::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  opacity: 0.4;
  animation: pulseRing 2.6s ease-out infinite;
}
.coming-badge-circle img {
  width: 62%;
  height: auto;
}
@keyframes pulseRing {
  0%   { transform: scale(0.96); opacity: 0.5; }
  70%  { transform: scale(1.06); opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Seção 7: Call final ---------- */
.final-cta {
  padding: 110px 0;
  background: var(--dark);
}
.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.final-cta-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: var(--gold-bright);
  margin-bottom: 18px;
}
.final-cta-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 300;
  letter-spacing: -1px;
  line-height: 1.12;
  color: var(--text-inverse);
  margin-bottom: 20px;
}
.final-cta-title .gold-em {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.final-cta-subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 253, 247, 0.78);
  margin-bottom: 36px;
}

/* ---------- Footer minimalista ---------- */
.ph-footer {
  position: relative;
  background: var(--bg-footer);
  padding: 56px 0 40px;
  text-align: center;
}
.ph-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--hairline-gold);
}
.ph-footer-logo {
  height: 66px;
  width: auto;
  margin: 0 auto 18px;
}
.ph-footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 22px;
}
.ph-footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 26px;
}
.ph-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: var(--transition);
}
.ph-footer-social a:hover {
  background: var(--gradient-gold);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.ph-footer-social svg {
  width: 18px;
  height: 18px;
}
.ph-footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ---------- Responsivo pré-lançamento ---------- */
@media (max-width: 900px) {
  .manifesto-grid,
  .pillars-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .pillar-card.featured { transform: none; }
  .pillar-card.featured:hover { transform: translateY(-6px); }

  .vip-benefits { grid-template-columns: 1fr; }

  .coming-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .coming-desc { margin-left: auto; margin-right: auto; }
  .coming-meta { justify-content: center; }
  .coming-visual { order: -1; }
}

@media (max-width: 768px) {
  .manifesto,
  .pillars,
  .vip,
  .team,
  .coming,
  .final-cta {
    padding: 40px 0;   /* menos vão entre seções no mobile (sem buracos) */
  }
  .ph-hero { padding-top: calc(var(--navbar-height) + 10px); }
  .ph-hero-arc { width: 380px; height: 380px; opacity: 0.22; }
  .scroll-indicator { display: none; }

  .countdown { gap: 14px; }
  .countdown-item { min-width: 50px; }
  .countdown-number { font-size: 36px; }
  .countdown-separator { display: none; }

  /* Botão da navbar: texto curto cabe melhor */
  .nav-vip-full { display: none; }
  .nav-vip-short { display: inline; }
  .btn-nav-vip { padding: 11px 20px; }

  /* CTAs grandes não podem estourar a largura no mobile */
  .btn-xl {
    padding: 15px 22px;
    font-size: 12px;
    letter-spacing: 1px;
    max-width: 100%;
    white-space: normal;
  }
}

/* ============================================
   TELAS BAIXAS (notebooks) — capa compacta
   para o conteúdo não cobrir os rostos
   ============================================ */
@media (max-height: 840px) {
  :root { --navbar-height: 82px; }
  .navbar-logo img { height: 170px; }
  .navbar.scrolled { height: 68px; }
  .navbar.scrolled .navbar-logo img { height: 54px; }

  /* bloco de texto sobe para a altura do peito (mais destaque) e cresce */
  .ph-hero { padding-bottom: 15vh; }
  .ph-eyebrow { font-size: 13px; letter-spacing: 4px; margin-bottom: 12px; }
  .ph-title { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.06; margin-bottom: 12px; }
  .ph-subtitle { font-size: 15.5px; line-height: 1.5; margin-bottom: 14px; max-width: 470px; }
  .countdown { margin-bottom: 10px; gap: 16px; }
  .countdown-number { font-size: clamp(24px, 2.6vw, 32px); }
  .countdown-label { font-size: 9px; margin-top: 4px; }
  .ph-cta-note { margin-top: 7px; }
  .scroll-indicator { bottom: 8px; }
}

/* ============================================
   PÁGINA 2 — dois cards (Local + Lista VIP)
   ============================================ */
.vip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.vip-grid .vip-card {
  max-width: none;
  margin: 0;
  padding: 34px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.vip-title-2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 300;
  letter-spacing: -0.4px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}
.vip-grid .vip-benefits {
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 22px;
  flex: 1;
}
.vip-grid .vip-card .btn-xl {
  padding: 15px 22px;
  font-size: 12px;
  letter-spacing: 1px;
}

/* Card do local (Pátio Villa Branca) */
.local-photo {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border-soft);
}
.local-photo img { width: 100%; height: 100%; object-fit: cover; }
.local-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 10px;
}
.local-addr {
  display: flex;
  gap: 9px;
  justify-content: center;
  align-items: flex-start;
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 22px;
  flex: 1;
}
.local-addr svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.local-card .btn-pill { align-self: center; margin-top: auto; }

@media (max-width: 900px) {
  .vip-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* Mobile: logo maior, ancorado a partir do topo para não cortar */
@media (max-width: 768px) {
  .navbar-logo { align-self: flex-start; margin-top: 18px; }
  .navbar-logo img { height: 86px; }
  .navbar.scrolled .navbar-logo { align-self: center; margin-top: 0; }
  .navbar.scrolled .navbar-logo img { height: 56px; }
}

/* ============================================
   PÁGINA 2 — contador + cards menores e translúcidos
   ============================================ */
.vip-countdown {
  text-align: center;
  margin-bottom: 34px;
}
.vip-cd-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  /* dourado luminoso + halo escuro p/ ler sobre o terno escuro e a emenda */
  color: #EED592;
  margin-bottom: 14px;
  text-shadow:
    0 0 4px rgba(18, 16, 10, 0.92),
    0 0 10px rgba(18, 16, 10, 0.78),
    0 1px 2px rgba(18, 16, 10, 0.95);
}
.vip-countdown .countdown-number {
  color: var(--dark);
  text-shadow: 0 1px 12px rgba(252, 250, 244, 0.85);
}
.vip-countdown .countdown-label { color: var(--olive-dark); }

/* Cards menores (mais estreitos) e translúcidos */
.vip-grid {
  max-width: 920px;
  margin: 0 auto;
  gap: 22px;
}
.vip-grid .vip-card {
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 16px 40px rgba(43, 46, 38, 0.18);
}
.vip-title-2 {
  font-size: clamp(17px, 1.6vw, 22px);
  margin-bottom: 16px;
}
.vip-grid .vip-benefits { gap: 12px; margin-bottom: 18px; }
.vip-benefit strong { font-size: 13.5px; }
.vip-benefit span { font-size: 12.5px; line-height: 1.45; }
.vip-eyebrow { margin-bottom: 14px; }
.local-photo { margin-bottom: 14px; }
.local-name { font-size: 20px; margin-bottom: 8px; }
.local-addr { font-size: 13px; margin-bottom: 18px; }
.vip-grid .vip-card .btn-xl { padding: 13px 20px; font-size: 11.5px; }
.vip-note { font-size: 11.5px; }

/* Contador da página 2 — maior, nítido e em destaque */
.vip-countdown { margin-bottom: 40px; }
.vip-cd-label {
  color: var(--gold-deep);
  text-shadow: 0 1px 8px rgba(252, 250, 244, 0.92);
  margin-bottom: 16px;
}
.vip-countdown .countdown {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 16px clamp(20px, 3vw, 38px);
  box-shadow: 0 18px 44px rgba(43, 46, 38, 0.18);
  gap: clamp(16px, 2.6vw, 34px);
  margin-bottom: 0;
}
.vip-countdown .countdown-number {
  font-size: clamp(40px, 4.4vw, 58px);
  color: var(--dark);
  text-shadow: none;
  font-weight: 400;
}
.vip-countdown .countdown-label {
  color: var(--olive-dark);
  font-size: 10px;
  font-weight: 700;
  margin-top: 8px;
}
.vip-countdown .countdown-separator { height: 56px; opacity: 0.45; }

/* ============================================
   MOBILE — capa mostra os TRÊS profissionais
   A foto aparece em largura total no topo (sem cortar as laterais),
   faz transição suave para o creme e os textos vêm logo abaixo.
   (Colocado no fim para vencer o cascade dos demais @media.)
   ============================================ */
@media (max-width: 768px) {
  .cover-wrap {
    /* Degradê foto->creme ancorado na ALTURA DA FOTO (não na altura do hero):
       a foto some no creme sempre no mesmo ponto, então não sobra tira escura
       na emenda com a seção VIP, independente de onde o hero termina.
       Altura da foto = 100vw * (1588/1365) = 100vw * 1.1634. */
    background-image:
      linear-gradient(180deg,
        rgba(252, 250, 244, 0)    8%,
        rgba(252, 250, 244, 0.28) 30%,
        rgba(252, 250, 244, 0.68) 46%,
        rgba(252, 250, 244, 0.90) 56%,
        rgba(252, 250, 244, 0.99) 65%,
        var(--bg-page)            74%),
      url("../assets/equipe-capa-mobile.jpg?v=3");
    background-size: 100% calc(100vw * 1.1634), 100% calc(100vw * 1.1634);
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
    background-color: var(--bg-page); /* creme preenche abaixo da foto */
  }
  .ph-hero {
    justify-content: flex-start;
    /* altura só do necessário (foto + texto) — sem espaço morto embaixo */
    min-height: auto;
    /* texto sobe e sobrepõe a parte de baixo da foto (sobre os troncos) */
    padding-top: calc(100vw - 185px);
    padding-bottom: 30px;
  }
  /* o fade foto->creme agora vive no fundo do .cover-wrap (ancorado na
     altura da foto), então o overlay do hero não é mais necessário */
  .ph-hero-overlay { background: none; }
  .ph-hero-arc { display: none; }     /* o círculo não faz sentido nesse layout */
  .ph-eyebrow { margin-bottom: 10px; }
  .ph-title { font-size: clamp(26px, 7.8vw, 36px); margin-bottom: 12px; }
  .ph-subtitle { margin-bottom: 0; }

  /* navbar mobile: remove o botão dourado (CTA vai p/ baixo do cronômetro)
     e sobe o ícone de 3 riscos para não sobrepor as pessoas da foto */
  .btn-nav-vip { display: none; }
  .navbar-actions { align-self: flex-start; margin-top: 12px; }

  /* ---- Capa 2 (Lista VIP): sobe o cronômetro e os blocos, sem buracos ---- */
  .vip { padding-top: 22px; padding-bottom: 30px; }
  .vip-countdown { margin-bottom: 20px; }
  .vip-cd-label { margin-bottom: 12px; }
  .vip-grid { gap: 18px; }
  .vip-card { padding: 34px clamp(22px, 5vw, 40px); }

  /* CTA "Participe da Inauguração" logo abaixo do cronômetro (só mobile) */
  .vip-countdown .cd-cta { display: inline-flex; }

  /* demais seções um pouco mais compactas no topo/baixo */
  .team, .manifesto, .pillars, .coming { padding: 36px 0; }
}

/* Cabeçalho do bloco "Participe da Inauguração" — centralizado no topo */
.vip-eyebrow-center {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* CTA abaixo do cronômetro — só aparece no mobile (display:inline-flex lá) */
.cd-cta {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px auto 0;
  padding: 15px 26px;
  background: var(--gradient-logo);
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  box-shadow: 0 14px 32px rgba(86, 91, 56, 0.22);
}
.cd-cta .btn-icon { width: 16px; height: 16px; }
.cd-cta:hover { filter: brightness(1.06); }

/* ============================================
   POP-UP LISTA VIP (modal de captura)
   ============================================ */
.vip-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.vip-modal[hidden] { display: none; }

.vip-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 32, 24, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.vip-modal.is-open .vip-modal-overlay { opacity: 1; }

.vip-modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  background: var(--bg-page);
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(20, 22, 15, 0.45);
  border-top: 4px solid transparent;
  border-image: var(--gradient-logo) 1;
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.32s ease;
}
.vip-modal.is-open .vip-modal-card { transform: translateY(0) scale(1); opacity: 1; }

.vip-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(43, 46, 38, 0.06);
  color: var(--text-body);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
  z-index: 2;
}
.vip-modal-close:hover { background: rgba(43, 46, 38, 0.12); color: var(--text); }

.vip-modal-body,
.vip-modal-success { padding: 40px 32px 30px; }

.vip-modal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.vip-modal-title {
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.18;
  color: var(--text);
  margin-bottom: 12px;
}
.vip-modal-sub {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 22px;
}

.vip-form { display: flex; flex-direction: column; gap: 14px; }
.vip-field { display: flex; flex-direction: column; gap: 6px; }
.vip-field label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--text);
}
.vip-field input {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg-card);
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.vip-field input::placeholder { color: var(--text-light); }
.vip-field input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.vip-field input.is-invalid {
  border-color: #C0492F;
  box-shadow: 0 0 0 3px rgba(192, 73, 47, 0.12);
}

.vip-form-error {
  font-family: var(--font-body);
  font-size: 13px;
  color: #C0492F;
  margin: -2px 0 2px;
}

.vip-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  cursor: pointer;
  border: none;
}
.vip-form-submit[disabled] { opacity: 0.7; cursor: default; }
.vip-submit-label { display: inline-flex; align-items: center; gap: 8px; }

.vip-modal-note { margin-top: 12px; text-align: center; }

/* Estado de sucesso */
.vip-modal-success { text-align: center; }
.vip-success-check {
  width: 72px;
  height: 72px;
  margin: 6px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-logo);
  color: #fff;
}
.vip-success-wa { width: 100%; justify-content: center; margin-top: 8px; }
.vip-success-close {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
}
.vip-success-close:hover { color: var(--text); }

@media (max-width: 560px) {
  .vip-modal { padding: 14px; align-items: center; }
  .vip-modal-card { max-width: 400px; max-height: calc(100dvh - 28px); border-radius: 16px; }

  .vip-modal-body,
  .vip-modal-success { padding: 26px 20px 20px; }

  .vip-modal-close { top: 8px; right: 8px; width: 34px; height: 34px; }
  .vip-modal-eyebrow { font-size: 10px; letter-spacing: 1.4px; margin-bottom: 10px; }
  .vip-modal-title { font-size: 20px; line-height: 1.15; margin-bottom: 8px; }
  .vip-modal-sub { font-size: 13px; line-height: 1.45; margin-bottom: 16px; }

  .vip-form { gap: 10px; }
  .vip-field { gap: 4px; }
  .vip-field label { font-size: 11.5px; }
  .vip-field input { padding: 11px 13px; font-size: 14px; border-radius: 9px; }
  .vip-form-submit { margin-top: 4px; padding: 13px 20px; }
  .vip-modal-note { margin-top: 9px; font-size: 11px; }

  .vip-success-check { width: 60px; height: 60px; margin: 2px auto 12px; }
}
