
:root {
  --bg: #f8f5f2;
  --bg-soft: #fdfaf8;
  --text: #3b2c2c;
  --text-soft: #7b6a6a;
  --accent: #c7a06a;
  --accent-soft: #e4cda3;
  --border-soft: rgba(199, 160, 106, 0.25);
  --radius-lg: 32px;
  --radius-md: 20px;
  --shadow-soft: 0 18px 45px rgba(0,0,0,0.08);
  --max-width: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #ffffff 0%, #f8f5f2 45%, #f3eee7 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(248,245,242,0.96), rgba(248,245,242,0.75));
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0%, #fdf7ef, #e4ccaa 40%, #c7a06a 75%, #a0753c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(166, 119, 62, 0.3);
  overflow: hidden;
}

.nav-logo-mark img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.18));
}

.nav-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 0.95rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text);
}

.nav-sub {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), #f0d4a8);
  transition: width 0.22s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-whats {
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2b251b;
  background: radial-gradient(circle at top left, #fff7ea, #e8cca1, #c89c5b);
  box-shadow: 0 12px 30px rgba(169, 122, 61, 0.35);
  cursor: pointer;
  transition: transform 0.16s ease-out, box-shadow 0.16s ease-out;
  white-space: nowrap;
}

.btn-whats:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(169, 122, 61, 0.4);
}

.btn-whats span.icon {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(43,37,27,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

main {
  flex: 1;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.7fr);
  gap: 3rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3.5rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.65rem;
}

.hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2.3rem, 3vw + 1.5rem, 3rem);
  line-height: 1.08;
  margin-bottom: 1.3rem;
  color: #2f2621;
}

.hero-title span {
  color: var(--accent);
  font-weight: 600;
}

.hero-text {
  font-size: 0.95rem;
  color: var(--text-soft);
  max-width: 30rem;
  line-height: 1.7;
  margin-bottom: 1.7rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.7rem;
}

.badge {
  font-size: 0.72rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(199,160,106,0.35);
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(8px);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  align-items: center;
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-note strong {
  color: var(--accent);
  font-weight: 600;
}

.hero-image-wrapper {
  position: relative;
  isolation: isolate;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: radial-gradient(circle at top left, #fbf5ef, #f1e4d4 40%, #dfc3a1 100%);
  padding: 0.75rem;
}

.hero-card-inner {
  border-radius: calc(var(--radius-lg) - 6px);
  overflow: hidden;
  background: #f6f2ee;
}

.hero-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  right: 6%;
  bottom: -9%;
  width: 190px;
  border-radius: 24px;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
  display: grid;
  gap: 0.1rem;
}

.hero-floating-title {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-floating-main {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 0.98rem;
  color: #2f2621;
}

.hero-floating-sub {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-floating-pill {
  margin-top: 0.35rem;
  font-size: 0.74rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(231, 204, 166, 0.32);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
  color: #2f2621;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-soft);
  max-width: 36rem;
  line-height: 1.7;
  margin-bottom: 1.7rem;
}

/* Sobre */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 3rem;
  align-items: start;
}

.about-text p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-highlight {
  font-weight: 600;
  color: var(--accent);
}

.about-list {
  list-style: none;
  margin-top: 0.75rem;
  display: grid;
  gap: 0.35rem;
}

.about-list li {
  font-size: 0.87rem;
  color: var(--text-soft);
}

.about-list li::before {
  content: "•";
  color: var(--accent);
  margin-right: 0.4rem;
}

.about-photo-card {
  position: relative;
}

.about-photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.8);
}

.about-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-frame {
  position: absolute;
  inset: 10% -6% auto auto;
  border-radius: calc(var(--radius-lg) - 10px);
  border: 1px solid rgba(199,160,106,0.5);
  opacity: 0.7;
  pointer-events: none;
}

.about-chip {
  position: absolute;
  left: -4%;
  bottom: 7%;
  background: rgba(255,255,255,0.96);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.14);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

/* Procedimentos */
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.card {
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(250,244,236,0.96));
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
  border: 1px solid var(--border-soft);
}

.card h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: #2f2621;
}

.card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 0.7rem;
  line-height: 1.7;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 0.28rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.card ul li::before {
  content: "⟡";
  color: var(--accent);
  margin-right: 0.4rem;
  font-size: 0.8rem;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

/* Etapas */
.steps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.steps-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.step-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #2f2621;
  background: rgba(231, 204, 166, 0.8);
}

