/* ===========================
   VARIÁVEIS & RESET
=========================== */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e8d48b;
  --gold-dark:   #a07830;
  --black:       #000000;
  --black-soft:  #0d0d0d;
  --black-card:  #111111;
  --white:       #f5f0e8;
  --gray:        #888888;
  --font-title:  'Playfair Display', serif;
  --font-body:   'Raleway', sans-serif;
  --transition:  0.3s ease;
  --radius:      8px;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.gold { color: var(--gold); }
.text-center { text-align: center; }

/* ===========================
   BOTÕES
=========================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
}

.btn--sm   { padding: 8px 18px; font-size: 0.85rem; }
.btn--full { width: 100%; text-align: center; }

/* ===========================
   AGE GATE
=========================== */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-gate.hidden { display: none; }

.age-gate__box {
  text-align: center;
  padding: 50px 40px;
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  max-width: 480px;
  width: 90%;
  background: var(--black-card);
}
.age-gate__logo { width: 180px; margin: 0 auto 25px; }
.age-gate__box h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.age-gate__box p { color: var(--gray); margin-bottom: 30px; }
.age-gate__btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   HEADER
=========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 12px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img { height: 82px; }

.site-nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-nav ul li a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
}

.site-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.site-nav ul li a:hover { color: var(--gold); }
.site-nav ul li a:hover::after { width: 100%; }

/* Hamburguer */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 25px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
  padding-top: 80px;
}


.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.9) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 0;
}

.hero__sub {
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
}

.hero__title {
  font-family: var(--font-title);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title span { color: var(--gold); }

.hero__desc {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.8);
  max-width: 600px;
  margin: 0 auto 35px;
}

.hero__btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   SEÇÃO DE TÍTULO
=========================== */
.section-title {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--gold-light);
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 15px auto 0;
}

/* ===========================
   FEATURES (DIFERENCIAIS)
=========================== */
.features {
  padding: 80px 0;
  background: var(--black-soft);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.feature-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.15);
}

.feature-card__icon { font-size: 2.2rem; display: block; margin-bottom: 15px; }

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.feature-card p { color: var(--gray); font-size: 0.95rem; }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1008 100%);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.cta-section__inner { text-align: center; }

.cta-section h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold-light);
  margin-bottom: 15px;
}

.cta-section p { color: var(--gray); margin-bottom: 30px; font-size: 1.1rem; }

/* ===========================
   PAGE HERO (páginas internas)
=========================== */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(to bottom, #0d0d0d, #000);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.page-title {
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--gold-light);
}

.page-sub {
  color: var(--gray);
  margin-top: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

/* ===========================
   CONTENT SECTION
=========================== */
.content-section { padding: 80px 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-text h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.content-text p { color: rgba(245,240,232,0.8); margin-bottom: 20px; }

.check-list li {
  padding: 8px 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.check-list li::before { color: var(--gold); margin-right: 8px; }

.content-image img {
  border-radius: var(--radius);
  border: 1px solid rgba(201,168,76,0.3);
}

/* ===========================
   FORMULÁRIOS
=========================== */
.form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.form-wrap > p { margin-bottom: 30px; color: var(--gray); }

.form { display: flex; flex-direction: column; gap: 20px; }

.form__group { display: flex; flex-direction: column; gap: 6px; }

.form__group label {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.form__group input,
.form__group textarea,
.form__group select {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  color: var(--white);
  padding: 12px 15px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--gray); }

/* ===========================
   CONTATO GRID
=========================== */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contato-info h2,
.contato-form h2 {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 25px;
}

.info-list li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
  line-height: 1.8;
}

.info-list li small { color: var(--gray); font-size: 0.85rem; }

/* ===========================
   GIRLS GRID
=========================== */
.girls__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.girl-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.girl-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.girl-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.girl-card__info {
  padding: 20px;
  text-align: center;
}

.girl-card__info h3 {
  font-family: var(--font-title);
  color: var(--gold-light);
  margin-bottom: 5px;
}

.girl-card__info p { color: var(--gray); font-size: 0.9rem; }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: #0a0a0a;
  color: #ccc;
  font-size: 0.9rem;
  padding-top: 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.footer__logo {
  width: 140px;
  margin-bottom: 16px;
}

.footer__about-text {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.footer__whatsapp-btn:hover {
  background: #1ebe5d;
}

.footer__col-title {
  color: #c9a84c;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__links a:hover {
  color: #c9a84c;
}

.footer__address {
  font-style: normal;
  color: #aaa;
  line-height: 1.9;
}

.footer__address a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__address a:hover {
  color: #c9a84c;
}

.footer__hours p {
  color: #aaa;
  line-height: 1.9;
}

/* Google Review Badge */
.footer__google-review {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #333;
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 16px;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.3s;
}

.footer__google-review:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.footer__google-review svg {
  flex-shrink: 0;
}

.footer__google-stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* Footer Bottom */
.footer__bottom {
  border-top: 1px solid #1e1e1e;
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  font-size: 0.82rem;
  color: #666;
}
.footer__bottom-inner p {
  margin: 0;
}
.footer__bottom-link {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__bottom-link:hover {
  color: #c9a84c;
}
/* ===========================
   RESPONSIVO
=========================== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(0,0,0,0.98);
    padding: 20px;
    border-bottom: 1px solid rgba(201,168,76,0.2);
  }

  .site-nav.open { display: block; }

  .site-nav ul {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .content-grid,
  .contato-grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__logo { margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero__btns { flex-direction: column; align-items: center; }
  .age-gate__btns { flex-direction: column; }
}

/* ===========================
   GALLERY STRIP (index)
=========================== */
.gallery-strip {
  overflow: hidden;
  line-height: 0;
}
.gallery-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 220px;
}
.gallery-strip__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.gallery-strip__grid img:hover {
  filter: brightness(1);
  transform: scale(1.05);
  z-index: 1;
  position: relative;
}

/* ===========================
   BANNER MID
=========================== */
.banner-mid__img {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.banner-mid__overlay {
  background: rgba(0,0,0,0.65);
  padding: 90px 0;
  text-align: center;
}
.banner-mid__overlay h2 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold-light);
  margin-bottom: 15px;
}
.banner-mid__overlay p {
  color: rgba(245,240,232,0.75);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

/* ===========================
   PAGE HERO (com imagem BG)
=========================== */
.page-hero {
  background-size: cover;
  background-position: center;
  padding: 0;
}
.page-hero__overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.85));
  padding: 160px 0 70px;
  text-align: center;
}

