/* ==========================
   RESET
========================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Raleway", sans-serif;
  background: #f5f3ef;
  color: #3f3d56;
  overflow-x: hidden;
}

/* ==========================
   VARIÁVEIS
========================== */

:root {
  --lavanda: #C9B6E4;
  --lavanda-light: #d8d7ec;

  --salvia: #e3e3e3;
  --salvia-dark: #b7cbbf;

  --areia: #f3e9dd;

  --dourado: #c7a76c;

  --texto: #3f3d56;

  --white: #ffffff;

  --radius-lg: 32px;
  --radius-md: 20px;

  --shadow:
  0 10px 40px rgba(0,0,0,.08);

  --transition: .4s ease;
}

/* ==========================
   CONTAINER
========================== */

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.section {
  padding: 120px 0;
}

/* ==========================
   TIPOGRAFIA
========================== */

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
}

.section-subtitle {
  display: block;
  text-align: center;
  color: var(--dourado);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 4rem);
  margin-bottom: 4rem;
}

/* ==========================
   BOTÕES
========================== */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 32px;

  border-radius: 999px;

  text-decoration: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--lavanda);
  color: white;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  border: 1px solid var(--lavanda);
  color: var(--lavanda);
}

.btn-secondary:hover {
  background: var(--lavanda);
  color: white;
}

/* ==========================
   HEADER
========================== */

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;

  padding: 20px 0;

  backdrop-filter: blur(15px);

  background: rgba(245, 243, 239, .85);

  border-bottom: 1px solid rgba(255,255,255,.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.nav-left,
.nav-right {
  display: flex;
  gap: 2rem;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: var(--texto);
  transition: .3s;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--lavanda);
}

.logo img {
  width: 100px;
  mix-blend-mode: multiply;
}

.mobile-menu {
  display: none;
}

/* ==========================
   HERO
========================== */

.hero {
    padding-top: 120px;
    padding-bottom: 0;
    background: #f5f3ef;
    position: relative;
    overflow: visible;
}

.hero-wrapper {
    width: 100%;
    margin: 0 auto;
}

.hero-image-card {
    position: relative;
    width: 100%;
    min-height: 75vh;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    animation: premiumFloat 20s ease-in-out infinite alternate;
    transform-origin: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(63, 61, 86, .38);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 700px;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    color: white;
    margin-bottom: 1.2rem;
}

.hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 2rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-buttons .btn-primary {
    background: var(--dourado);
    color: white;
    padding: 14px 36px;
    font-size: .95rem;
}

.hero-buttons .btn-primary:hover {
    background: var(--areia);
    color: var(--texto);
  
}

/* Decorative SVGs */
.hero-deco {
    position: absolute;
    z-index: 2;
    height: 60%;
    pointer-events: none;
}

.hero-deco--left {
    left: 2%;
    top: 10%;
}

.hero-deco--right {
    right: 2%;
    top: 15%;
}

/* Navigation arrows */
.hero-arrow {
    position: absolute;
    bottom: 30px;
    z-index: 4;
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background:rgba(255, 255, 255, .1);
    backdrop-filter: blur(4px);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, .25);
    transform: translateY(0);
}

.hero-arrow--left {
    left: 30px;
}

.hero-arrow--right {
    right: 30px;
}

/* Wave transition */
.hero-wave {
    position: relative;
    margin-top: -2px;
    z-index: 5;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 150px;
    display: block;
}

/* ==========================
   SOBRE
========================== */

.about {
  background: #f9f7f4;
  padding: 100px 0 120px;
  position: relative;
  margin-top: -2px;
}

.about-layout {
  position: relative;
}

.about-image-col {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  z-index: 2;
}

.about-img-main {
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  top: -25px;
  right: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f9f7f4;
  box-shadow: var(--shadow);
  z-index: 3;
}

.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-text-col {
  background: var(--lavanda);
  margin-left: 20%;
  padding: 3.5rem 3rem 3.5rem 25%;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-label {
  display: block;
  color: var(--dourado);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.about-text-col h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--white);
  line-height: 1.25;
  font-weight: 400;
  margin-bottom: 0;
}

.about-separator {
  width: 48px;
  height: 2px;
  background: var(--dourado);
  margin: 1.8rem 0;
}

