@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #166F8D;
  --color-primary-dark: #105872;
  --color-dark: #1e1e1e;
  --color-light: #EDEDED;
  --color-white: #FFFFFF;
  --color-text: #5A5A5A;
  --color-bg: #EDEDED;
  --font-serif: 'Fraunces', serif;
  --font-sans: 'Inter', sans-serif;
  --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

.bg-rose { background-color: var(--color-primary) !important; }
.bg-light { background-color: var(--color-light) !important; }

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-dark);
  font-weight: 500;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utilities */
.text-gold {
  color: var(--color-gold);
}
.text-center {
  text-align: center;
}
.subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  margin-top: 1.5rem;
  color: var(--color-text);
}
.badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 6rem 0;
}
.section-light {
  background-color: var(--color-white);
}

/* Components */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: rgba(237, 237, 237, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0px rgba(0,0,0,0.08);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Accessibility: Focus visible ring */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 4px;
}
.logo img {
  height: 70px;
  width: auto;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-links a:hover {
  color: var(--color-gold);
}
.mobile-menu-btn {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-white);
  transition: var(--transition);
}
.nav-cta {
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-radius: 30px;
  transition: var(--transition), transform 0.1s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background-color: var(--color-primary);
  color: #ffffff;
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.btn-outline {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}
.btn-outline:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* Aesthetic Image Frames */
.image-frame {
  position: relative;
  z-index: 1;
}
.image-frame::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: -2rem;
  bottom: -2rem;
  border: 1px solid var(--color-gold);
  z-index: -1;
  pointer-events: none;
}
.image-frame.frame-rose::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: -1rem;
  bottom: -1rem;
  background-color: var(--color-primary);
  opacity: 0.2;
  z-index: -2;
  pointer-events: none;
}
.image-frame img {
  box-shadow: var(--shadow-soft);
  width: 100%;
  border-radius: var(--border-radius);
}

/* Section: Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.hero-text .btn {
  margin-top: 2.5rem;
}
.hero-image-container {
  position: relative;
  z-index: 1;
  padding: 12px;
}
.hero-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--color-primary);
  border-radius: calc(var(--border-radius) + 12px);
  z-index: 0;
}
.hero-image-container img {
  width: 100%;
  max-height: 550px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 50px rgba(22, 111, 141, 0.7); /* Sombra na cor da logo */
  position: relative;
  z-index: 1;
  display: block;
}

.hero-image-caption {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--color-white);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-dark);
  max-width: 250px;
  z-index: 2;
}

/* Section: Dor */
.dor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.dor-text {
  text-align: center;
}
.dor-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Section: Sobre */
.sobre-content {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
  gap: 4rem;
  align-items: center;
  text-align: center;
}
.sobre-text {
  text-align: center;
}
.sobre-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.sobre-text p {
  margin-bottom: 1rem;
}
.sobre-quote {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-gold);
  text-align: center;
}
.sobre-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}
.sobre-quote span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

/* Section: ServiÃ§os (Cards) */
.servicos-card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
  padding-bottom: 3rem;
}
.serv-card {
  border-radius: 8px;
  overflow: hidden;
  background-color: #FFFFFF;
  color: #000000;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 300px;
  max-width: 380px;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.serv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-gold);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
}
@media (hover: hover) {
  .serv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px -20px rgba(0,0,0,0.25);
  }
  .serv-card:hover::before {
    width: 100%;
  }
}
.serv-img-placeholder {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.serv-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.serv-card-body {
  padding: 1.5rem;
}
.serv-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 95px;
  cursor: pointer;
}
.serv-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
  color: #000000;
}
.serv-card-subtitle {
  font-size: 1.05rem;
  color: #000000;
  margin: 0;
  line-height: 1.4;
}
.serv-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-bg);
  transition: transform 0.4s ease, background-color 0.4s ease, color 0.4s ease;
  cursor: pointer;
  flex-shrink: 0;
  color: var(--color-dark);
  margin-top: 2px;
}
.serv-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.serv-card.active .serv-arrow {
  transform: rotate(135deg);
  background-color: var(--color-primary);
  color: var(--color-white);
}

