/* 
  ========================================
  DESIGN SYSTEM & VARIABLES - ALMEIDA & VASCONCELOS
  ========================================
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --color-bg-deep: #050507;
  --color-bg-dark: #0B0C10;
  --color-bg-card: rgba(18, 20, 26, 0.75);
  --color-bg-glass: rgba(11, 12, 16, 0.65);
  
  --color-gold: #D4AF37;
  --color-gold-hover: #F3E5AB;
  --color-gold-glow: rgba(212, 175, 55, 0.25);
  --color-gold-dark: #8C6D1C;
  
  --color-white: #F5F6F8;
  --color-white-pure: #FFFFFF;
  --color-gray-light: #C5CAD6;
  --color-gray-muted: #7E8494;
  --color-gray-dark: #1C1E24;
  --color-gray-deep: #121419;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  --shadow-premium: 0 15px 35px rgba(0, 0, 0, 0.5), 0 5px 15px rgba(212, 175, 55, 0.05);
  --shadow-gold-pulse: 0 0 20px rgba(212, 175, 55, 0.4);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* 
  ========================================
  RESET & CORE STYLES
  ========================================
*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-color: var(--color-bg-deep);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-deep);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold-dark);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold);
}

/* 
  ========================================
  BACKGROUND CINEMATIC GLOWS
  ========================================
*/
.glow-effect {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-gold-glow) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(50px);
  opacity: 0.6;
}

.glow-top-right {
  top: -100px;
  right: -100px;
}

.glow-bottom-left {
  bottom: -150px;
  left: -150px;
}

.glow-middle-right {
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
}

/* 
  ========================================
  SPLASH SCREEN
  ========================================
*/
#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg-deep);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.splash-logo-container {
  width: 120px;
  height: 120px;
  position: relative;
  margin-bottom: 25px;
}

.splash-logo-svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 1.5;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawStroke 2.5s ease-in-out forwards;
}

@keyframes drawStroke {
  to {
    stroke-dashoffset: 0;
  }
}

.splash-logo-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
  border-radius: 50%;
  opacity: 0;
  animation: fadeInGlow 1.5s ease-in-out 1.5s forwards;
}

@keyframes fadeInGlow {
  to {
    opacity: 1;
    transform: scale(1.2);
  }
}

.splash-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-white-pure);
  letter-spacing: 4px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

.splash-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.splash-loader-bar {
  width: 140px;
  height: 2px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin-top: 35px;
  position: relative;
  overflow: hidden;
}

.splash-loader-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold));
  box-shadow: 0 0 8px var(--color-gold);
  animation: progressFill 2.2s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes progressFill {
  0% { width: 0; }
  50% { width: 45%; }
  75% { width: 85%; }
  100% { width: 100%; }
}

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
  ========================================
  APP SHELL & LAYOUT
  ========================================
*/
.app-container {
  max-width: 480px; /* Standard premium mobile view width */
  margin: 0 auto;
  min-height: 100vh;
  background-color: var(--color-bg-dark);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  padding-bottom: 80px; /* space for sticky footer / floating button */
}

/* Section Common Styles */
section {
  padding: 55px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-header {
  margin-bottom: 35px;
  text-align: center;
  position: relative;
}

.section-subtitle {
  font-size: 0.7rem;
  color: var(--color-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--color-white-pure);
  font-weight: 600;
  line-height: 1.2;
}

.section-title span {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-sans);
  color: var(--color-gray-muted);
  font-weight: 300;
  margin-top: 5px;
  letter-spacing: 1px;
}

.section-decorator {
  width: 50px;
  height: 1px;
  background: var(--color-gold);
  margin: 15px auto 0;
  position: relative;
}

.section-decorator::after {
  content: '';
  position: absolute;
  top: -2.5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  box-shadow: 0 0 6px var(--color-gold);
}

/* 
  ========================================
  HERO SECTION
  ========================================
*/
#hero {
  padding: 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-banner-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.2) contrast(1.1) saturate(0.8);
}

.hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(11, 12, 16, 0.4) 0%, 
    rgba(11, 12, 16, 0.8) 60%, 
    var(--color-bg-dark) 100%
  );
}

.hero-top-bar {
  position: relative;
  z-index: 2;
  padding: 30px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-logo-mini {
  width: 45px;
  height: 45px;
}

.hero-status-pill {
  background: rgba(10, 191, 115, 0.15);
  border: 1px solid rgba(10, 191, 115, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: #0abf73;
  border-radius: 50%;
  box-shadow: 0 0 10px #0abf73;
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 14px #0abf73; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero-status-pill span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0abf73;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

.hero-main-logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.25));
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.3rem;
  color: var(--color-white-pure);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--color-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 0.95rem;
  color: var(--color-gray-light);
  max-width: 90%;
  margin: 0 auto 35px;
  font-weight: 300;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-bottom: 40px;
}

.hero-scroll-indicator {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 25px;
  color: var(--color-gray-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: opacity 0.5s ease;
}

.hero-scroll-indicator i {
  color: var(--color-gold);
  font-size: 0.9rem;
  animation: bounceArrow 2s infinite;
  text-shadow: 0 0 8px var(--color-gold-glow);
}

@keyframes bounceArrow {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

/* 
  ========================================
  BUTTONS & INTERACTIVE ELEMENTS
  ========================================
*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  width: 100%;
  text-decoration: none;
  font-family: var(--font-sans);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), #B5942B);
  color: var(--color-bg-deep);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover, .btn-primary:active {
  background: linear-gradient(135deg, var(--color-gold-hover), var(--color-gold));
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--color-gold);
}

.btn-secondary:hover, .btn-secondary:active {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--color-gold);
  color: var(--color-white-pure);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-gray-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--color-white);
}

.btn-dark:hover, .btn-dark:active {
  background: var(--color-gray-deep);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-flex-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

/* 
  ========================================
  AREAS DE ATUAÇÃO
  ========================================
*/
.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.area-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color-gold);
  transform: scaleY(0);
  transition: var(--transition-smooth);
  transform-origin: bottom;
}