.step-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.step-text {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.steps-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 1rem;
}

.steps-note strong {
  color: var(--accent);
}

.steps-side {
  border-radius: var(--radius-md);
  padding: 1.3rem 1.4rem;
  background: radial-gradient(circle at top left, #fffdf9, #f1e4d5);
  border: 1px solid rgba(199,160,106,0.4);
  box-shadow: 0 15px 38px rgba(0,0,0,0.08);
}

.steps-side h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.steps-side p {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 0.65rem;
}

.steps-side ul {
  list-style: none;
  display: grid;
  gap: 0.35rem;
  font-size: 0.84rem;
}

.steps-side ul li::before {
  content: "✔";
  color: var(--accent);
  margin-right: 0.35rem;
  font-size: 0.76rem;
}

/* Resultados reais (Instagram) */
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 1.2rem;
}

.result-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  box-shadow: 0 15px 38px rgba(0,0,0,0.16);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, translate 0.18s ease-out;
}

.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.3s ease-out;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.2);
}

.result-card:hover img {
  transform: scale(1.05);
}

.result-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 45%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.9rem 1rem;
  color: #fdfaf7;
}

.result-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

.result-title {
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 0.2rem;
}

.result-meta {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  opacity: 0.85;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.insta-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff6b81;
}

/* CTA final */
.cta {
  text-align: center;
  padding-bottom: 4rem;
}

.cta h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.7rem;
  margin-bottom: 0.6rem;
  color: #2f2621;
}

.cta p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
}

.cta small {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

footer {
  border-top: 1px solid rgba(255,255,255,0.7);
  background: rgba(250,246,240,0.96);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  object-fit: cover;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 960px) {
  .hero,
  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    gap: 2.4rem;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-floating-card {
    right: 7%;
    bottom: -11%;
    width: 60%;
  }

  .about-photo-frame {
    inset: 12% -4% auto auto;
  }

  .section {
    padding: 2.8rem 1.25rem;
  }

  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .procedures-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 2.1rem;
  }

  .hero-floating-card {
    position: relative;
    inset: auto;
    margin-top: 0.9rem;
    width: 100%;
  }

  .about-photo-frame {
    display: none;
  }

  .about-chip {
    left: 4%;
  }

  .results-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


.about-photo-card .about-result-card {
  display: block;
  height: 100%;
}

.about-photo-card .about-result-card img {
  min-height: 260px;
}


/* Hero photo - moldura geométrica premium */
.hero-card {
  position: relative;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -6% -10% 10% 6%;
  border-radius: 40px;
  background: linear-gradient(135deg, #f8eee4, #ebd2b0);
  box-shadow: 0 24px 55px rgba(0,0,0,0.18);
  z-index: 0;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 4% 4% -2% 14%;
  border-radius: 38px;
  border: 1.5px solid rgba(255,255,255,0.85);
  opacity: 0.9;
  z-index: 1;
}

.hero-card-inner {
  position: relative;
  margin: 1.2rem 1.2rem 2.1rem 2.4rem;
  border-radius: 36px;
  overflow: hidden;
  background: #fdf8f3;
  box-shadow: 0 14px 40px rgba(0,0,0,0.14);
  z-index: 2;
}

.hero-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero-card::before {
    inset: -4% -2% 8% 2%;
  }

  .hero-card::after {
    inset: 6% 6% -2% 10%;
  }

  .hero-card-inner {
    margin: 1rem 1rem 1.8rem 1.6rem;
  }
}



/* Logo central entre cards de procedimentos */
.procedures-logo-center {
  display: flex;
  justify-content: center;
  margin-top: -3.2rem;
  margin-bottom: 1.8rem;
  pointer-events: none;
}

.procedures-logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.9), rgba(0,0,0,0.35));
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.procedures-logo-circle img {
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: saturate(1.05);
}

@media (max-width: 768px) {
  .procedures-logo-center {
    margin-top: -2.4rem;
    margin-bottom: 1.5rem;
  }

  .procedures-logo-circle {
    width: 100px;
    height: 100px;
  }
}



/* Refinando logo central - círculo pérola premium */
.procedures-logo-circle {
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 18%, #ffffff 0%, #f7f1ea 40%, #efe0d0 100%);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.procedures-logo-circle img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: none;
}

