/* =====================================================
   DRY GLEAM — Landing Page
   Paleta: laranja vibrante (#FF6A1A) | preto profundo | branco
   ===================================================== */

:root {
  --orange: #FF6A1A;
  --orange-deep: #E85A0F;
  --orange-soft: #FFE4D2;
  --black: #0E0E10;
  --black-soft: #1A1A1F;
  --gray-900: #1F1F25;
  --gray-700: #4A4A55;
  --gray-500: #8A8A95;
  --gray-300: #D4D4DA;
  --gray-100: #F4F4F6;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 12px rgba(14, 14, 16, 0.08);
  --shadow-md: 0 10px 30px rgba(14, 14, 16, 0.10);
  --shadow-lg: 0 24px 60px rgba(14, 14, 16, 0.18);
  --shadow-orange: 0 12px 36px rgba(255, 106, 26, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --container: 1200px;
  --transition: 250ms cubic-bezier(.2,.8,.2,1);
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --logo-mark: url('assets/logo-mark.svg');
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.01em;
}
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.highlight { color: var(--orange); }
.highlight-on-dark { color: var(--orange); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-xl { padding: 20px 38px; font-size: 18px; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 106, 26, 0.45);
}
.btn-ghost {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-ghost:hover { background: var(--black); color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--black);
}
.btn-light:hover { background: var(--orange); color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ============ TAGS / SECTION HEAD ============ */
.section { padding: 100px 0; position: relative; }
.section-tag {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-tag.light {
  background: rgba(255,255,255,0.12);
  color: var(--orange);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 16px; }
.section-head p { color: var(--gray-700); font-size: 17px; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.site-header.scrolled {
  border-bottom-color: var(--gray-300);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.logo {
  display: inline-flex; align-items: center;
}
.logo-img {
  display: block;
  height: 48px;
  width: auto;
}
.logo-footer .logo-img {
  height: 56px;
}

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-900);
  position: relative;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--transition);
}
.main-nav a:hover::after { width: 100%; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.menu-toggle span {
  display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px;
  transition: all var(--transition);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(255,106,26,0.10), transparent 50%),
    radial-gradient(circle at 5% 85%, rgba(255,106,26,0.06), transparent 40%),
    var(--white);
}
.hero-bg {
  position: absolute;
  top: 0; right: -10%;
  width: 60%; height: 100%;
  background:
    linear-gradient(135deg, transparent 60%, rgba(255,106,26,0.08) 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,26,0.25);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(255,106,26,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(255,106,26,0.05); }
}
.hero-copy h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  line-height: 1.05;
  margin-bottom: 22px;
}
.lead {
  font-size: clamp(16px, 1.5vw, 18px);
  color: var(--gray-700);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.hero-badges li {
  display: flex; flex-direction: column;
  padding: 18px 16px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.hero-badges li:hover {
  transform: translateY(-3px);
  border-color: var(--orange-soft);
  box-shadow: var(--shadow-md);
}
.hero-badges strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  color: var(--orange);
  line-height: 1;
}
.hero-badges span {
  font-size: 12.5px;
  color: var(--gray-700);
  margin-top: 6px;
  line-height: 1.35;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 520px;
}
.hero-card {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--gray-900);
}
.hero-card-img {
  width: 100%; height: 100%;
  background:
    linear-gradient(160deg, rgba(255,106,26,0.28) 0%, transparent 45%),
    linear-gradient(0deg, rgba(14,14,16,0.55) 0%, transparent 40%),
    url('assets/lavagem-hero.jpeg') center / cover no-repeat,
    var(--gray-900);
  position: relative;
}
.hero-card-tag {
  position: absolute;
  top: 24px; right: 24px;
  padding: 8px 14px;
  background: rgba(14,14,16,0.7);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-card-tag .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.25);
  animation: pulse-green 1.8s infinite;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.25); }
  50% { box-shadow: 0 0 0 8px rgba(46, 204, 113, 0.05); }
}
.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  font-size: 13px;
  color: var(--gray-900);
  animation: float 4s ease-in-out infinite;
}
.hero-float .float-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--orange-soft);
  color: var(--orange-deep);
  border-radius: 10px;
  display: grid; place-items: center;
}
.hero-float .float-icon svg { width: 22px; height: 22px; }
.hero-float strong { color: var(--black); }
.hero-float-1 { top: 30px; left: -30px; }
.hero-float-2 { bottom: 30px; right: -20px; animation-delay: 1.2s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--black);
  padding: 24px 0;
  color: var(--white);
}
.trust-inner {
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 20px;
}
.trust-item {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }

/* ============ SOBRE ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-media {
  position: relative;
  height: 540px;
}
.about-img {
  position: absolute;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background-size: cover;
  background-position: center;
}
.about-img-1 {
  top: 0; left: 0;
  width: 65%; height: 70%;
  background:
    linear-gradient(160deg, rgba(255,106,26,0.22) 0%, transparent 45%),
    linear-gradient(0deg, rgba(14,14,16,0.5) 0%, transparent 40%),
    url('assets/lavagem-hero.jpeg') center / cover no-repeat,
    var(--gray-900);
}
.about-img-2 {
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  background:
    radial-gradient(circle at 70% 70%, rgba(255,106,26,0.35), transparent 60%),
    linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  border: 6px solid var(--white);
}
.about-stat {
  position: absolute;
  bottom: 30px; left: -10px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-orange);
  z-index: 2;
}
.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  line-height: 1;
}
.about-stat span {
  font-size: 13px;
  opacity: 0.95;
  font-weight: 500;
}

.about-copy h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 20px;
}
.about-copy p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: 16px;
}
.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.about-list li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  color: var(--gray-900);
  font-size: 14px;
}
.about-list span {
  width: 24px; height: 24px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

/* ============ SERVIÇOS ============ */
.services { background: var(--gray-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 34px 28px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-soft);
}
.service-card-featured {
  background: var(--black);
  color: var(--white);
}
.service-card-featured h3 { color: var(--white); }
.service-card-featured p { color: var(--gray-300); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  border-radius: var(--radius-md);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-card-featured .service-icon {
  background: rgba(255,106,26,0.15);
  color: var(--orange);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 20px; margin-bottom: 10px; }
.service-card p { color: var(--gray-700); font-size: 15px; }
.service-card-featured p { color: var(--gray-300); }
.card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
}

/* ============ MENSALISTAS ============ */
.mensalistas {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,106,26,0.18), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,106,26,0.08), transparent 50%),
    linear-gradient(135deg, #161620 0%, #0E0E10 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.mensalistas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.mensalistas-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mensalistas-copy h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 20px;
}
.lead-light {
  font-size: 17px;
  color: var(--gray-300);
  margin-bottom: 36px;
  max-width: 540px;
}
.lead-light strong { color: var(--white); }
.mensalistas-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
}
.mensalistas-perks li {
  display: flex; gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}
.mensalistas-perks li:hover {
  background: rgba(255,106,26,0.08);
  border-color: rgba(255,106,26,0.3);
}
.perk-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(255,106,26,0.15);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
}
.perk-icon svg { width: 24px; height: 24px; }
.mensalistas-perks strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 4px;
}
.mensalistas-perks p {
  font-size: 13px;
  color: var(--gray-300);
  line-height: 1.5;
}
.mensalistas-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.mensalistas-note {
  font-size: 13px;
  color: var(--gray-500);
}
.mensalistas-note strong { color: var(--orange); }

/* Plan cards visual */
.mensalistas-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.plan-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  transition: all var(--transition);
  position: relative;
}
.plan-card:hover {
  border-color: var(--orange);
  transform: translateX(-6px);
}
.plan-card-2 {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.04);
  z-index: 2;
  box-shadow: var(--shadow-orange);
}
.plan-card-2:hover { transform: scale(1.04) translateX(-6px); }
.plan-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255,106,26,0.15);
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  margin-bottom: 12px;
}
.plan-card-2 .plan-tag {
  background: var(--white);
  color: var(--orange-deep);
}
.plan-tag-pop { background: var(--white); color: var(--orange-deep); }
.plan-card h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 14px;
}
.plan-card-2 h4 { color: var(--white); }
.plan-card ul { display: grid; gap: 8px; margin-bottom: 16px; }
.plan-card li {
  font-size: 13.5px;
  color: var(--gray-300);
  display: flex; align-items: center; gap: 8px;
}
.plan-card li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 800;
}
.plan-card-2 li { color: rgba(255,255,255,0.95); }
.plan-card-2 li::before { color: var(--white); }
.plan-price {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  width: 100%;
}
.plan-card-2 .plan-price { color: var(--white); border-top-color: rgba(255,255,255,0.25); }