/* ===========================
   CASA GALLERY
=========================== */
.casa-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.casa-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.casa-gallery__item--wide {
  grid-column: span 2;
}
.casa-gallery__item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.8);
}
.casa-gallery__item:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}
.casa-gallery__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--gold-light);
  font-family: var(--font-title);
  font-size: 1rem;
  padding: 20px 15px 12px;
}

/* content-grid reversed */
.content-grid--reverse { direction: rtl; }
.content-grid--reverse > * { direction: ltr; }

/* ===========================
   GIRLS INTRO
=========================== */
.girls-intro {
  text-align: center;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto 50px;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===========================
   GIRLS GRID
=========================== */
.girls__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.girl-card {
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.girl-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.2);
}

.girl-card__thumb {
  position: relative;
  overflow: hidden;
}
.girl-card__thumb img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.girl-card:hover .girl-card__thumb img {
  transform: scale(1.07);
}

.girl-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.girl-card:hover .girl-card__hover { opacity: 1; }
.girl-card__hover span {
  color: var(--gold-light);
  font-family: var(--font-title);
  font-size: 1rem;
  letter-spacing: 2px;
  border: 1px solid var(--gold);
  padding: 8px 18px;
  border-radius: 4px;
  background: rgba(0,0,0,0.5);
}

.girl-card__info {
  padding: 15px;
  text-align: center;
}
.girl-card__info h3 {
  font-family: var(--font-title);
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.girl-card__info p {
  color: var(--gray);
  font-size: 0.85rem;
}

/* ===========================
   LIGHTBOX
=========================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox__box {
  position: relative;
  display: flex;
  gap: 30px;
  align-items: center;
  max-width: 900px;
  width: 95%;
  background: var(--black-card);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
}

.lightbox__media {
  flex: 0 0 auto;
  width: 380px;
  max-width: 50vw;
}
.lightbox__media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.lightbox__info {
  flex: 1;
  padding: 35px 30px 35px 10px;
}
.lightbox__info h3 {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.lightbox__info #lightboxIdade {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.lightbox__info #lightboxDesc {
  color: rgba(245,240,232,0.75);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* Botão fechar */
.lightbox__close {
  position: absolute;
  top: 12px; right: 15px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 10;
  transition: transform var(--transition);
}
.lightbox__close:hover { transform: scale(1.3); }

/* Navegação prev/next */
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 2rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}
.lightbox__nav:hover { background: rgba(201,168,76,0.35); }
.lightbox__nav--prev { left: 10px; }
.lightbox__nav--next { right: 10px; }

/* ===========================
   RESPONSIVO ADICIONAL
=========================== */
@media (max-width: 768px) {
  .gallery-strip__grid { grid-template-columns: repeat(3, 1fr); height: 160px; }
  .gallery-strip__grid img:nth-child(4),
  .gallery-strip__grid img:nth-child(5) { display: none; }

  .casa-gallery { grid-template-columns: 1fr 1fr; }
  .casa-gallery__item--wide { grid-column: span 2; }

  .lightbox__box { flex-direction: column; max-height: 90vh; overflow-y: auto; }
  .lightbox__media { width: 100%; max-width: 100%; }
  .lightbox__media img { height: 300px; }
  .lightbox__info { padding: 20px; }
  .lightbox__nav--prev { left: 5px; }
  .lightbox__nav--next { right: 5px; }
}

@media (max-width: 480px) {
  .girls__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip__grid img:nth-child(3) { display: none; }
  .casa-gallery { grid-template-columns: 1fr; }
  .casa-gallery__item--wide { grid-column: span 1; }
}
/* Correção apenas para páginas sem imagem de fundo no hero */
.page-hero--no-image {
  padding-top: 200px;
}
/* ===========================
   COOKIE BANNER
=========================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.97);
  border-top: 1px solid rgba(201, 168, 76, 0.4);
  z-index: 9999;
  padding: 16px 20px;
  backdrop-filter: blur(6px);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.cookie-banner__text p {
  font-size: 0.88rem;
  color: var(--gray);
  margin: 0;
}

.cookie-banner__text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner__btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 52px;
  height: 52px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, background-color 0.2s ease;
  color: #fff;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}