@media (max-width: 768px) {
  .procedures-logo-circle {
    width: 110px;
    height: 110px;
  }
}

/* Moldura premium dupla da foto principal */
.hero-image-wrapper {
  position: relative;
  isolation: isolate;
}

.hero-card {
  position: relative;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  isolation: isolate;
  z-index: 1;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -8% -6% 10% 4%;
  border-radius: 40px;
  background: linear-gradient(145deg, #f4e4d3, #e1c19d);
  box-shadow: 0 26px 65px rgba(0,0,0,0.18);
  z-index: 0;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 6% 8% -4% 10%;
  border-radius: 34px;
  background: radial-gradient(circle at top, #fdf7f1, #f3e4d7);
  box-shadow: 0 18px 40px rgba(0,0,0,0.16);
  z-index: 1;
}

.hero-card-inner {
  position: relative;
  margin: 1.6rem 1.8rem 2.4rem 2.3rem;
  border-radius: 30px;
  overflow: hidden;
  background: #fdf9f4;
  box-shadow: 0 18px 40px rgba(0,0,0,0.14);
  z-index: 2;
}

.hero-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Garantir que o card flutuante fique sempre por cima */
.hero-floating-card {
  z-index: 4;
}

/* Ajustes responsivos */
@media (max-width: 900px) {
  .hero-card::before {
    inset: -4% -2% 10% 2%;
    border-radius: 32px;
  }

  .hero-card::after {
    inset: 6% 6% -4% 8%;
    border-radius: 28px;
  }

  .hero-card-inner {
    margin: 1.1rem 1.2rem 2rem 1.8rem;
    border-radius: 24px;
  }
}



/* === Ajuste final hero - moldura geométrica minimalista === */
.hero-card {
  position: relative;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.hero-card-inner {
  position: relative;
  margin: 0;
  border-radius: 40px 10px 36px 10px;
  overflow: hidden;
  background: #fdf9f4;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.hero-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Moldura minimalista atrás da foto */
.hero-card::before {
  content: "";
  position: absolute;
  inset: 10px -10px -18px 22px;
  border-radius: 42px 14px 40px 14px;
  border: 1px solid #f7f4ef; /* cor 2 - pérola bem clara */
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
  z-index: -1;
}

/* Garantir que o card flutuante de texto fica sempre na frente */
.hero-floating-card {
  z-index: 3;
}

/* Responsivo - suaviza o offset para telas menores */
@media (max-width: 900px) {
  .hero-card-inner {
    border-radius: 32px 10px 30px 10px;
  }

  .hero-card::before {
    inset: 8px -4px -14px 16px;
    border-radius: 34px 12px 30px 12px;
  }
}

/* === Ajuste final da logo central com efeito vidro === */
.procedures-logo-center {
  display: flex;
  justify-content: center;
  margin-top: -3rem;
  margin-bottom: 1.8rem;
  pointer-events: none;
}

.procedures-logo-circle {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.92), rgba(247,244,238,0.8) 55%, rgba(240,233,222,0.6) 100%);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.14),
    0 0 0 1px rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.procedures-logo-circle img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .procedures-logo-center {
    margin-top: -2.2rem;
  }
  .procedures-logo-circle {
    width: 105px;
    height: 105px;
  }
}


/* Carousel minimalista */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-carousel img.active {
  opacity: 1;
}

/* Logo vidro mais transparente com degrade */
.procedures-logo-circle {
  background: radial-gradient(circle at 25% 20%, rgba(255,255,255,0.75), rgba(247,244,238,0.55) 60%, rgba(235,230,220,0.42) 100%);
  backdrop-filter: blur(18px);
}


/* Altura do carrossel da hero (mantém proporção 3:4) */
.hero-card-inner {
  aspect-ratio: 3 / 4;
}


/* Controles minimalistas do carrossel */
.hero-carousel-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 5;
}

.hero-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.05);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hero-carousel-dot.is-active {
  background: rgba(255,255,255,0.95);
  border-color: rgba(199,160,106,0.9);
  transform: scale(1.2);
}

/* Logo premium com vidro + brilho + leve dourado */
.procedures-logo-circle {
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, 
      rgba(255,255,255,0.92) 0%, 
      rgba(250,247,240,0.70) 40%, 
      rgba(230,215,190,0.55) 85%, 
      rgba(215,185,140,0.45) 100%);
  backdrop-filter: blur(18px);
  box-shadow:
     0 22px 55px rgba(0,0,0,0.22),
     inset 0 0 22px rgba(255,255,255,0.55),
     inset 0 0 8px rgba(255,255,255,0.75);
  position: relative;
  overflow: hidden;
}

