:root {
  --color-bg: #f5f3ee;
  --color-bg-light: #faf7f2;
  --color-bg-soft: #f0ebe2;
  --color-gold: #b98b43;
  --color-gold-soft: #d7b26a;
  --color-dark: #22211f;
  --color-text: #4b463d;
  --color-white: #ffffff;
  --color-border: rgba(0, 0, 0, 0.06);

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;

  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.08);

  --container-width: 1120px;

  --transition-fast: 0.2s ease;
}

/* RESET SIMPLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea {
  font-family: inherit;
}

/* CONTAINER */
.container {
  width: min(var(--container-width), 100% - 32px);
  margin-inline: auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(245, 243, 238, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  gap: 24px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__logo-img {
  height: 48px;
  width: 48px;
  border-radius: 999px;
  object-fit: contain;
}

.header__brand-name {
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-dark);
}

.header__brand-name strong {
  color: var(--color-gold);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(34, 33, 31, 0.78);
  position: relative;
  padding-block: 4px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-soft));
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.nav__link:hover::after {
  width: 100%;
}

/* MENU MOBILE */
.header__menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.header__menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__menu-btn span + span {
  margin-top: 4px;
}

/* BOTÕES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-soft));
  color: var(--color-white);
  box-shadow: 0 16px 35px rgba(185, 139, 67, 0.35);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 45px rgba(185, 139, 67, 0.45);
}

.btn--outline {
  border: 1px solid rgba(185, 139, 67, 0.6);
  background: rgba(255, 255, 255, 0.4);
  color: var(--color-gold);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.85);
}

.btn--full {
  width: 100%;
}

/* BADGE */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
}

.badge--gold {
  background: rgba(185, 139, 67, 0.08);
  color: var(--color-gold);
  border: 1px solid rgba(185, 139, 67, 0.22);
}

/* HERO */
.hero {
  padding-block: 56px 40px;
}

.hero__container {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero__title {
  margin: 18px 0 10px;
  font-size: 2.4rem;
  line-height: 1.1;
  color: var(--color-dark);
}

.hero__title span {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 8px;
  color: rgba(34, 33, 31, 0.8);
}

.hero__subtitle {
  margin: 0 0 16px;
  font-size: 0.98rem;
  color: rgba(75, 70, 61, 0.9);
}

.hero__highlights {
  margin: 0 0 18px;
  padding-left: 0;
}

.hero__highlights li {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.hero__note {
  font-size: 0.85rem;
  color: rgba(75, 70, 61, 0.85);
}

.hero__media {
  position: relative;
  display: grid;
  /*grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;*/
    max-width: 480px;
    margin-inline: auto;
  
}

.hero__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-bg-light);
}

.hero__photo--main img {
  /*height: 100%;
  width: 100%;*/
  object-fit: cover;
}

.hero__photo--stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

/* SEÇÕES GENÉRICAS */
.section {
  padding-block: 56px;
}

.section--light {
  background: var(--color-bg-light);
}

.section--soft {
  background: var(--color-bg-soft);
}

.section__header {
  text-align: left;
  margin-bottom: 26px;
}

.section__title {
  font-size: 1.6rem;
  color: var(--color-dark);
  margin: 0 0 6px;
}

.section__subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(75, 70, 61, 0.85);
  max-width: 540px;
}

/* PASSO A PASSO */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.step {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 16px 16px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.step__icon {
  font-size: 1.4rem;
  display: inline-flex;
  margin-bottom: 8px;
}

.step__title {
  font-size: 1rem;
  margin: 0 0 6px;
  color: var(--color-dark);
}

.step__text {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(75, 70, 61, 0.9);
}

/* PRICING */
.pricing {
  margin-top: 24px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card__header {
  margin-bottom: 12px;
}

.card__title {
  font-size: 1.1rem;
  margin: 0 0 4px;
  color: var(--color-dark);
}

.card__tagline {
  font-size: 0.85rem;
  margin: 0;
  color: rgba(75, 70, 61, 0.85);
}

.card__price {
  margin-bottom: 12px;
}

.card__price-main {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-gold);
}

.card__price-note {
  font-size: 0.85rem;
  color: rgba(75, 70, 61, 0.85);
}

.card__list {
  flex: 1;
  margin-bottom: 14px;
}

.card__list li {
  font-size: 0.88rem;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.card__list li::before {
  content: "•";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--color-gold);
}

.pricing__card--highlight {
  outline: 1px solid rgba(185, 139, 67, 0.4);
}

.pricing__note {
  margin-top: 10px;
  font-size: 0.8rem;
  color: rgba(75, 70, 61, 0.75);
}

/* GALERIA */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /*gap: 14px;*/
  margin-top: 20px;
}