.serv-card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.serv-list-simple {
  list-style: none;
  padding: 1.5rem 0 0 0;
  margin: 1rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.serv-list-simple li {
  font-size: 1.1rem;
  color: #000000;
  padding-left: 1.2rem;
  position: relative;
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.serv-card.active .serv-list-simple li {
  opacity: 1;
  transform: translateX(0);
}
.serv-card.active .serv-list-simple li:nth-child(1) { transition-delay: 0.1s; }
.serv-card.active .serv-list-simple li:nth-child(2) { transition-delay: 0.16s; }
.serv-card.active .serv-list-simple li:nth-child(3) { transition-delay: 0.22s; }
.serv-card.active .serv-list-simple li:nth-child(4) { transition-delay: 0.28s; }
.serv-card.active .serv-list-simple li:nth-child(5) { transition-delay: 0.34s; }
.serv-card.active .serv-list-simple li:nth-child(6) { transition-delay: 0.40s; }
.serv-card.active .serv-list-simple li:nth-child(7) { transition-delay: 0.46s; }
.serv-list-simple li::before {
  content: '\2022';
  color: #000000;
  position: absolute;
  left: 0;
}

/* Section: ObjeÃ§Ã£o */
.objecao {
  text-align: center;
  color: #000000;
}
.objecao h2 {
  color: #000000;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.objecao p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}
.objecao .btn-outline {
  border-color: #000000;
  color: #000000;
}
.objecao .btn-outline:hover {
  background-color: #000000;
  color: #FFFFFF;
}

/* Section: Como Funciona */
.processo-header {
  text-align: center;
  margin-bottom: 4rem;
}
.processo-header h2 {
  font-size: 2.5rem;
}
.processo-steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.processo-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #E0E0E0;
  z-index: 0;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-gold);
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.9rem;
}

/* Section: BenefÃ­cios */
.diferenciais-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.badge-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.badge-line {
  height: 1px;
  width: 40px;
  background-color: var(--color-gold);
}
.badge-title .badge {
  margin-bottom: 0;
  letter-spacing: 0.1em;
  background: none;
  color: var(--color-text);
  padding: 0;
  font-weight: 600;
}
.diferenciais-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}
.diferenciais-desc {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.diferenciais-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.dif-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-bg);
  color: var(--color-dark);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dif-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.diferenciais-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-dark);
}

/* Section: Prova Social */
.prova-social {
  text-align: center;
  padding: 4rem 0;
}
.avaliacao-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  position: relative;
}
.avatar-placeholder {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #673AB7; /* default purple */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 1rem;
}
.avaliacao-card:nth-child(2n) .avatar-placeholder { background-color: #0F9D58; } /* green */
.avaliacao-card:nth-child(3n) .avatar-placeholder { background-color: #DB4437; } /* red/orange */
.avaliacao-card:nth-child(4n) .avatar-placeholder { background-color: #4285F4; } /* blue */

.avaliacao-info h4 {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: #000000;
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #E0E0E0;
  z-index: 0;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-gold);
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.9rem;
}

/* Section: BenefÃ­cios */
.diferenciais-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.badge-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.badge-line {
  height: 1px;
  width: 40px;
  background-color: var(--color-gold);
}
.badge-title .badge {
  margin-bottom: 0;
  letter-spacing: 0.1em;
  background: none;
  color: var(--color-text);
  padding: 0;
  font-weight: 600;
}
.diferenciais-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}
.diferenciais-desc {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}
.diferenciais-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.dif-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-bg);
  color: var(--color-dark);
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.dif-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
.diferenciais-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-dark);
}

