/* ============================================
   PORTAL DOS ANJOS — CSS COMPLETO
   Design: Celestial Noir — Art Deco Esotérico
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --dark-bg: #0A0A0F;
  --dark-card: #0D0D12;
  --ivory: #F5F0E8;
  --green-whatsapp: #25D366;
  --green-whatsapp-hover: #1DA851;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-subtitle: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark-bg);
  color: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* --- GOLD GRADIENT TEXT --- */
.text-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  transition: all 0.5s ease;
  padding: 1.25rem 0;
}
.header.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.75rem 0;
}
.header .container { display: flex; align-items: center; justify-content: space-between; }

.header-logo { display: flex; align-items: center; gap: 0.5rem; }
.header-logo img { width: 36px; height: 36px; object-fit: contain; }
.header-logo-text { display: flex; flex-direction: column; }
.header-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.header-logo-subtitle {
  font-size: 0.625rem;
  color: rgba(201, 168, 76, 0.6);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }
.nav-desktop a, .nav-desktop button {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  font-family: var(--font-body);
}
.nav-desktop a:hover, .nav-desktop button:hover { color: var(--gold); }

.header-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-whatsapp);
  color: #fff;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}
@media (min-width: 1024px) { .header-cta { display: flex; } }
.header-cta:hover {
  background: var(--green-whatsapp-hover);
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.mobile-toggle { display: block; color: var(--gold); padding: 0.5rem; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }
.mobile-toggle svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu nav { padding: 1.5rem 1rem; display: flex; flex-direction: column; gap: 0; }
.mobile-menu a, .mobile-menu button {
  display: block;
  color: rgba(245, 240, 232, 0.8);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  transition: color 0.3s;
  text-align: left;
  width: 100%;
  font-family: var(--font-body);
}
.mobile-menu a:hover, .mobile-menu button:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--green-whatsapp);
  color: #fff;
  padding: 0.875rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.75rem;
  border-bottom: none;
  text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,15,0.4), rgba(10,10,15,0.2) 50%, rgba(10,10,15,1));
}
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 6rem 1rem 4rem;
}
.hero-subtitle {
  color: rgba(201, 168, 76, 0.8);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}
@media (min-width: 640px) { .hero-subtitle { font-size: 0.875rem; } }
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .hero h1 { font-size: 3.25rem; } }
@media (min-width: 768px) { .hero h1 { font-size: 4rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero h1 .italic {
  font-style: italic;
}
.hero-desc {
  color: rgba(245, 240, 232, 0.7);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
@media (min-width: 640px) { .hero-desc { font-size: 1.125rem; } }
.hero-banner-text {
  margin-bottom: 2rem;
}
.hero-banner-text p:first-child {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
@media (min-width: 640px) { .hero-banner-text p:first-child { font-size: 1rem; } }
.hero-banner-text p:last-child {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; justify-content: center; } }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green-whatsapp);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-whatsapp:hover {
  background: var(--green-whatsapp-hover);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
  transform: scale(1.05);
}
.btn-whatsapp svg { width: 20px; height: 20px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: var(--gold);
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: rgba(201, 168, 76, 0.7);
  font-size: 0.75rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .trust-badges { font-size: 0.875rem; } }
.trust-badges span { display: flex; align-items: center; gap: 0.375rem; }
.trust-badges svg { width: 16px; height: 16px; }

.scroll-indicator {
  color: rgba(201, 168, 76, 0.4);
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 24px; height: 24px; margin: 0 auto; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about { padding: 5rem 0; }
@media (min-width: 1024px) { .about { padding: 7rem 0; } }
.about-label {
  text-align: center;
  color: rgba(201, 168, 76, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.about-image-wrapper {
  position: relative;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .about-image-wrapper { max-width: none; } }
.about-image-frame {
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 0.5rem;
}
.about-image-frame img { width: 100%; }
.about-corner-tl {
  position: absolute;
  top: -12px; left: -12px;
  width: 32px; height: 32px;
  border-top: 2px solid rgba(201, 168, 76, 0.4);
  border-left: 2px solid rgba(201, 168, 76, 0.4);
}
.about-corner-br {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 32px; height: 32px;
  border-bottom: 2px solid rgba(201, 168, 76, 0.4);
  border-right: 2px solid rgba(201, 168, 76, 0.4);
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .about-text h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .about-text h2 { font-size: 3rem; } }
.about-text .about-title-sub {
  color: rgba(201, 168, 76, 0.6);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.about-text p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  text-align: center;
}
.about-stats .stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 640px) { .about-stats .stat-number { font-size: 1.875rem; } }
.about-stats .stat-label {
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  position: relative;
  padding: 5rem 0;
}
@media (min-width: 1024px) { .services { padding: 7rem 0; } }
.services-bg {
  position: absolute;
  inset: 0;
}
.services-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.services-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.8);
}
.services .container { position: relative; z-index: 10; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  color: rgba(201, 168, 76, 0.6);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 640px) { .section-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  position: relative;
  background: rgba(13, 13, 18, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 1.5rem;
  transition: all 0.5s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card:hover { border-color: rgba(201, 168, 76, 0.4); }
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0), transparent);
  transition: all 0.5s;
}
.service-card:hover::before {
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.6), transparent);
}
.service-icon {
  width: 48px; height: 48px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: border-color 0.3s;
}
.service-card:hover .service-icon { border-color: rgba(201, 168, 76, 0.6); }
.service-icon svg { width: 20px; height: 20px; color: var(--gold); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--ivory);
}
.service-card p {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
}

