/* ============================================================
   CITY PAGES — Estilos das páginas SEO local por cidade
   Quantec Pro · quantec.munay.com.br
   Complementa style.css + vsl.css para as páginas /terapia-quantica-[cidade]/
   ============================================================ */

/* ---- Reset de seções ---- */
.method-section,
.benefits-section,
.diferential-section,
.testimonials-section,
.offer-section,
.form-section,
.faq-section,
.about-section,
.pain-section {
  position: relative;
  overflow: hidden;
}

/* ============================================================
   SEÇÃO: MÉTODO / COMO FUNCIONA
   ============================================================ */
.method-section {
  padding: 80px 0;
  background: var(--bg-dark, #080a12);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

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

@media (max-width: 600px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}

.method-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  text-align: center;
}

.method-step:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}

.method-step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: rgba(201,168,76,0.18);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.method-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.25rem;
  color: #c9a84c;
  transition: background 0.3s;
}

.method-step:hover .method-step-icon {
  background: rgba(201,168,76,0.2);
}

.method-step h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f0eee8;
  margin-bottom: 10px;
}

.method-step p {
  font-size: 0.875rem;
  color: #9a97a8;
  line-height: 1.6;
}

/* ============================================================
   SEÇÃO: DOR / BLOQUEIOS
   ============================================================ */
.pain-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #080a12 0%, #0d0f1c 100%);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pain-grid { grid-template-columns: 1fr; }
}

.pain-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.3s, transform 0.3s;
}

.pain-card:hover {
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-3px);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #c9a84c;
  margin-bottom: 14px;
}

.pain-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: #f0eee8;
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 0.85rem;
  color: #9a97a8;
  line-height: 1.6;
}

.pain-conclusion {
  margin-top: 40px;
  text-align: center;
}

.conclusion-box {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 14px;
  padding: 22px 28px;
  max-width: 680px;
  text-align: left;
}

.conclusion-box i {
  color: #c9a84c;
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.conclusion-box p {
  font-size: 0.95rem;
  color: #b0adb8;
  line-height: 1.65;
}

/* ============================================================
   SEÇÃO: BENEFÍCIOS
   ============================================================ */
.benefits-section {
  padding: 80px 0;
  background: #080a12;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* Override benefit-card para cidades — usa benefit-icon inline */
.benefits-section .benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 22px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}

.benefits-section .benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #c9a84c, #2ec4a5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.benefits-section .benefit-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
}

.benefits-section .benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #c9a84c;
  margin-bottom: 16px;
  transition: background 0.3s, transform 0.3s;
}

.benefit-card:hover .benefit-icon {
  background: rgba(201,168,76,0.18);
  transform: scale(1.08);
}

.benefits-section .benefit-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f0eee8;
  margin-bottom: 10px;
}

.benefits-section .benefit-card p {
  font-size: 0.875rem;
  color: #9a97a8;
  line-height: 1.65;
}

/* ============================================================
   SEÇÃO: DIFERENCIAL
   ============================================================ */
.diferential-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0d0f1c 0%, #080a12 100%);
}

.diferential-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .diferential-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .diferential-img-col { order: 2; }
  .diferential-text-col { order: 1; }
}

.diferential-img {
  width: 100%;
  max-width: 460px;
  border-radius: 20px;
  border: 1px solid rgba(201,168,76,0.2);
  display: block;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.diferential-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.diferential-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #b0adb8;
  line-height: 1.5;
}

.diferential-list li i {
  color: #c9a84c;
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.diferential-list li strong {
  color: #f0eee8;
}

/* ============================================================
   SEÇÃO: DEPOIMENTOS — Layout elegante para cidades
   ============================================================ */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #080a12 0%, #0d0f1c 60%, #080a12 100%);
  position: relative;
}

.testimonials-slider {
  margin-top: 48px;
  position: relative;
}

/* Cards de depoimentos — estilo elegante
   Override forte: sobrescreve style.css que usa min-width e flex para a home */
.testimonials-slider .testimonial-card,
.testimonial-card {
  display: none !important;
  min-width: 0 !important;
  flex-shrink: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 20px;
  padding: 36px 40px;
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  animation: testimonialFadeIn 0.4s ease;
}

.testimonials-slider .testimonial-card.active,
.testimonial-card.active {
  display: block !important;
}

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