.gallery__item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery__item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.gallery__item figcaption {
  padding: 10px 12px 12px;
  font-size: 0.85rem;
  color: rgba(75, 70, 61, 0.9);
}

/* ESPAÇO */
.space {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 26px;
}

.space__text p {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.space__list {
  margin-top: 10px;
}

.space__list li {
  font-size: 0.9rem;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.space__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
}

.space__media {
  display: grid;
  grid-template-rows: 1.3fr 0.8fr;
  gap: 10px;
}

.space__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* SEGURANÇA */
.safety {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 24px;
}

.safety__text p {
  font-size: 0.95rem;
  margin: 0 0 10px;
}

.safety__subtitle {
  font-size: 1rem;
  margin: 0 0 8px;
  color: var(--color-dark);
}

.safety__bullets ul {
  padding-left: 0;
}

.safety__bullets li {
  font-size: 0.9rem;
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
}

.safety__bullets li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  top: -1px;
  font-size: 0.8rem;
  color: var(--color-gold);
}

/* DEPOIMENTOS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.testimonial {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.testimonial__text {
  font-size: 0.9rem;
  margin: 0 0 10px;
  color: rgba(75, 70, 61, 0.9);
}

.testimonial__author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gold);
}

/* FAQ */
.faq {
  margin-top: 20px;
}

.faq__item {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
  margin-bottom: 10px;
  padding: 10px 14px;
}

.faq__item[open] {
  border-color: rgba(185, 139, 67, 0.3);
}

.faq__question {
  list-style: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
}

.faq__answer {
  font-size: 0.9rem;
  margin: 8px 0 4px;
  color: rgba(75, 70, 61, 0.9);
}

/* ALERTAS FORM */
.alert {
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.alert--success {
  background: rgba(39, 174, 96, 0.06);
  border: 1px solid rgba(39, 174, 96, 0.3);
  color: #1e8552;
}

.alert--error {
  background: rgba(231, 76, 60, 0.06);
  border: 1px solid rgba(231, 76, 60, 0.3);
  color: #b33b2e;
}

/* CONTATO / FORM */
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 20px;
}

.form {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.form__group {
  margin-bottom: 12px;
}

.form__group label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  color: rgba(34, 33, 31, 0.9);
}

.form__group input,
.form__group textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  padding: 8px 12px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background-color var(--transition-fast);
  background-color: rgba(255, 255, 255, 0.8);
}

.form__group textarea {
  border-radius: 12px;
  resize: vertical;
  min-height: 90px;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: rgba(185, 139, 67, 0.6);
  box-shadow: 0 0 0 1px rgba(185, 139, 67, 0.14);
  background-color: #fff;
}

.contact__note {
  font-size: 0.85rem;
  margin-top: 8px;
  color: rgba(75, 70, 61, 0.9);
}

.contact__note a {
  color: var(--color-gold);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__block h3 {
  font-size: 0.95rem;
  margin: 0 0 4px;
  color: var(--color-dark);
}

.contact__block p {
  margin: 0;
  font-size: 0.9rem;
}

.contact__block a {
  color: var(--color-gold);
}

.contact__map {
  margin-top: 6px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact__map iframe {
  width: 100%;
  height: 220px;
  border: 0;
}

/* FOOTER */
.footer {
  padding-block: 24px 18px;
  background: #181715;
  color: rgba(255, 255, 255, 0.85);
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  height: 42px;
  width: 42px;
  border-radius: 999px;
  object-fit: cover;
}

.footer__text p {
  margin: 0;
  font-size: 0.85rem;
}

.footer__text a {
  color: var(--color-gold-soft);
}

.footer__copy p {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-soft));
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 40;
}

.back-to-top.is-visible {
  display: flex;
}

/* SCROLL MARGIN PARA ÂNCORAS */
section {
  scroll-margin-top: 88px;
}