.about-values {
  display: flex;
  margin-top: 2em;
  flex-direction: column;
  gap: 1.6rem;
}

.about-value {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.about-value-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 2px;
}

.about-value strong {
  display: block;
  font-size: .9rem;
  color: var(--white);
  letter-spacing: .5px;
  margin-bottom: .3rem;
}

.about-value p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .75);
  line-height: 1.6;
  margin: 0;
}

/* ==========================
   BENEFÍCIOS
========================== */

.benefits {
  background: var(--areia);
  padding: 100px 0 0;
}

.benefits-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding-bottom: 5rem;
}

.pillar {
  text-align: center;
  padding: 0 1rem;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: var(--dourado);
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar h3 {
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: var(--texto);
}

.pillar p {
  font-size: .92rem;
  line-height: 1.7;
  color: #6b6b7b;
}

/* Barra colorida */
.benefits-bar {
  display: flex;
  margin-top: 0;
}

.bar-segment {
  flex: 1;
  padding: 1.2rem 2rem;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
}

.bar-segment--sage {
  background: #8a9a7b;
}

.bar-segment--gold {
  background: var(--dourado);
}

.bar-segment--rose {
  background: #b07a7a;
}

/* ==========================
   SERVIÇOS — CARROSSEL
========================== */

.services {
  background: var(--lavanda);
  padding: 0;
  overflow: hidden;
}

.services-carousel {
  position: relative;
  min-height: 100vh;
}

.services-slide {
  display: none;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.services-slide.active {
  display: grid;
}

.services-slide.active .slide-text {
  animation: stairUp 1s cubic-bezier(.23, 1, .32, 1) both;
}

.services-slide.active .slide-img-main {
  animation: stairUp 1s cubic-bezier(.23, 1, .32, 1) .15s both;
}

.services-slide.active .slide-img-secondary {
  animation: stairUp 1s cubic-bezier(.23, 1, .32, 1) .3s both;
}

@keyframes stairUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Texto à esquerda */
.slide-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 5rem 4rem 5rem 4rem;
}

.slide-label {
  display: block;
  color: var(--areia);
  background: var(--dourado);
  border-radius: 20px;
  padding: 0.8em;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.slide-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  line-height: 1.15;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.slide-text p {
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2rem;
}

.service-badge {
  display: inline-block;
  background: var(--dourado);
  color: white;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 1px solid rgba(255, 255, 255, .3);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  transition: .3s ease;
  background: transparent;
}

.btn-service:hover {
  background: var(--dourado);
  border-color: var(--dourado);
}

.service-corporate {
  display: inline-block;
  font-size: .78rem;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .5px;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.services-slide--headspa .slide-img-main {
  object-position: center 10%;
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-service--corporate {
  background: var(--dourado);
  border-color: var(--dourado);
}

.btn-service--corporate:hover {
  background: #b8964f;
  border-color: #b8964f;
}

/* Imagens à direita */
.slide-images {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
  padding: 3rem 3rem 3rem 0;
  align-items: center;
}

.slide-img-main {
  width: 100%;
  border-radius: 12px;
  height: 60vh;
  object-fit: cover;
  display: block;
}

.slide-img-secondary {
  width: 100%;
  height: 45vh;
  border-radius: 12px;
  object-fit: cover;
  filter: blur(2.5px);
  display: block;
  align-self: end;
 
}

/* Navegação */
.services-nav {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: .6rem;
  z-index: 5;
}

.services-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  padding: 0;
  transition: .3s ease;
}

.services-dot:hover {
  background: rgba(255, 255, 255, .6);
}

.services-dot.active {
  background: var(--dourado);
  width: 28px;
  border-radius: 999px;
}

/* ==========================
   SERVIÇOS PARA OS PÉS
========================== */

.feet {
  background: var(--salvia-dark);
}

.feet .section-subtitle {
  color: var(--texto);
}

.feet .section-title {
  color: var(--texto);
}

.feet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feet-card {
  background: #f9f7f4;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s ease, box-shadow .4s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.feet-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.feet-card-img {
  position: relative;
  padding: .75rem .75rem 0;
  overflow: hidden;
}

.feet-card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  transition: transform .6s ease;
}

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

.feet-card-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--salvia-dark);
  backdrop-filter: blur(8px);
  color: white;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: .35rem .9rem;
  border-radius: 999px;
}