/* Reflexo superior */
.procedures-logo-circle::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 55%;
  background: linear-gradient(to bottom, 
     rgba(255,255,255,0.85),
     rgba(255,255,255,0.25),
     rgba(255,255,255,0)
  );
  border-radius: 999px;
  pointer-events: none;
  mix-blend-mode: screen;
}


/* Resultados reais - hover premium e alinhamento */
.result-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #050505;
  box-shadow: 0 16px 38px rgba(0,0,0,0.22);
  transform: translateY(0) scale(1);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.result-card img {
  transition: transform 0.35s ease;
}

.result-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 22px 55px rgba(0,0,0,0.26);
}

.result-card:hover img {
  transform: scale(1.04);
}

.result-overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Evita animações exageradas em telas touch */
@media (pointer: coarse) {
  .result-card,
  .result-card:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  }
  .result-card img,
  .result-card:hover img {
    transform: none;
  }
}



/* Animações suaves ao rolar a página */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Respeita usuários com redução de movimento */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}



/* Logo monograma topo - selo moderno */
.nav-logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffffff 0%, #f9f1e6 55%, #e3c7a1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 26px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.85);
  overflow: hidden;
}

.nav-logo-mark img {
  width: 66%;
  height: 66%;
  object-fit: contain;
}

/* Ícones minimalistas na navegação */
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a .nav-icon {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Ajuste do botão WhatsApp no topo */
.btn-whats .icon {
  margin-right: 0.45rem;
  font-size: 0.95rem;
}

/* Footer com ícones */
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a .nav-icon {
  font-size: 0.9rem;
}

/* Logo pequena no rodapé */
.footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  object-fit: contain;
  background: radial-gradient(circle at 30% 20%, #ffffff 0%, #f9f1e6 55%, #e3c7a1 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,0.14);
}



/* Ícones vetorizados (imagens) no menu */
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.40rem;
}

.nav-icon-img {
  width: 18px;
  height: 18px;
  display: block;
}

/* Ícone "seta para cima" minimalista (Voltar ao topo) */
.nav-icon-arrow {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(143, 106, 60, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-icon-arrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1.5px solid rgba(143, 106, 60, 0.95);
  border-right: 1.5px solid rgba(143, 106, 60, 0.95);
  transform: rotate(-45deg) translateY(1px);
}

/* Logo "estilo Instagram" em CSS puro */
.instagram-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background:
    radial-gradient(circle at 30% 30%, #fff 0, #fff0 40%),
    linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  position: relative;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

.instagram-icon::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 5px;
  border: 1.4px solid #fff;
}

.instagram-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  border: 1.4px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Pequeno ponto no canto superior direito da câmera */
.instagram-icon span {
  display: none;
}



/* Base para ícones vetoriais do menu */
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.40rem;
}

.nav-icon {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
}

/* "Sobre" - balão com ícone de informação */
.nav-icon-about {
  border-radius: 999px;
  border: 1.4px solid rgba(143, 106, 60, 0.84);
}

.nav-icon-about::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 6px;
  width: 7px;
  height: 7px;
  background: #f7efe4;
  border-left: 1.4px solid rgba(143, 106, 60, 0.84);
  border-bottom: 1.4px solid rgba(143, 106, 60, 0.84);
  border-radius: 0 0 0 6px;
  transform: rotate(45deg);
}

.nav-icon-about::after {
  content: "i";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  font-size: 10px;
  font-weight: 500;
  color: rgba(143, 106, 60, 0.95);
}

/* "Procedimentos" - brilhos/estrelas */
.nav-icon-procs::before,
.nav-icon-procs::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1.4px solid rgba(143, 106, 60, 0.85);
}

.nav-icon-procs::before {
  inset: 3px;
  transform: rotate(45deg);
}

.nav-icon-procs::after {
  width: 6px;
  height: 6px;
  top: 2px;
  right: 1px;
}

/* "Como funciona" - fluxo em etapas */
.nav-icon-flow::before,
.nav-icon-flow::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1.3px solid rgba(143, 106, 60, 0.9);
}

.nav-icon-flow::before {
  width: 6px;
  height: 6px;
  left: 1px;
  top: 6px;
}