/* RESPONSIVIDADE */
@media (max-width: 960px) {
  .hero__container {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
  }



  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .space,
  .safety,
  .contact {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: absolute;
    inset-inline: 0;
    top: 62px;
    background: rgba(245, 243, 238, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 10px 16px 12px;
    display: none;
    flex-direction: column;
    gap: 6px;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__menu-btn {
    display: inline-flex;
    flex-direction: column;
  }

  .steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing__grid {
    grid-template-columns: minmax(0, 1fr);
  }



  .testimonials {
    grid-template-columns: minmax(0, 1fr);
  }

  .section {
    padding-block: 40px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .header__brand-name {
    display: none;
  }

  .footer__brand {
    flex-direction: column;
    align-items: flex-start;
  }
}












  :root{
    --gold:#B98B43;               /* dourado principal */
    --gold-2:#d7b26a;             /* dourado claro */
    --gold-3:#8c6a33;             /* dourado escuro */
    --ink:#1b1b1f;                /* texto primário */
    --muted:#5b5b66;              /* texto secundário */
    --bg:#fbfaf8;                 /* fundo claro */
    --card:#ffffff;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:18px;
  }

  *{
    box-sizing:border-box;
  }

  html,body{
    margin:0;
    padding:0;
    font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
    color:var(--ink);
    background:var(--bg);
  }

  a{
    color:inherit;
    text-decoration:none;
  }

  .container{
    width:min(1120px,92vw);
    margin:0 auto;
  }

  .section-title{
    font-size:clamp(1.6rem,1.2rem + 1.2vw,2.2rem);
    margin:0 0 .6rem;
    font-weight:900;
  }

  .section-sub{
    color:var(--muted);
    margin:0 0 2rem;
  }

  .gold-text{
    background:linear-gradient(135deg,var(--gold-2),var(--gold));
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    background:linear-gradient(135deg,var(--gold) 0%,var(--gold-2) 55%,var(--gold) 100%);
    color:#111;
    padding:.95rem 1.2rem;
    border-radius:999px;
    font-weight:700;
    box-shadow:var(--shadow);
    border:1px solid rgba(255,255,255,.35);
    transition:transform .2s ease,filter .2s ease;
  }

  .btn:hover{
    transform:translateY(-2px);
    filter:brightness(1.02);
  }

  /* Club */
  #club{
    padding:4rem 0;
  }

  .tiers{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1.2rem;
  }

  .tier{
    background:linear-gradient(180deg,#f1f1f1, #f9f6f0);
    border:1px solid #efe9dd;
    border-radius:var(--radius);
    padding:1.4rem;
    position:relative;
    box-shadow:var(--shadow);
  }

  .ribbon{
    position:absolute;
    top:14px;
    right:-6px;
    background:linear-gradient(135deg,var(--gold-2),var(--gold));
    color:#111;
    padding:.35rem .6rem;
    border-radius:999px;
    font-size:.75rem;
    border:1px solid rgba(255,255,255,.4);
  }

  .tier ul{
    margin:0;
    padding-left:1.2rem;
    color:#3b3b44;
  }

  .price{
    font-weight:900;
    font-size:1.8rem;
  }

  /* Responsivo */
  @media (max-width:960px){
    .tiers{
      grid-template-columns:1fr;
    }
  }
  
  
  /* =========================================
   HEADER DARK & GOLD (PREMIUM THEME)
   ========================================= */

/* Fundo Escuro com Blur (Efeito Vidro Fumê) */
.header {
  background: rgba(10, 10, 10, 0.90) !important; /* Quase preto, leve transparência */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important; /* Borda Dourada sutil */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5); /* Sombra mais pesada para profundidade */
  transition: all 0.3s ease;
}

/* Nome da Marca (BRONZE ICON) */
.header__brand-name {
  color: #ffffff !important; /* Texto BRONZE vira branco */
}
.header__brand-name strong {
  color: #d4af37 !important; /* ICON continua Dourado */
  text-shadow: 0 0 15px rgba(212, 175, 55, 0.4); /* Brilho no dourado */
}

/* Links de Navegação */
.nav__link {
  color: rgba(255, 255, 255, 0.8) !important; /* Branco levemente cinza */
  font-weight: 400 !important;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: #d4af37 !important; /* Dourado ao passar o mouse */
}

/* Linha dourada abaixo do link (Hover) */
.nav__link::after {
  background: linear-gradient(90deg, #d4af37, #f1c40f) !important;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* Botão WhatsApp no Header */
.header .btn--outline {
  border-color: #d4af37 !important;
  color: #d4af37 !important;
  background: transparent !important;
}

.header .btn--outline:hover {
  background: #d4af37 !important;
  color: #000000 !important; /* Texto preto no fundo dourado para leitura */
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4) !important;
}

/* Ícone do Menu Mobile (Hamburguer) */
.header__menu-btn span {
  background: #d4af37 !important; /* Barrinhas douradas */
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* --- MENU MOBILE ABERTO (Fundo Escuro) --- */
@media (max-width: 768px) {
  .header__nav {
    background: #0f0f0f !important; /* Fundo preto sólido no mobile */
    border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  }
  
  .nav__link {
    color: #fff !important;
    border-bottom: 1px solid rgba(255,255,255,0.05); /* Divisória sutil entre links */
  }
}

    /* --- CONFIGURAÇÃO DO CARROSSEL HERO (4:3) --- */
    .hero__media {
      width: 100%;
      /* Trava a largura máxima para que a altura (baseada no 4x3) não fique gigante.
         Ajuste este valor (ex: 400px, 500px) se quiser o carrossel maior ou menor.
      */
      max-width: 450px; 
      margin: 0 auto; /* Centraliza se sobrar espaço */
    }

    .hero__media .swiper {
      width: 100%;
      /* AQUI VOCÊ AJUSTA A PROPORÇÃO.
         4 / 3 = Padrão solicitado (mais quadrado)
         16 / 9 = Widescreen (mais retangular)
         1 / 1 = Quadrado perfeito
      */
      aspect-ratio: 4 / 3;
      height: auto; /* A altura será calculada automaticamente pela proporção */
      border-radius: 12px;
    }

    /* Garante que a imagem preencha o espaço sem distorcer */
    .swiper-slide img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; 
      border-radius: 12px;
    }
    
    /* Ajuste para telas menores (Mobile) */
    @media (max-width: 991px) {
      .hero__media {
        max-width: 100%; /* No mobile pode ocupar a largura total */
        margin-top: 2rem;
      }
    }

    /* --- OUTROS ESTILOS (Mantidos da versão anterior) --- */
    
    /* Carrossel da Seção Espaço (mantendo proporção mais livre ou fixa se preferir) */
    .space__media .swiper { 
      width: 100%;
      min-height: 350px; /* Altura mínima fixa para consistência */
      border-radius: 12px;
    }

    /* Como Funciona */
    .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
    .step { 
      background: #fff; border-radius: 10px; overflow: hidden; 
      box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s ease;
    }
    .step:hover { transform: translateY(-5px); }
    .step__image-container { width: 100%; height: 180px; overflow: hidden; }
    .step__image-container img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px;}
    .step__content { padding: 0.5rem; }
    .step__title { margin-top: 0; font-size: 1.2rem; color: #333; }

    /* Resultados */
    .gallery__grid { gap: 2rem; }
    .gallery__item {
      background: #fff; border-radius: 12px; overflow: hidden;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08); margin: 0; transition: all 0.3s ease;
    }
    .gallery__item:hover { transform: scale(1.02); box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
    .gallery__item img { width: 100%; height: 300px; object-fit: cover; display: block; }
    .gallery__item figcaption { padding: 1rem; font-size: 0.95rem; color: #555; text-align: center; border-top: 1px solid #eee; background: #fff; }

    /* Club */
    .club-intro { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; align-items: center; }
    .club-photo img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(189, 154, 19, 0.2); max-height: 400px; object-fit: cover; }
    @media (min-width: 992px) {
      .club-intro { grid-template-columns: 1fr 1fr; }
      .club-photo { order: 2; }
      .club-text { order: 1; }
     }
     
     #club{
  padding:4rem 0;
  background:linear-gradient(
      160deg,
      #0c0c0c 0%,
      #15110d 35%,
      #2b1f10 65%,
      #b98b43 120%
  );
  background-attachment: fixed;
}

/* Títulos dentro do fundo escuro */
#club .section-title{
  color:#fff;
}

#club .section-sub{
  color:rgba(255,255,255,0.75);
}

/* GRID */
.tiers{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.4rem;
}

/* CARD */
.tier{
  background:linear-gradient(180deg,#f1f2f8, #f4f1eb);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:22px;
  padding:1.8rem;
  position:relative;
  box-shadow:
      0 12px 28px rgba(0,0,0,0.45),
      inset 0 0 0 1px rgba(255,255,255,0.06);
  transition:transform .25s ease, box-shadow .25s ease;
}

.tier:hover{
  transform:translateY(-6px);
  box-shadow:
      0 18px 36px rgba(0,0,0,0.55),
      inset 0 0 0 1px rgba(255,255,255,0.12);
}

/* Títulos dos planos */
.tier h3{
  font-weight:900;
  font-size:1.6rem;
  color:var(--gold);
}

/* Preço */
.price{
  font-weight:900;
  font-size:2rem;
  color:#111;
  margin-bottom:.8rem;
}

/* Lista */
.tier ul{
  margin:0;
  margin-top:.6rem;
  padding-left:1.2rem;
  color:#3b3b44;
  line-height:1.55;
}

/* FITA “Mais Popular” */
.ribbon{
  position:absolute;
  top:12px;
  right:-10px;
  background:linear-gradient(135deg,#f8d878,#d0a33e);
  color:#111;
  padding:.35rem .8rem;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  border:1px solid rgba(255,255,255,0.35);
  box-shadow:0 3px 10px rgba(0,0,0,0.25);
}

/* Botão */
.btn{
  background:linear-gradient(135deg,var(--gold),var(--gold-2));
  border:1px solid rgba(255,255,255,.4);
  color:#111;
}

.btn:hover{
  transform:translateY(-2px);
  filter:brightness(1.06);
}

/* Responsivo */
@media (max-width:960px){
  .tiers{grid-template-columns:1fr;}
}