/* Section: Prova Social */
.prova-social {
  text-align: center;
  padding: 4rem 0;
}
.prova-social h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #000000;
}
.marquee-container {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #EDEDED, transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #EDEDED, transparent);
}
.marquee-content {
  display: inline-flex;
  align-items: stretch;
  gap: 1.5rem;
  animation: scrollMarquee 45s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.avaliacao-card {
  width: 380px;
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
  white-space: normal;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); }
}
.prova-social h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #000000;
}
.marquee-container {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #EDEDED, transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #EDEDED, transparent);
}
.marquee-content {
  display: inline-flex;
  align-items: stretch;
  gap: 1.5rem;
  animation: scrollMarquee 45s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.avaliacao-card {
  width: 380px;
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
  white-space: normal;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); }
}
.avaliacao-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  position: relative;
}
.avatar-placeholder {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #673AB7; /* default purple */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 1rem;
}
.avaliacao-card:nth-child(2n) .avatar-placeholder { background-color: #0F9D58; } /* green */
.avaliacao-card:nth-child(3n) .avatar-placeholder { background-color: #DB4437; } /* red/orange */
.avaliacao-card:nth-child(4n) .avatar-placeholder { background-color: #4285F4; } /* blue */

.avaliacao-info h4 {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: #000000;
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.stars {
  color: #FBBC04;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.avaliacao-text {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.6;
}

/* Section: FAQ */
.section-light {
  background-color: var(--color-light);
}
.faq {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.faq-item {
  background: var(--color-primary);
  border: 1px solid #E8E3E3;
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
  display: block;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  box-shadow: none;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.navbar.scrolled {
  background: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 60px;
  width: auto;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-white);
  transition: var(--transition);
}
.nav-links a:hover {
  opacity: 0.8;
}
.nav-links a.btn-nav {
  background-color: var(--color-white);
  color: var(--color-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
}
.nav-links a.btn-nav:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.mobile-menu-btn {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-white);
  transition: var(--transition);
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-white);
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
  height: 100%;
  min-height: 90px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--color-white);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-arrow svg {
  width: 100%;
  height: 100%;
}
.faq-item.active .faq-arrow {
  transform: rotate(135deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: var(--color-white);
  line-height: 1.6;
}

/* Section: CTA Final */
.cta-final {
  background-color: var(--color-primary);
  text-align: center;
  padding: 8rem 0;
}
.cta-final h2 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.cta-final p {
  color: var(--color-white);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.cta-final .btn {
  background-color: var(--color-white);
  color: var(--color-primary);
}
.cta-final .btn:hover {
  background-color: var(--color-bg);
  color: var(--color-primary-dark);
}

/* Footer */
.footer {
  padding: 4rem 0 2rem;
}
.footer-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 3rem;
}
.footer-col {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 250px;
}
.footer-col-contato {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5rem;
}
.footer-col svg {
  color: #555555;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-col p {
  margin-bottom: 0.3rem;
}
.footer-col p:last-child {
  margin-bottom: 0;
  opacity: 0.9;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: inherit;
  text-decoration: none;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}
.footer-col a:last-child {
  margin-bottom: 0;
}
.footer-col a:hover {
  opacity: 0.8;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(237, 237, 237, 0.2);
  font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: var(--shadow-medium);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  .btn-nav {
    display: none;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 15vh;
    transition: 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  .nav-links.active {
    right: 0;
  }
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .mobile-menu-btn.active span {
    background-color: var(--color-dark);
  }
  .nav-links.active a {
    color: #000000;
  }
}

@media (max-width: 992px) {
  .hero-content, .dor-content, .sobre-content, .diferenciais-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.8rem;
  }
  .image-frame::after {
    top: 1rem;
    left: 1rem;
    right: -1rem;
    bottom: -1rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; text-align: center; }
  h2 { font-size: 2rem; text-align: center; }
  
  .navbar {
    padding: 1rem;
  }
  .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    padding-right: 0;
  }
  
  .sobre-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sobre-text, .diferenciais-text {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  
  .processo-grid {
    grid-template-columns: 1fr;
  }
  
  .faq {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .footer-col {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    gap: 0.8rem;
  }
  .footer-col-contato {
    align-items: center;
  }
  .footer-col svg {
    margin-top: 0;
    margin-bottom: 0.5rem;
  }
  .footer-col a {
    justify-content: center;
  }
  .footer-col a svg {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  /* Processo Mobile - Lista Vertical */
  .processo-steps {
    flex-direction: column;
    gap: 2rem;
  }
  .processo-steps::before {
    top: 0;
    left: 30px;
    width: 1px;
    height: 100%;
  }
  .step {
    display: flex;
    align-items: flex-start;
    text-align: left;
  }
  .step-number {
    margin: 0 1.5rem 0 0;
    flex-shrink: 0;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}

/* Cores de Texto Dinâmicas por Seção */
.bg-rose, 
.bg-rose h1, 
.bg-rose h2, 
.bg-rose h3, 
.bg-rose h4, 
.bg-rose p, 
.bg-rose span, 
.bg-rose li, 
.bg-rose a {
  color: #EDEDED;
}

/* Exceções para .bg-rose onde o fundo interno é branco (ex: cards) */
.bg-rose .serv-card, 
.bg-rose .serv-card h3, 
.bg-rose .serv-card p, 
.bg-rose .serv-card li, 
.bg-rose .serv-card span,
.bg-rose .avaliacao-card p,
.bg-rose .avaliacao-texto {
  color: #000000;
}
.bg-rose .serv-list-simple li::before {
  color: #000000;
}

/* Botões vazados no fundo rosa */
.bg-rose .btn-outline {
  border-color: #EDEDED;
  color: #EDEDED;
}
.bg-rose .btn-outline:hover {
  background-color: #EDEDED;
  color: var(--color-primary);
}

/* Botões vazados no fundo branco/claro */
.bg-light .btn-outline {
  border-color: #000000;
  color: #000000;
}
.bg-light .btn-outline:hover {
  background-color: #000000;
  color: #EDEDED;
}

/* Scroll Reveal System */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  
  .reveal-cascade {
    opacity: 0;
    transform: translateY(20px) scale(0.94);
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .reveal-cascade.visible {
    opacity: 1;
    transform: none;
  }
  .reveal-cascade:nth-child(1) { transition-delay: 0.05s; }
  .reveal-cascade:nth-child(2) { transition-delay: 0.15s; }
  .reveal-cascade:nth-child(3) { transition-delay: 0.25s; }
  .reveal-cascade:nth-child(4) { transition-delay: 0.35s; }
  .reveal-cascade:nth-child(5) { transition-delay: 0.45s; }
  .reveal-cascade:nth-child(6) { transition-delay: 0.55s; }
  .reveal-cascade:nth-child(7) { transition-delay: 0.65s; }
  .reveal-cascade:nth-child(8) { transition-delay: 0.75s; }

  .frame-shadow {
    position: absolute;
    bottom: -15%;
    left: -15%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(22,111,141,0.7) 0%, rgba(255,255,255,0) 70%);
    filter: blur(25px);
    z-index: -3;
    opacity: 0;
    transition: opacity 1.2s ease 0.5s;
    pointer-events: none;
  }
  .image-frame.visible .frame-shadow {
    opacity: 1;
  }
  
  /* Section Overlay */
  .reveal-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, transparent 100%);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
    transition: opacity 1.4s ease 0.3s;
  }
  .reveal-overlay.visible::before {
    opacity: 0.35;
  }
}

.animated-title-pill {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-dark);
  border-radius: 100px;
  padding: 0.8rem 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  text-align: center;
  animation: floatPill 4s ease-in-out infinite;
}

@keyframes floatPill {
  0% { transform: translateY(0px); box-shadow: 0 0 0 rgba(0,0,0,0); }
  50% { transform: translateY(-5px); box-shadow: 0 8px 15px rgba(0,0,0,0.06); }
  100% { transform: translateY(0px); box-shadow: 0 0 0 rgba(0,0,0,0); }
}

/* COMO FUNCIONA - PILATES */
.funciona-section {
  padding: 5rem 0;
}
.funciona-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.funciona-title {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.funciona-subtitle {
  font-family: var(--font-sans);
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.funciona-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.funciona-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.funciona-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.funciona-number {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background-color: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.funciona-card h3 {
  font-family: var(--font-sans);
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.funciona-card p {
  font-family: var(--font-sans);
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}
.funciona-quote {
  text-align: center;
  font-family: var(--font-sans);
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .funciona-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .funciona-grid {
    grid-template-columns: 1fr;
  }
}

/* NEW HERO STYLE */
.hero-new {
    display: flex;
    min-height: 100vh;
    padding-top: 140px; 
    background-color: var(--color-primary);
    position: relative;
}
.hero-left {
    width: 55%;
    padding: 4rem 4rem 4rem 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}
.hero-right {
    width: 100%;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}
.hero-parallax-img {
    position: absolute;
    top: -50px; bottom: -50px; left: 0; right: 0;
    background-image: url('../images/fotohero.jpg');
    background-size: cover;
    background-position: right center;
    will-change: transform;
}
.hero-right::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background: linear-gradient(
      90deg,
      #166F8D 35%,
      rgba(22, 111, 141, 0.4) 65%,
      rgba(22, 111, 141, 0.05) 100%
    );
    pointer-events: none;
}
.hero-eyebrow {
    color: rgba(255,255,255,0.7);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}
.hero-title-anim {
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-subtitle-anim {
    color: rgba(255,255,255,0.9);
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 400;
    max-width: 500px;
    margin-bottom: 2.5rem;
}
.btn-pill-hero {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.5rem 0.5rem 0.5rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    gap: 1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    align-self: flex-start;
}
.btn-pill-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    background-color: #f5f5f5;
}
.btn-pill-hero .btn-pill-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #ffffff;
    transition: transform 0.3s ease;
}
.btn-pill-hero:hover .btn-pill-icon {
    transform: translateX(4px);
}
.btn-pill-icon svg {
    width: 22px;
    height: 22px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-new {
        flex-direction: column;
        justify-content: center;
        padding-top: 100px;
        min-height: 100vh;
    }
    .hero-left {
        width: 100%;
        padding: 2rem;
    }
    .hero-right {
        width: 100%;
        z-index: 0;
    }
    .hero-parallax-img {
        top: 0; bottom: 0;
    }
    .hero-right::after {
        background: linear-gradient(
          180deg,
          rgba(22, 111, 141, 0.82) 0%,
          rgba(22, 111, 141, 0.55) 55%,
          rgba(22, 111, 141, 0.78) 100%
        );
    }
    .hero-title-anim {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }
    .hero-subtitle-anim {
        font-size: 1.05rem;
    }
}

/* --- Marquee Depoimentos --- */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    white-space: nowrap;
    padding-bottom: 2rem;
}
.marquee-track {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
    animation: marquee-scroll 45s linear infinite;
    will-change: transform;
    flex-shrink: 0;
}
.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); } 
}
.avaliacao-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    width: 350px;
    min-width: 350px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    white-space: normal;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.avaliacao-header {
    display: flex;
    align-items: center;
}
.avatar-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 15px;
}
.avaliacao-header h4 {
    margin: 0 0 5px 0;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: #000;
}
.stars {
    color: #FFD700;
    font-size: 1.2rem;
    line-height: 1;
}
.avaliacao-texto {
    margin: 0;
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.5;
}

/* --- Reveal Animations --- */
.reveal, .reveal-cascade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal.visible, .reveal-cascade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Serv Card Hover --- */
.serv-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.serv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}
.serv-img-placeholder {
    overflow: hidden;
}
.serv-img-placeholder img {
    transition: transform 0.4s ease;
}
.serv-card:hover .serv-img-placeholder img {
    transform: scale(1.05);
}

/* --- SVG Dividers --- */
.svg-divider {
    width: 100%;
    display: block;
    margin-top: -1px;
    margin-bottom: -1px;
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}
.whatsapp-float:hover {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.serv-card-header h3 {
    font-family: var(--font-sans) !important;
}