.section-cta { text-align: center; margin-top: 3rem; }

/* ============================================
   DIFFERENTIALS SECTION
   ============================================ */
.differentials { padding: 5rem 0; }
@media (min-width: 1024px) { .differentials { padding: 7rem 0; } }
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
.diff-card {
  position: relative;
  background: rgba(13, 13, 18, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2rem;
  transition: all 0.5s;
}
.diff-card:hover { border-color: rgba(201, 168, 76, 0.3); }
.diff-number {
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  opacity: 0.2;
}
.diff-card h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.diff-card p {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  position: relative;
  padding: 5rem 0;
}
@media (min-width: 1024px) { .testimonials { padding: 7rem 0; } }
.testimonials-bg {
  position: absolute;
  inset: 0;
}
.testimonials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.testimonials-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.85);
}
.testimonials .container { position: relative; z-index: 10; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: rgba(13, 13, 18, 0.7);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 1.5rem;
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.3), rgba(201,168,76,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 168, 76, 0.2);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gold);
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
}
.testimonial-bubble {
  background: rgba(26, 26, 46, 0.6);
  border-radius: 0 4px 4px 4px;
  padding: 1rem;
}
.testimonial-bubble p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.875rem;
  line-height: 1.6;
}
.testimonial-time {
  color: rgba(245, 240, 232, 0.3);
  font-size: 0.75rem;
  text-align: right;
  margin-top: 0.75rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq { padding: 5rem 0; }
@media (min-width: 1024px) { .faq { padding: 7rem 0; } }
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: rgba(201, 168, 76, 0.3); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  text-align: left;
  color: var(--ivory);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-body);
}
.faq-question svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
}
.faq-item.open .faq-answer { display: block; }
.faq-answer-divider {
  height: 1px;
  background: rgba(201, 168, 76, 0.1);
  margin-bottom: 1rem;
}
.faq-answer p {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ============================================
   CTA FINAL SECTION
   ============================================ */
.cta-final {
  position: relative;
  padding: 6rem 0;
}
@media (min-width: 1024px) { .cta-final { padding: 8rem 0; } }
.cta-final-bg {
  position: absolute;
  inset: 0;
}
.cta-final-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.cta-final-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.6);
}
.cta-final .container { position: relative; z-index: 10; text-align: center; }
.cta-final .section-label { margin-bottom: 1rem; }
.cta-final h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .cta-final h2 { font-size: 2.5rem; } }
@media (min-width: 1024px) { .cta-final h2 { font-size: 3rem; } }
.cta-final h2 .italic { font-style: italic; }
.cta-final-desc {
  color: rgba(245, 240, 232, 0.6);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
@media (min-width: 640px) { .cta-final-desc { font-size: 1.125rem; } }
.cta-final .btn-whatsapp {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}
.cta-final .btn-whatsapp:hover {
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.5);
}
.cta-final .btn-whatsapp svg { width: 24px; height: 24px; }
.cta-final-note {
  color: rgba(245, 240, 232, 0.4);
  font-size: 0.875rem;
  margin-top: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #070709;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
}
.footer-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.4), transparent);
}
.footer .container { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand-header { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand-header img { width: 40px; height: 40px; object-fit: contain; }
.footer-brand-header span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
}
.footer-brand p {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 20rem;
}

.footer-section h4 {
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.footer-section a, .footer-section p {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.875rem;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
  line-height: 1.5;
}
.footer-section a:hover { color: var(--gold); }
.footer-section .whatsapp-link { color: var(--green-whatsapp); }
.footer-section .whatsapp-link:hover { color: var(--green-whatsapp-hover); }
.footer-section .footer-icon-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer-section .footer-icon-row svg {
  width: 16px; height: 16px;
  color: rgba(201, 168, 76, 0.6);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-section .indent { padding-left: 1.5rem; }
.footer-hours {
  color: rgba(245, 240, 232, 0.4) !important;
  font-size: 0.75rem !important;
  margin-top: 0.25rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p {
  color: rgba(245, 240, 232, 0.3);
  font-size: 0.75rem;
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom p:first-child { text-align: left; } }
.footer-bottom p:last-child { color: rgba(245, 240, 232, 0.2); }

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}
.whatsapp-tooltip {
  opacity: 0;
  transform: translateY(8px) scale(0.95);
  transition: all 0.5s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.whatsapp-tooltip-inner {
  position: relative;
  background: #fff;
  color: #333;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  padding: 0.75rem 1rem;
  max-width: 220px;
}
.whatsapp-tooltip-inner p:first-child {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
}
.whatsapp-tooltip-inner p:last-child {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.125rem;
}
.whatsapp-tooltip-arrow {
  position: absolute;
  bottom: -8px;
  right: 24px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.whatsapp-btn-wrapper { position: relative; }
.whatsapp-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.whatsapp-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
  transition: border-color 0.3s;
}
.whatsapp-float:hover .whatsapp-ring { border-color: rgba(201, 168, 76, 0.6); }
.whatsapp-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-whatsapp);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s;
}
.whatsapp-float:hover .whatsapp-btn {
  box-shadow: 0 4px 32px rgba(37, 211, 102, 0.65);
  transform: scale(1.1);
}
.whatsapp-btn svg { width: 32px; height: 32px; fill: #fff; }
.whatsapp-badge {
  position: absolute;
  top: -2px; right: -2px;
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--dark-bg);
  font-size: 8px;
  font-weight: 700;
  color: var(--dark-bg);
}

/* ============================================
   INSTITUTIONAL PAGES
   ============================================ */
.page-institutional {
  padding-top: 8rem;
  padding-bottom: 5rem;
  min-height: 100vh;
}
.page-institutional .container { max-width: 48rem; }
.page-institutional h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) { .page-institutional h1 { font-size: 3rem; } }
.page-institutional .page-subtitle {
  color: rgba(201, 168, 76, 0.6);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.page-institutional .divider {
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 2.5rem;
  max-width: 200px;
}
.page-institutional h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.page-institutional p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.page-institutional ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.page-institutional ul li {
  color: rgba(245, 240, 232, 0.6);
  font-size: 0.9375rem;
  padding: 0.375rem 0 0.375rem 1.5rem;
  position: relative;
}
.page-institutional ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}
.page-institutional .update-date {
  color: rgba(245, 240, 232, 0.3);
  font-size: 0.75rem;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
}