/* Aspas decorativas no topo */
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5rem;
  color: rgba(201,168,76,0.15);
  position: absolute;
  top: 10px;
  left: 28px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: #c9a84c;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: #c8c5d0;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9a84c, #8a6030);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #080a12;
  flex-shrink: 0;
  border: 2px solid rgba(201,168,76,0.4);
}

.testimonial-author > div:last-child strong {
  display: block;
  font-size: 1rem;
  color: #f0eee8;
  font-weight: 600;
}

.testimonial-author > div:last-child span {
  font-size: 0.85rem;
  color: #9a97a8;
}

/* Controles do slider */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: #c9a84c;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.slider-btn:hover {
  background: rgba(201,168,76,0.2);
  border-color: rgba(201,168,76,0.6);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: #c9a84c;
  transform: scale(1.3);
}

/* ============================================================
   SEÇÃO: OFERTA
   ============================================================ */
.offer-section {
  padding: 80px 0;
  background: #080a12;
}

.offer-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.offer-card {
  max-width: 620px;
  margin: 48px auto 0;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: center;
  position: relative;
}

.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, #c9a84c, #a07030);
  color: #080a12;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.offer-price-block {
  margin-bottom: 24px;
}

.offer-de {
  display: block;
  font-size: 1rem;
  color: #6b6878;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.offer-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
}

.offer-por {
  font-size: 1rem;
  color: #9a97a8;
}

.offer-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}

.offer-pix {
  font-size: 1rem;
  color: #9a97a8;
}

.offer-parcelas {
  display: block;
  font-size: 0.85rem;
  color: #9a97a8;
}

.offer-includes {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #b0adb8;
}

.offer-includes li i {
  color: #2ec4a5;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.offer-cta {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}

.offer-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #6b6878;
  margin-bottom: 20px;
}

.offer-guarantee i {
  color: #2ec4a5;
}

.offer-countdown {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  margin-top: 4px;
}

.countdown-label {
  display: block;
  font-size: 0.82rem;
  color: #9a97a8;
  margin-bottom: 12px;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 56px;
}

.countdown-unit span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}

.countdown-unit small {
  font-size: 0.65rem;
  color: #6b6878;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.countdown-sep {
  font-size: 1.4rem;
  color: #c9a84c;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 14px;
}

/* ============================================================
   SEÇÃO: FORMULÁRIO
   ============================================================ */
.form-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0d0f1c 0%, #080a12 100%);
}

.form-card {
  max-width: 620px;
  margin: 48px auto 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 560px) {
  .form-group-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  color: #9a97a8;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 14px;
  color: #f0eee8;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: rgba(201,168,76,0.5);
}

.form-group select option {
  background: #1a1c2e;
  color: #f0eee8;
}

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: #6b6878;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-privacy i {
  color: #2ec4a5;
}

/* ============================================================
   SEÇÃO: FAQ
   ============================================================ */
.faq-section {
  padding: 80px 0;
  background: #080a12;
}