.feet-card-body {
  padding: 1.2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.feet-card-body h3 {
  font-size: 1.3rem;
  color: var(--texto);
  margin-bottom: .6rem;
}

.feet-card-body p {
  font-size: .85rem;
  line-height: 1.65;
  color: #6b6b7b;
  margin-bottom: 1.2rem;
}

.feet-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}

.feet-card-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 10px 22px;
  background: var(--lavanda);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: .85rem;
  transition: background .3s ease;
}

.feet-card-btn:hover {
  background: var(--dourado);
}

.feet-card-btn svg {
  transition: transform .3s ease;
}

.feet-card-btn:hover svg {
  transform: translateX(3px);
}

.feet-nav {
  display: none;
}

/* ==========================
   PLANOS
========================== */

.plans {
  background: #f9f7f4;
}

.plans-desc {
  text-align: center;
  max-width: 600px;
  margin: -2rem auto 3rem;
  color: #6b6b7b;
  font-size: .95rem;
  line-height: 1.7;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.plan-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--salvia);
  transition: transform .4s ease, box-shadow .4s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

.plan-card--featured {
  background: var(--areia);
  border-color: var(--dourado);
}

.plan-popular {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--dourado);
  color: white;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: .5rem;
}

.plan-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dourado);
  border: 1px solid var(--dourado);
  padding: .35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.plan-card--featured .plan-badge {
  color: var(--dourado);
  border-color: var(--dourado);
  margin-top: 1.5rem;
}

.plan-card h3 {
  font-size: 1.5rem;
  color: var(--dourado);
  margin-bottom: .5rem;
}

.plan-card--featured h3 {
  color: var(--dourado);
}

.plan-discount {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 1rem;
}

.plan-discount small {
  font-size: 1rem;
  font-weight: 400;
  vertical-align: super;
}

.plan-card p {
  font-size: .85rem;
  line-height: 1.65;
  color: var(--dourado);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.plan-card--featured p {
  color: var(--dourado);
}

.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  background: var(--areia);
  color: var(--dourado);
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  transition: .3s ease;
  margin-top: auto;
}

.plan-btn--featured{
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  font-size: .9rem;
  transition: .3s ease;
  margin-top: auto;
  color: white;
  background: var(--dourado);
}

.plan-btn--featured{
  color: white;
}
.plan-btn:hover {
  background: var(--dourado);
  color: white;
}

.plan-card--featured .plan-btn {
  background: var(--dourado);
}

.plan-card--featured .plan-btn:hover {
  background: #b8964f;
}

/* ==========================
   A PROFISSIONAL
========================== */

.professional {
  background: #f9f7f4;
  padding: 100px 0 120px;
}

.professional-layout {
  position: relative;
}

.professional-img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  z-index: 2;
  overflow: hidden;
}

.professional-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
}

.professional-text {
  background: var(--lavanda);
  margin-right: 20%;
  padding: 3.5rem 25% 3.5rem 3rem;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.professional-label {
  display: block;
  color: var(--areia);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.professional-text h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.professional-text > p {
  color: rgba(255, 255, 255, .75);
  line-height: 1.85;
  font-size: .95rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.professional-text > p.professional-quote {
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.5;
  margin-top: .5rem;
  font-weight: 600;
}

/* ==========================
   CTA
========================== */

.cta {
  background: var(--salvia-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}


.cta-layout {
  text-align: center;
  max-width: 600px;
}

.cta-label {
  display: block;
  color: var(--dourado);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 400;
  margin-bottom: 1rem;
}

.cta p {
  color: rgb(255 255 255 / 75%);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--dourado);
  color: white;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  transition: .3s ease;
}

.cta-btn:hover {
  background: #b8964f;
}

/* ==========================
   FAQ
========================== */

.faq {
  background: var(--areia);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--salvia);
  overflow: hidden;
  transition: box-shadow .3s ease;
}

.faq-item[open] {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
}

.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--texto);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--dourado);
  font-weight: 300;
  transition: transform .3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.2rem;
  font-size: .9rem;
  line-height: 1.7;
  color: #6b6b7b;
}

/* ==========================
   CONTATO
========================== */