/* ============ DIFERENCIAIS ============ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.diff-card {
  padding: 36px 28px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
}
.diff-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.diff-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 38px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.diff-card h3 { font-size: 20px; margin-bottom: 10px; }
.diff-card p { color: var(--gray-700); font-size: 15px; }

/* ============ GALERIA ============ */
.gallery { background: var(--gray-100); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--black);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gallery-img {
  width: 100%; height: 100%;
  position: relative;
  transition: transform 600ms cubic-bezier(.2,.8,.2,1);
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-img-1 {
  background-image:
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85) 100%),
    url('assets/higienizacao-completa.jpeg');
  background-size: cover;
  background-position: center;
}
.gallery-img-2 {
  background-image:
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85) 100%),
    url('assets/pos-viagem-areia.jpeg');
  background-size: cover;
  background-position: center;
}
.gallery-img-3 {
  background-image:
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85) 100%),
    url('assets/interior-cuidado.jpeg');
  background-size: cover;
  background-position: center;
}
.gallery-img-4 {
  background-image:
    linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.85) 100%),
    url('assets/carro-pos-praia.jpeg');
  background-size: cover;
  background-position: center;
}
.gallery-item figcaption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  z-index: 2;
}

/* ============ DEPOIMENTOS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
}
.testimonial:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-featured {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.stars {
  color: var(--orange);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-featured .stars { color: var(--white); }
.testimonial p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial-featured p { color: var(--white); }
.testimonial footer { display: flex; flex-direction: column; }
.testimonial strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--black);
  font-size: 15px;
}
.testimonial span { font-size: 13px; color: var(--gray-500); }
.testimonial-featured strong, .testimonial-featured span { color: var(--white); }
.testimonial-featured span { opacity: 0.85; }

/* ============ CTA FINAL ============ */
.cta-final {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,106,26,0.25), transparent 60%),
    var(--black);
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}
.cta-inner h2 {
  color: var(--white);
  font-size: clamp(28px, 4vw, 44px);
  max-width: 720px;
  margin: 0 auto 20px;
}
.cta-inner p {
  color: var(--gray-300);
  font-size: 17px;
  max-width: 540px;
  margin: 0 auto 40px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--black);
  color: var(--gray-300);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-300);
  max-width: 280px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
}
.footer-col li span { color: var(--orange); flex-shrink: 0; }
.footer-ico { display: inline-flex; }
.footer-ico svg { width: 18px; height: 18px; }
.note-mark { color: var(--orange); font-weight: 800; }
.footer-col li strong { color: var(--white); margin-left: auto; }
.footer-col a:hover { color: var(--orange); }
.footer-col p { font-size: 14px; margin-bottom: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px;
  color: var(--gray-500);
}
.footer-credit a {
  color: var(--orange);
  font-weight: 600;
}
.footer-credit a:hover { color: var(--white); }

/* ============ FLOATING WHATSAPP ============ */
.floating-whats {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 60px; height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: all var(--transition);
  animation: pulse-whats 2.4s infinite;
}
.floating-whats:hover {
  transform: scale(1.1);
  background: #1eb955;
}
@keyframes pulse-whats {
  0%,100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
}

/* ============ REVEAL ANIMATION ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .header-cta { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 400px; max-width: 500px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-media { height: 440px; max-width: 500px; margin: 0 auto; width: 100%; }
  .mensalistas-inner { grid-template-columns: 1fr; gap: 50px; }
  .services-grid, .diff-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .hero { padding: 130px 0 70px; }
  .logo-img { height: 40px; }
  .logo-footer .logo-img { height: 48px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px;
    border-bottom: 1px solid var(--gray-300);
    box-shadow: var(--shadow-md);
  }
  .main-nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .main-nav.open a:last-child { border-bottom: none; }
  .hero-copy h1 { font-size: 34px; }
  .hero-badges { gap: 24px; }
  .hero-badges strong { font-size: 24px; }
  .hero-float-1, .hero-float-2 { display: none; }
  .hero-visual { height: 300px; }
  .about-list { grid-template-columns: 1fr; }
  .about-media { height: 360px; }
  .services-grid, .diff-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery-item { aspect-ratio: 4/5; }
  .gallery-item figcaption { font-size: 12px; bottom: 12px; left: 12px; right: 12px; }
  .mensalistas-perks { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .plan-card-2 { transform: scale(1); }
  .plan-card-2:hover { transform: translateX(-6px); }
  .floating-whats { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .footer-bottom { padding-bottom: 84px; }
  .footer-bottom-inner { gap: 8px; }
  .btn-lg, .btn-xl { width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .mensalistas-ctas .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section-head h2 { font-size: 26px; }
  .trust-inner { gap: 14px; justify-content: flex-start; }
  .trust-item { font-size: 13px; }
}