.faq-grid {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item:hover {
  border-color: rgba(201,168,76,0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  color: #f0eee8;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: #c9a84c; }

.faq-icon {
  color: #c9a84c;
  font-size: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
}

.faq-answer.open { display: block; }

.faq-answer p {
  font-size: 0.9rem;
  color: #9a97a8;
  line-height: 1.7;
}

/* ============================================================
   SEÇÃO: SOBRE / QUEM SOU
   ============================================================ */
.about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0d0f1c 0%, #080a12 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.about-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-img {
  width: 100%;
  display: block;
}

.about-img-fallback {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(46,196,165,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  color: #c9a84c;
}

.about-stats {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  justify-content: center;
}

.about-stat {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #c9a84c;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  color: #9a97a8;
  margin-top: 4px;
  line-height: 1.3;
}

.about-text-col p {
  font-size: 0.95rem;
  color: #9a97a8;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ============================================================
   HEADLINE SECTION (city-specific override)
   ============================================================ */
.headline-section {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #0d0f1c 0%, #080a12 100%);
  text-align: center;
  position: relative;
}

.headline-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.headline-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-gold {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: #c9a84c;
}

.badge-emerald {
  background: rgba(46,196,165,0.1);
  border: 1px solid rgba(46,196,165,0.3);
  color: #2ec4a5;
}

.headline-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #f0eee8;
  line-height: 1.25;
  margin-bottom: 20px;
}

.headline-main em {
  font-style: italic;
  color: #c8c5d0;
}

.headline-sub {
  font-size: 1.1rem;
  color: #b0adb8;
  margin-bottom: 12px;
  line-height: 1.6;
}

.headline-detail {
  font-size: 0.95rem;
  color: #9a97a8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.desktop-only { display: none; }
@media (min-width: 900px) { .desktop-only { display: inline; } }

.headline-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero-guarantees {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  color: #9a97a8;
}

.guarantee-item i { color: #2ec4a5; }

/* ============================================================
   SECTION HEADER — shared
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 0;
}

.section-label {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.75rem;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #f0eee8;
  line-height: 1.3;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #9a97a8;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================================
   URGENCY BAR (city pages)
   ============================================================ */
.urgency-bar {
  background: linear-gradient(90deg, rgba(201,168,76,0.15), rgba(46,196,165,0.1), rgba(201,168,76,0.15));
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 10px 20px;
  text-align: center;
  font-size: 0.82rem;
  color: #c9a84c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.3px;
}

.urgency-bar i { font-size: 0.8rem; }
.urgency-bar strong { color: #f0eee8; }

/* ============================================================
   SOCIAL PROOF POPUP (city pages)
   ============================================================ */
.social-popup {
  position: fixed;
  bottom: 90px;
  left: 20px;
  z-index: 9000;
  max-width: 300px;
  display: none;
  animation: slideInLeft 0.4s ease;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.social-popup.visible { display: block; }

.social-popup-inner {
  background: rgba(13,15,28,0.95);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.social-popup-avatar {
  font-size: 2rem;
  color: #c9a84c;
  flex-shrink: 0;
}

.social-popup-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.social-popup-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #f0eee8;
}

.social-popup-action {
  font-size: 0.8rem;
  color: #9a97a8;
}

.social-popup-time {
  font-size: 0.72rem;
  color: #6b6878;
}

.social-popup-close {
  background: none;
  border: none;
  color: #6b6878;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 2px;
  flex-shrink: 0;
}

/* ============================================================
   WhatsApp Float
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

.whatsapp-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-in-out infinite;
}

@keyframes waPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

/* ============================================================
   FOOTER (city pages)
   ============================================================ */
.site-footer {
  background: #05060d;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.footer-logo .logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9a84c;
  font-size: 0.9rem;
}

.footer-logo span:last-child {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  color: #f0eee8;
}

.footer-logo strong { color: #c9a84c; }

.footer-desc {
  font-size: 0.85rem;
  color: #6b6878;
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #2ec4a5;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: #c9a84c; }

.footer-nav h4,
.footer-services h4,
.footer-cta h4 {
  font-size: 0.82rem;
  color: #c9a84c;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-nav ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-nav ul li a,
.footer-services ul li a {
  font-size: 0.85rem;
  color: #6b6878;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav ul li a:hover,
.footer-services ul li a:hover {
  color: #c9a84c;
}

.footer-cta p {
  font-size: 0.83rem;
  color: #6b6878;
  line-height: 1.55;
  margin-bottom: 14px;
}

.footer-whatsapp-btn {
  margin-bottom: 12px;
}

.footer-admin-link {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  color: #3a3848;
  text-decoration: none;
  margin-top: 8px;
  transition: color 0.2s;
}

.footer-admin-link:hover { color: #6b6878; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #3a3848;
  margin-bottom: 6px;
}

.footer-disclaimer {
  font-size: 0.72rem !important;
  color: #2e2c3a !important;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   BUTTONS (city pages — override)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn:hover { opacity: 0.9; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: linear-gradient(135deg, #c9a84c, #a07030);
  color: #080a12;
  box-shadow: 0 4px 16px rgba(201,168,76,0.25);
}

.btn-gold:hover {
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.5);
  color: #c9a84c;
}

.btn-outline:hover {
  background: rgba(201,168,76,0.08);
}

.btn-large {
  padding: 14px 28px;
  font-size: 1rem;
}

.btn-xlarge {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-pulse {
  animation: btnPulse 2.5s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(201,168,76,0.25); }
  50% { box-shadow: 0 6px 32px rgba(201,168,76,0.5); }
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TEXT UTILITIES
   ============================================================ */
.text-gold { color: #c9a84c; }
.text-emerald { color: #2ec4a5; }