.area-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: var(--shadow-premium);
}

.area-card:hover::before {
  transform: scaleY(1);
}

.area-icon-container {
  width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.area-card:hover .area-icon-container {
  background: var(--color-gold);
  color: var(--color-bg-deep);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.area-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-white-pure);
  margin-bottom: 10px;
  font-weight: 600;
}

.area-desc {
  font-size: 0.88rem;
  color: var(--color-gray-light);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.5;
}

.area-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
}

.area-btn i {
  font-size: 0.8rem;
  transition: var(--transition-fast);
}

.area-card:hover .area-btn {
  color: var(--color-gold-hover);
}

.area-card:hover .area-btn i {
  transform: translateX(4px);
}

/* 
  ========================================
  DIFERENCIAIS
  ========================================
*/
.diferenciais-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.diferencial-item {
  display: flex;
  gap: 20px;
  background: var(--color-bg-glass);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  align-items: flex-start;
}

.diferencial-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  flex-shrink: 0;
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.05);
}

.diferencial-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--color-white-pure);
  margin-bottom: 6px;
  font-weight: 600;
}

.diferencial-text {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  font-weight: 300;
}

/* 
  ========================================
  DEPOIMENTOS (SWIPER CAROUSEL)
  ========================================
*/
.reviews-slider {
  width: 100%;
  padding-bottom: 35px !important;
}

.review-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 30px 24px;
  position: relative;
  backdrop-filter: blur(10px);
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--color-gold);
  margin-bottom: 18px;
  font-size: 0.85rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-white);
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.6;
}

.review-author {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-author::before {
  content: '';
  width: 15px;
  height: 1px;
  background: var(--color-gold);
  display: inline-block;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--color-gold) !important;
  width: 18px !important;
  border-radius: 4px !important;
}

/* 
  ========================================
  GALERIA PREMIUM (SWIPER MASONRY / CARD)
  ========================================
*/
.gallery-slider {
  width: 100%;
  padding-bottom: 40px !important;
}

.gallery-slide-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide-card:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(11, 12, 16, 0.9), transparent);
  color: var(--color-white-pure);
}

.gallery-tag {
  font-size: 0.65rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.gallery-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
}

/* 
  ========================================
  VIDEOS SECTION
  ========================================
*/
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.video-card {
  background: var(--color-bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.video-thumbnail-container {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  cursor: pointer;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transition: var(--transition-smooth);
}

.video-card:hover .video-thumbnail {
  filter: brightness(0.4) scale(1.03);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(11, 12, 16, 0.85);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.2rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  transition: var(--transition-smooth);
}

.video-card:hover .video-play-btn {
  background: var(--color-gold);
  color: var(--color-bg-deep);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.video-info {
  padding: 18px 20px;
}

.video-tag {
  font-size: 0.65rem;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.video-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-white-pure);
  font-weight: 600;
}

/* Video Modal Lightbox */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 7, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-content {
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
  position: relative;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.video-modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-modal-close {
  position: absolute;
  top: -45px;
  right: 0;
  color: var(--color-white);
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 1px;
}

.video-modal-close span {
  font-size: 0.8rem;
  text-transform: uppercase;
}

.video-modal-close:hover {
  color: var(--color-gold);
}

/* 
  ========================================
  HORÁRIO E LOCALIZAÇÃO
  ========================================
*/
.location-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.location-info-row {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.location-icon-box {
  color: var(--color-gold);
  font-size: 1.1rem;
  padding-top: 3px;
}

.location-details h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--color-white-pure);
  margin-bottom: 4px;
}

.location-details p {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  font-weight: 300;
}

.map-container {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.2); /* elegant premium dark styling */
}

/* 
  ========================================
  FLOATING WHATSAPP BUTTON
  ========================================
*/
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.5);
  z-index: 99;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  animation: pulseGreenGlow 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  background-color: #22c35e;
}

@keyframes pulseGreenGlow {
  0% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3), 0 0 0 0px rgba(37, 211, 102, 0.0); }
}

/* 
  ========================================
  RODAPÉ (FOOTER) PREMIUM
  ========================================
*/
footer {
  background: var(--color-gray-deep);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 50px 24px 40px;
  text-align: center;
}

.footer-logo {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.15));
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-white-pure);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.footer-subtitle {
  font-size: 0.75rem;
  color: var(--color-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 30px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-light);
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  text-decoration: none;
  overflow: hidden;
}

.footer-social-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* converts the PNG to pure white */
  transition: var(--transition-smooth);
}

.footer-social-link:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
}

.footer-social-link:hover .footer-social-icon {
  filter: brightness(0) invert(0.8) sepia(1) saturate(10) hue-rotate(15deg); /* converts white to refined luxury gold on hover! */
}

.footer-creator-card {
  background: rgba(11, 12, 16, 0.5);
  border: 1px dashed rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 35px;
}

.footer-creator-text {
  font-size: 0.85rem;
  color: var(--color-gray-light);
  margin-bottom: 12px;
  font-weight: 300;
}

.footer-copyright {
  font-size: 0.7rem;
  color: var(--color-gray-muted);
  letter-spacing: 0.5px;
}

/* 
  ========================================
  RESPONSIVE TUNING
  ========================================
*/
@media (max-width: 360px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .btn-flex-row {
    grid-template-columns: 1fr;
  }
}