.nav-icon-flow::after {
  width: 6px;
  height: 6px;
  right: 1px;
  bottom: 6px;
}

.nav-icon-flow span {
  display: none;
}

/* Pequena seta conectando os pontos */
.nav-icon-flow::marker { display: none; }

.nav-icon-flow::selection { background: transparent; }

.nav-icon-flow::before,
.nav-icon-flow::after { box-sizing: border-box; }

.nav-icon-flow-line {
  display: none;
}

.nav-icon-flow::placeholder { color: transparent; }

.nav-icon-flow::backdrop { background: transparent; }

.nav-icon-flow::shadow {}

/* linha entre os dois círculos */
.nav-icon-flow::before,
.nav-icon-flow::after { }

.nav-icon-flow::before {
  box-shadow: 7px 4px 0 0 rgba(143,106,60,0.18);
}

/* "Resultados reais" - estrela maior */
.nav-icon-results {
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #fff 0%, #f7efe4 50%, #e5cfab 100%);
  box-shadow: 0 1px 4px rgba(0,0,0,0.14);
}

.nav-icon-results::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 999px;
  border: 1.4px solid rgba(143, 106, 60, 0.9);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.7);
}



/* Ícones PNG no menu e rodapé em tom dourado suave */
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.40rem;
}

.nav-icon-img {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.nav-icon-gold,
.nav-links a .nav-icon-gold,
.footer-links a .nav-icon-gold {
  filter: invert(72%) sepia(22%) saturate(480%) hue-rotate(345deg) brightness(96%) contrast(90%);
  opacity: 0.96;
}

.nav-links a:hover .nav-icon-gold,
.footer-links a:hover .nav-icon-gold {
  filter: invert(68%) sepia(30%) saturate(520%) hue-rotate(345deg) brightness(90%) contrast(95%);
}

/* Ícone da seta no rodapé */
.footer-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.whats-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  filter: brightness(0) saturate(100%);
  opacity: 0.85;
}






/* Formulário RD integrado à CTA - v25 */
.cta-form {
  margin: 1.6rem auto 1.4rem;
  max-width: 640px;
}

.cta-form-inner {
  border-radius: 16px;
  padding: 0.9rem 1.1rem 1.1rem;
  background: rgba(255, 249, 240, 0.9); /* #FFF9F0 com leve transparência */
  box-shadow: 0 14px 30px rgba(160, 120, 70, 0.12);
  border: 1px solid rgba(200, 156, 91, 0.16);
}

.cta-form-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.35rem;
  font-size: 0.86rem;
  color: #5a4a3a;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.cta-form-header span {
  font-size: 1rem;
}

.cta-form-note {
  font-size: 0.76rem;
  color: var(--text-soft);
  margin-bottom: 0.75rem;
}

.cta-form-fields {
  margin-top: 0.35rem;
}

/* Mobile */
@media (max-width: 640px) {
  .cta-form-inner {
    padding: 0.85rem 0.95rem 1rem;
  }
}


/* Ajustes finos do formulário RD para ficar igual ao botão principal - v26 */
#capt-eccb48b80ed8205ad6cb .bricks-form__field,
#capt-eccb48b80ed8205ad6cb .field-container,
#capt-eccb48b80ed8205ad6cb .form-group {
  flex: 1 1 160px;
  min-width: 0;
}

/* Inputs pill alinhados com o design da LP */
#capt-eccb48b80ed8205ad6cb input,
#capt-eccb48b80ed8205ad6cb select {
  border-radius: 999px !important;
  border: 1px solid rgba(43, 37, 27, 0.20) !important;
  background: #ffffffee !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 0.84rem !important;
  color: #2b251b !important;
}

/* Botão com o mesmo degradê do CTA principal */
#capt-eccb48b80ed8205ad6cb button,
#capt-eccb48b80ed8205ad6cb input[type="submit"] {
  border-radius: 999px !important;
  background: radial-gradient(circle at top left, #FFF7EA, #E8CCA1, #C89C5B) !important;
  box-shadow: 0 14px 34px rgba(169, 122, 61, 0.40) !important;
  border: none !important;
  font-family: "Plus Jakarta Sans", sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #2B251B !important;
  padding: 0.78rem 1.3rem !important;
}