.contact {
  background: #f9f7f4;
  padding: 100px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-label {
  display: block;
  color: var(--dourado);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.contact-info h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--texto);
  font-weight: 400;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #6b6b7b;
  line-height: 1.7;
  font-size: .95rem;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--texto);
  text-decoration: none;
  transition: color .3s;
}

a.contact-item:hover {
  color: var(--dourado);
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--dourado);
}

.contact-item span {
  font-size: .9rem;
  line-height: 1.5;
}

.contact-map {
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* ==========================
   FOOTER
========================== */

footer {
  background: var(--salvia-dark);
  color: white;
  padding: 50px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-top {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-logo {
  width: 70px;
  border-radius: 50px;
  margin: 0 auto .8rem;
  
}

.footer-slogan {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: rgb(255 255 255);
  font-weight: 600;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  width: 100%;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: rgb(255 255 255);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
  font-weight: 600;
}

.footer-nav a:hover {
  color: var(--dourado);
}

.footer-bottom {
  text-align: center;
}

.footer-copy {
  font-size: .75rem;
  color: rgb(255 255 255);
  font-weight: 600;
}

.footer-dev {
  font-size: .7rem;
  color: rgb(255 255 255);
  margin-top: .5rem;
  font-weight: 500;
}

.footer-dev a {
  color: var(--dourado);
  text-decoration: none;
  transition: color .3s;
}

.footer-dev a:hover {
  color: #b8964f;
}

/* ==========================
   BOTÃO FLUTUANTE WHATSAPP
========================== */

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
  z-index: 998;
  transition: transform .3s, box-shadow .3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
}

/* ==========================
   RESPONSIVO
========================== */

@media (max-width: 992px) {

  .services-slide {
    grid-template-columns: 1fr 1fr;
  }

  .slide-text {
    padding: 3rem 2rem 3rem 3rem;
  }

  .services-nav {
    left: 50%;
  }

  .feet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .about-image-col {
    width: 45%;
  }

  .about-text-col {
    margin-left: 22%;
    padding: 3rem 2rem 3rem 28%;
  }

  .about-img-main img {
    height: 380px;
  }

  .about-img-accent {
    width: 90px;
    height: 90px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }

  .professional-img {
    width: 45%;
  }

  .professional-text {
    margin-right: 22%;
    padding: 3rem 28% 3rem 2rem;
  }

  .professional-img img {
    height: 380px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-map {
    height: 300px;
  }

  .footer-nav {
    gap: 1.5rem;
  }

}

@media (max-width: 768px) {

  .header.scrolled .logo img {
    width: 45px;
    opacity: .85;
  }

  .nav-container {
    justify-content: flex-end;
  }

  .logo {
    display: none;
  }

  .header.scrolled .logo {
    display: block;
    margin-right: auto;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

.mobile-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--dourado);
    background: #f3e9dd00;
    backdrop-filter: blur(6px);
    cursor: pointer;
    color: var(--dourado);
    transition: var(--transition);
  }

  .mobile-menu svg {
    display: block;
  }

  .mobile-menu::before {
    display: none;
  }

  .mobile-menu span,
  .mobile-menu::after {
    display: none;
  }

  .about {
    padding: 60px 0 80px;
  }

  .about-image-col {
    position: relative;
    width: 100%;
    top: auto;
    transform: none;
  }

  .about-img-main img {
    height: 280px;
  }

  .about-text-col {
    margin-left: 0;
    padding: 2.5rem 1.5rem;
    min-height: auto;
    text-align: center;
    align-items: center;
  }

  .about-value {
    text-align: left;
  }

  .about-img-accent {
    top: -20px;
    right: 16px;
    width: 80px;
    height: 80px;
  }

  .benefits-pillars {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }

  .benefits-bar {
    flex-direction: column;
  }

  .bar-segment {
    padding: 1rem;
  }

  .services {
    background: #f9f7f4;
    padding: 60px 0 0;
  }

  .services-carousel {
    min-height: auto;
    width: min(1200px, 92%);
    margin: 0 auto;
  }

  .services-slide {
    grid-template-columns: 1fr;
    min-height: auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  }

  .services-slide--headspa {
    background: #fff;
  }

  .slide-images {
    order: 1;
    padding: .5rem .5rem 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .slide-img-main {
    height: 220px;
    width: 100%;
    border-radius: 16px;
    transition: transform .6s ease;
  }

  .slide-img-secondary {
    display: none;
  }

  .slide-text {
    order: 2;
    padding: 1.2rem 1.5rem 1.5rem;
    text-align: center;
    align-items: center;
  }

  .slide-label {
    color: var(--areia);
    margin-bottom: .6rem;
  }

  .services-slide--headspa .slide-label {
    color: var(--areia);
  }

  .slide-text h2 {
    font-size: 1.3rem;
    color: var(--texto);
    margin-bottom: .6rem;
  }

  .slide-text p {
    max-width: 100%;
    font-size: .85rem;
    line-height: 1.65;
    color: #6b6b7b;
    margin-bottom: 1rem;
  }

  .service-badge {
    align-self: center;
    margin-bottom: .8rem;
    background: rgba(63, 61, 86, .65);
    backdrop-filter: blur(8px);
    font-size: .65rem;
    padding: .3rem .7rem;
  }

  .services-slide--headspa .service-badge {
    background: rgba(63, 61, 86, .65);
    color: white;
  }

  .service-corporate {
    color: #6b6b7b;
    font-size: .75rem;
    margin-bottom: .8rem;
  }

  .btn-service {
    align-self: center;
    background: var(--dourado);
    color: white;
    border: none;
    padding: 10px 22px;
    font-size: .85rem;
  }

  .btn-service:hover {
    background: var(--dourado);
  }

  .btn-service--corporate {
    background: var(--dourado);
  }

  .slide-buttons {
    gap: .6rem;
  }

  .services-nav {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    justify-content: center;
    padding: 1.5rem 0 2.5rem;
    background: transparent;
  }

  .services-dot {
    background: rgba(63, 61, 86, .2);
  }

  .services-dot:hover {
    background: rgba(63, 61, 86, .4);
  }

  .benefits-bar {
    display: none;
  }

  .feet-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0 4% .5rem;
    scrollbar-width: none;
    align-items: flex-start;
    cursor: grab;
  }

  .feet-grid::-webkit-scrollbar {
    display: none;
  }

  .feet-card {
    width: 82%;
    min-width: 82%;
    flex-shrink: 0;
    scroll-snap-align: center;
    border-radius: 20px;
  }

  .feet-card-img {
    padding: .5rem .5rem 0;
  }

  .feet-card-img img {
    height: 170px;
    border-radius: 16px;
  }

  .feet-card-tag {
    font-size: .65rem;
    padding: .3rem .7rem;
    top: 1rem;
    left: 1rem;
  }

  .feet-card-body {
    padding: .8rem 1rem 1rem;
    flex-grow: 0;
    text-align: center;
    align-items: center;
  }

  .feet-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: .4rem;
  }

  .feet-card-body p {
    font-size: .78rem;
    line-height: 1.55;
    margin-bottom: .8rem;
  }

  .feet-card-footer {
    margin-top: 0;
    justify-content: center;
  }

  .feet-card-btn {
    padding: 8px 18px;
    font-size: .78rem;
  }

  .feet-nav {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.5rem;
  }

  .feet-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    padding: 0;
    transition: .3s ease;
  }

  .feet-dot.active {
    background: var(--dourado);
    width: 28px;
    border-radius: 999px;
  }

  .professional {
    padding: 60px 0 80px;
  }

  .professional-layout {
    display: flex;
    flex-direction: column;
  }

  .professional-img {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    transform: none;
    order: 2;
  }

  .professional-img img {
    height: 300px;
  }

  .professional-text {
    margin-right: 0;
    padding: 2.5rem 1.5rem;
    min-height: auto;
    text-align: center;
    align-items: center;
    order: 1;
  }

  .cta {
    padding: 60px 0;
  }

  .contact {
    padding: 60px 0;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    text-align: center;
  }

  .contact-details {
    align-items: center;
  }

  .contact-map {
    height: 250px;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .back-to-top {
    bottom: 82px;
    right: 21px;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .section {
    padding: 80px 0;
  }

  .cta h2 {
    font-size: 2.5rem;
  }

}

/* ========================================
   ANIMAÇÕES DE ENTRADA
======================================== */

.hidden {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity .9s ease,
    transform .9s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   HEADER SCROLL
======================================== */

.header.scrolled {
  background: rgba(255,255,255,.92);

  backdrop-filter: blur(24px);

  box-shadow:
    0 10px 30px rgba(0,0,0,.08);

  padding: 12px 0;
}

.header.scrolled .logo img {
  width: 120px;
}

/* ========================================
   MENU MOBILE
======================================== */

@media (max-width:768px) {

  .header.menu-open {
    background: white;
    height: auto;
  }

  .header.menu-open .nav-container {
    flex-wrap: wrap;
    gap: 0;
  }

  .header.menu-open .nav-left,
  .header.menu-open .nav-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    gap: .8rem;
    padding: .5rem 0;
  }

  .header.menu-open .logo {
    display: none;
  }

  .header.menu-open .mobile-menu {
    display: none;
  }

}

/* CARDS PREMIUM removido — estilos integrados na seção Planos */

/* ========================================
   HERO RESPONSIVO
======================================== */

@media (max-width: 768px) {

  .hero {
      padding-top: 0;
      background: #f5f3ef;
  }

  .header {
      background: transparent;
      backdrop-filter: none;
      border-bottom: none;
  }

  .header.scrolled {
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(24px);
      border-bottom: 1px solid rgba(255,255,255,.2);
  }

  .header.scrolled .logo img {
      width: 80px;
  }

  .hero-wrapper {
      padding: 0;
  }

  .hero-image-card {
      min-height: 70vh;
      border-radius: 0;
  }

  /* --- Tipografia editorial --- */
  .hero h1 {
      font-size: clamp(2.6rem, 10vw, 4rem);
      letter-spacing: .02em;
  }

  .hero p {
      font-size: .93rem;
      max-width: 340px;
  }

  /* --- Botão destaque --- */
  .hero-buttons .btn-primary {
      background: var(--dourado);
      color: #fff;
      padding: 14px 32px;
      font-size: .9rem;
      box-shadow: 0 6px 20px rgba(199, 167, 108, .35);
  }

  .hero-buttons .btn-primary:hover {
      background: #b89550;
  }

  /* --- Decorações SVG --- */
  .hero-deco {
      height: 35%;
      opacity: .7;
  }

  .hero-deco--left {
      left: 4%;
      top: 6%;
  }

  .hero-deco--right {
      right: 4%;
      bottom: 8%;
      top: auto;
  }

  /* --- Setas e wave --- */
  .hero-arrow {
      width: 36px;
      height: 36px;
      bottom: 20px;
  }

  .hero-arrow--left {
      left: 16px;
  }

  .hero-arrow--right {
      right: 16px;
  }

  .hero-wave svg {
      height: 80px;
  }

}

@keyframes premiumFloat {
    from {
        transform: scale(1) translateY(0);
    }

    to {
        transform: scale(1.08) translateY(-10px);
    }
}

/* ========================================
   BOTÃO VOLTAR AO TOPO
======================================== */

.back-to-top {

  position: fixed;

  bottom: 100px;
  right: 28px;

  width: 48px;
  height: 48px;

  border: none;

  border-radius: 50%;

  background: var(--lavanda);

  color: white;

  font-size: 1.3rem;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transition: .4s ease;

  z-index: 999;
}

.back-to-top.active {

  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {

  transform:
    translateY(-5px);

  box-shadow:
    0 10px 25px rgba(134,133,173,.35);
}

/* ========================================
   IMAGENS
======================================== */

img {

  display: block;

  max-width: 100%;
}


/* ========================================
   LOADING
======================================== */

body {

  opacity: 0;

  transition: opacity .8s ease;
}

body.loaded {

  opacity: 1;
}

/* ========================================
   SCROLLBAR ELEGANTE
======================================== */

::-webkit-scrollbar {

  width: 10px;
}

::-webkit-scrollbar-track {

  background: #efedf7;
}

::-webkit-scrollbar-thumb {

  background: var(--lavanda);

  border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {

  background: #73729d;
}

/* ========================================
   SELEÇÃO DE TEXTO
======================================== */

::selection {

  background: var(--lavanda);

  color: white;
}

/* ========================================
   MICROINTERAÇÕES
======================================== */

a,
button {
  transition: color .3s ease, background .3s ease, box-shadow .3s ease;
}