/* Hover suave */
#capt-eccb48b80ed8205ad6cb button:hover,
#capt-eccb48b80ed8205ad6cb input[type="submit"]:hover {
  box-shadow: 0 18px 38px rgba(169, 122, 61, 0.46) !important;
  transform: translateY(-1px);
}

/* v27 - Fonte igual ao botão principal + ícone no botão do RD */
#capt-eccb48b80ed8205ad6cb button,
#capt-eccb48b80ed8205ad6cb input[type="submit"] {
  font-family: "Plus Jakarta Sans", sans-serif !important;
  position: relative;
  padding-left: 2.2rem !important;
}

/* ícone antes do texto */


/* v28 ajustes - evitar quebra de linha no botão RD */
#capt-eccb48b80ed8205ad6cb button,
#capt-eccb48b80ed8205ad6cb input[type="submit"] {
  white-space: nowrap !important;
}

/* v29 melhorias de layout */
.cta-form-header, .cta-form-note {
  text-align: center !important;
  width: 100%;
  display: block;
}

/* Ajuste botão RD - centralizar perfeitamente o texto */
#capt-eccb48b80ed8205ad6cb button,
#capt-eccb48b80ed8205ad6cb input[type="submit"] {
  white-space: nowrap !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding-left: 1.2rem !important;
  padding-right: 1.2rem !important;
  line-height: 1.1 !important;
}


/* v32 - texto de copyright no rodapé */
.footer-copy {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-soft);
}
@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
  .footer-copy {
    margin-left: 0;
  }
}

/* v34 — Aplicando filtro dourado nos ícones PNG da navegação */
.nav-links .nav-icon-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: inline-block;
  filter: invert(62%) sepia(39%) saturate(540%) hue-rotate(3deg) brightness(95%) contrast(92%);
}

/* v35 — ícone no botão do formulário RD */
#capt-eccb48b80ed8205ad6cb button,
#capt-eccb48b80ed8205ad6cb input[type="submit"] {
  position: relative;
  padding-left: 2.4rem !important;
}

#capt-eccb48b80ed8205ad6cb button::before,
#capt-eccb48b80ed8205ad6cb input[type="submit"]::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("assets/img/btn-fireworks.png");
  background-repeat: no-repeat;
  background-size: contain;
  /* aproximação de cor semelhante ao texto do botão */
  filter: sepia(20%) saturate(250%) hue-rotate(330deg) brightness(90%) contrast(90%);
  opacity: 0.95;
}


/* v36 — largura maior do botão do formulário RD */
#capt-eccb48b80ed8205ad6cb button,
#capt-eccb48b80ed8205ad6cb input[type="submit"] {
  min-width: 400px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}


/* v42 – ajustes de responsividade do formulário RD no mobile */
@media (max-width: 768px) {
  #capt-eccb48b80ed8205ad6cb form {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    align-items: stretch !important;
  }

  #capt-eccb48b80ed8205ad6cb input,
  #capt-eccb48b80ed8205ad6cb select,
  #capt-eccb48b80ed8205ad6cb textarea {
    width: 100% !important;
  }

  #capt-eccb48b80ed8205ad6cb button,
  #capt-eccb48b80ed8205ad6cb input[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    justify-content: center !important;
    white-space: normal !important;
  }
}


/* v43 – correção definitiva do formulário RD no mobile */
@media (max-width: 768px) {

  #capt-eccb48b80ed8205ad6cb form,
  #capt-eccb48b80ed8205ad6cb div,
  #capt-eccb48b80ed8205ad6cb .bricks-form__group {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }

  #capt-eccb48b80ed8205ad6cb input,
  #capt-eccb48b80ed8205ad6cb select,
  #capt-eccb48b80ed8205ad6cb textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
  }

  #capt-eccb48b80ed8205ad6cb button,
  #capt-eccb48b80ed8205ad6cb input[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 14px 20px !important;
    white-space: normal !important;
  }

  #capt-eccb48b80ed8205ad6cb button img,
  #capt-eccb48b80ed8205ad6cb input[type="submit"] img {
    margin-right: 10px !important;
  }
}


/* v44 – refinamento visual do formulário RD no mobile */
@media (max-width: 768px) {

  #capt-eccb48b80ed8205ad6cb button,
  #capt-eccb48b80ed8205ad6cb input[type="submit"] {
    width: auto !important;
    max-width: 320px !important;
    align-self: center !important;
    padding-left: 32px !important;
    padding-right: 32px !important;
    white-space: normal !important;
    text-align: center !important;
  }
}


/* v45 – layout mais limpo do formulário RD no mobile */
@media (max-width: 768px) {

  /* volta os grupos para bloco normal e reduz espaçamento */
  #capt-eccb48b80ed8205ad6cb form,
  #capt-eccb48b80ed8205ad6cb .bricks-form__group,
  #capt-eccb48b80ed8205ad6cb .bricks-form__field {
    display: block !important;
    width: 100% !important;
  }

  #capt-eccb48b80ed8205ad6cb .bricks-form__field {
    margin-bottom: 10px !important;
  }

  /* campo de telefone em coluna simples */
  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone {
    display: block !important;
  }

  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone select,
  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone input {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }

  /* botão ocupando toda a largura, sem ícone deslocando texto */
  #capt-eccb48b80ed8205ad6cb button,
  #capt-eccb48b80ed8205ad6cb input[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
    align-self: stretch !important;
    padding: 14px 20px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  #capt-eccb48b80ed8205ad6cb button::before,
  #capt-eccb48b80ed8205ad6cb input[type="submit"]::before {
    display: none !important;
  }
}


/* v46 – ajuste final do formulário RD no mobile */
@media (max-width: 768px) {

  /* volta os divs internos para bloco comum */
  #capt-eccb48b80ed8205ad6cb div {
    display: block !important;
    width: 100% !important;
  }

  #capt-eccb48b80ed8205ad6cb form,
  #capt-eccb48b80ed8205ad6cb .bricks-form__group,
  #capt-eccb48b80ed8205ad6cb .bricks-form__field {
    display: block !important;
    width: 100% !important;
    margin-bottom: 12px !important;
  }

  /* telefone lado a lado, mas proporcional */
  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 8px !important;
  }

  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone select {
    flex: 0 0 100px !important;
  }

  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone input {
    flex: 1 1 auto !important;
  }

  #capt-eccb48b80ed8205ad6cb input,
  #capt-eccb48b80ed8205ad6cb select,
  #capt-eccb48b80ed8205ad6cb textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  /* botão centralizado, com ícone e largura confortável */
  #capt-eccb48b80ed8205ad6cb button,
  #capt-eccb48b80ed8205ad6cb input[type="submit"] {
    width: 100% !important;
    max-width: 340px !important;
    margin: 8px auto 0 auto !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 14px 40px !important;
    white-space: normal !important;
    text-align: center !important;
  }

  #capt-eccb48b80ed8205ad6cb button::before,
  #capt-eccb48b80ed8205ad6cb input[type="submit"]::before {
    display: block !important;
  }
}


/* v47 – redução de espaçamento vertical entre campos do formulário RD no mobile */
@media (max-width: 768px) {
  #capt-eccb48b80ed8205ad6cb .bricks-form__group,
  #capt-eccb48b80ed8205ad6cb .bricks-form__field {
    margin-bottom: 6px !important;
  }

  #capt-eccb48b80ed8205ad6cb .bricks-form__field:last-child {
    margin-bottom: 0 !important;
  }

  #capt-eccb48b80ed8205ad6cb label,
  #capt-eccb48b80ed8205ad6cb .bricks-form__label {
    margin-bottom: 2px !important;
  }
}


/* v48 – telefone LADO A LADO no mobile */
@media (max-width: 768px) {

  /* container do telefone vira linha */
  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    align-items: center !important;
    width: 100% !important;
  }

  /* select fixo à esquerda */
  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone select {
    flex: 0 0 85px !important;
    width: 85px !important;
  }

  /* campo do número ocupa o restante */
  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone input {
    flex: 1 1 auto !important;
    width: 100% !important;
  }
}


/* v49 – força máxima para telefone lado a lado no mobile */
@media (max-width: 768px) {

  /* qualquer contêiner do campo de telefone vira flex em linha */
  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone,
  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone > *,
  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone > * > * {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  /* select do país ocupa largura fixa */
  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone select {
    flex: 0 0 88px !important;
    width: 88px !important;
    max-width: 88px !important;
  }

  /* campo do número ocupa o restante */
  #capt-eccb48b80ed8205ad6cb .bricks-form__field-phone input {
    flex: 1 1 auto !important;
    width: 100% !important;
  }
}


.hero-cta-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-form-inner .btn-whats {
    margin-left: auto;
    margin-right: auto;
}
