@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', 'Montserrat', system-ui, -apple-system, sans-serif;
  --color-gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #B38F24 100%);
  --color-navy-dark: #030811;
  --color-navy-surface: #071220;
  --color-navy-card: #0E1A2C;
  --color-border-lux: rgba(212, 175, 55, 0.35);
}

body {
  font-family: var(--font-sans);
  background-color: #FAF9F6;
  color: #1E293B;
  -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
.serif-title {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
}

/* Menu de 3 Imóveis Pequenos e Compactos na Home */
#homeFeaturedGrid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 330px)) !important;
  justify-content: center !important;
  gap: 24px !important;
  width: 100% !important;
  max-width: 1040px !important;
  margin: 0 auto !important;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
}

/* Luxury Editorial Property Cards - Compactos e Elegantes */
.lux-card {
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid rgba(24, 26, 28, 0.08);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
}
.lux-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(7, 22, 37, 0.08);
  border-color: rgba(178, 154, 114, 0.4);
}

/* Card Image Carousel */
.lux-card-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 58%; /* Compacto e proporcional */
  overflow: hidden;
  background: #071625;
}
.lux-card-img-wrap img.card-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
}
.lux-card-img-wrap img.card-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.lux-card:hover .lux-card-img-wrap img.card-slide.active {
  transform: scale(1.03);
}

/* Carousel Arrows — Discrete Editorial Arrows */
.card-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 2px;
  background: rgba(7, 22, 37, 0.75);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: all 0.2s ease;
  font-size: 1.2rem;
  line-height: 1;
  color: #FFFFFF;
}
.lux-card:hover .card-carousel-arrow {
  opacity: 0.85;
}
.card-carousel-arrow:hover {
  opacity: 1 !important;
  background: #071625;
  color: #B29A72;
}
.card-carousel-arrow.left { left: 10px; }
.card-carousel-arrow.right { right: 10px; }

/* Carousel Dots */
.card-carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  background: rgba(7, 22, 37, 0.65);
  backdrop-filter: blur(4px);
  padding: 4px 8px;
  border-radius: 2px;
}
.card-carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}
.card-carousel-dot.active {
  background: #B29A72;
  transform: scale(1.2);
}

/* Card Content Typography & Spacing */
.lux-card-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.lux-card-city-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #777873;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  display: block;
}
.lux-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: #181A1C;
  margin-bottom: 6px;
  line-height: 1.25;
}
.lux-card-specs-line {
  font-size: 0.84rem;
  color: #777873;
  margin-bottom: 14px;
  font-weight: 400;
}
.lux-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(24, 26, 28, 0.08);
}
.lux-card-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #181A1C;
}
.lux-card-arrow {
  font-size: 1.2rem;
  color: #777873;
  transition: transform 0.2s ease, color 0.2s ease;
}
.lux-card:hover .lux-card-arrow {
  transform: translateX(4px);
  color: #B29A72;
}

/* Amenity Pills — Airbnb-style */
.amenity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #4A5568;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.amenity-pill:hover {
  background: #EDF2F7;
  border-color: #CBD5E0;
}
.amenity-pill .pill-icon {
  font-size: 0.78rem;
}

.lux-card-specs {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid #EDF2F7;
  border-bottom: 1px solid #EDF2F7;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: #4A5568;
}
.lux-spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lux-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lux-card-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #001C3D;
}
.lux-card-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: #718096;
}

/* First-Time Lead Capture Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 17, 26, 0.75);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-container {
  background: #0F1B29;
  border: 1px solid var(--color-border-lux);
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  color: #FFF;
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.active .modal-container {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #A0AEC0;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: rgba(255,255,255,0.2);
  color: #FFF;
}
.modal-badge {
  color: #D4AF37;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #FFF;
  margin-bottom: 12px;
  line-height: 1.25;
}
.modal-subtitle {
  font-size: 0.92rem;
  color: #A0AEC0;
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Cookie Banner LGPD */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 24px; right: 24px;
  max-width: 960px;
  margin: 0 auto;
  background: #0F1B29;
  border: 1px solid var(--color-border-lux);
  border-radius: 12px;
  padding: 20px 24px;
  color: #FFF;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: all 0.4s ease;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-text {
  font-size: 0.88rem;
  color: #CBD5E0;
  max-width: 600px;
  line-height: 1.5;
}
.cookie-btns {
  display: flex;
  gap: 10px;
}
.btn-cookie-accept {
  background: var(--color-gold-gradient);
  color: #0A111A;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}
.btn-cookie-deny {
  background: transparent;
  color: #A0AEC0;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #2D3748;
  cursor: pointer;
}

/* Kanban Board inside Admin */
.kanban-board {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 24px;
  min-height: 500px;
}
.kanban-col {
  flex: 0 0 280px;
  background: #1A2634;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
}
.kanban-header {
  font-size: 0.88rem;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
}
.kanban-count {
  background: rgba(255,255,255,0.1);
  color: #D4AF37;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 12px;
}
.kanban-cards {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kanban-card {
  background: #0F1B29;
  border: 1px solid #2D3748;
  border-radius: 6px;
  padding: 14px;
  color: #FFF;
  font-size: 0.85rem;
  cursor: grab;
  transition: transform 0.2s, border-color 0.2s;
}
.kanban-card:hover {
  border-color: #D4AF37;
  transform: translateY(-2px);
}
.kanban-card-title {
  font-weight: 600;
  color: #FFF;
  margin-bottom: 4px;
}
.kanban-card-meta {
  color: #A0AEC0;
  font-size: 0.78rem;
  margin-bottom: 8px;
}
.kanban-card-tag {
  display: inline-block;
  background: rgba(198, 146, 52, 0.15);
  color: #D4AF37;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .modal-container {
    padding: 28px 20px;
  }
  .cookie-banner {
    bottom: 12px; left: 12px; right: 12px;
    padding: 16px;
  }
}

/* ==========================================================================
   📱 100% RESPONSIVE DESIGN SYSTEM — ALL DEVICES & SCREENS
   ========================================================================== */

/* Responsive Table Wrapper */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #1A2634;
  margin-bottom: 24px;
  background: #0F1B29;
}
.table-responsive .table-custom {
  min-width: 680px;
  margin-bottom: 0;
}

/* Admin Layout Responsiveness */
@media (max-width: 992px) {
  .admin-layout {
    flex-direction: column !important;
  }
  .admin-sidebar {
    width: 100% !important;
    padding: 16px 20px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
  }
  .admin-logo-box {
    margin-bottom: 16px !important;
    justify-content: space-between;
  }
  .admin-menu {
    display: flex !important;
    overflow-x: auto !important;
    gap: 8px !important;
    padding-bottom: 8px !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .admin-menu-item {
    flex-shrink: 0;
    margin-bottom: 0 !important;
    scroll-snap-align: start;
  }
  .admin-menu-link {
    white-space: nowrap !important;
    padding: 9px 16px !important;
    font-size: 0.84rem !important;
  }
  .admin-main {
    padding: 20px 16px !important;
  }
  .admin-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 576px) {
  .metrics-grid {
    grid-template-columns: 1fr !important;
  }
  .admin-card {
    padding: 16px !important;
  }
}

/* Modal Form Responsiveness */
@media (max-width: 768px) {
  .modal-overlay {
    padding: 12px !important;
    align-items: flex-start !important;
  }
  .modal-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 12px 0 !important;
    padding: 20px 16px !important;
    border-radius: 16px !important;
    max-height: 92vh !important;
    overflow-y: auto !important;
  }
  .modal-grid-responsive {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  #amenitiesGrid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)) !important;
    max-height: 320px !important;
  }
  .amenity-check {
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
  }
}

/* Kanban Board Responsiveness */
.kanban-board-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
}

/* Property Cards Mobile Tuning */
@media (max-width: 576px) {
  .lux-card-body {
    padding: 18px 16px !important;
  }
  .lux-card-title {
    font-size: 1.12rem !important;
  }
  .lux-card-desc {
    font-size: 0.84rem !important;
    margin-bottom: 12px !important;
  }
  .amenity-pills {
    gap: 5px !important;
    margin-bottom: 12px !important;
  }
  .amenity-pill {
    padding: 3px 9px !important;
    font-size: 0.7rem !important;
  }
  .lux-card-specs {
    gap: 12px !important;
    padding: 10px 0 !important;
    margin-bottom: 16px !important;
    font-size: 0.78rem !important;
  }
  .lux-card-footer {
    flex-wrap: wrap !important;
    gap: 10px !important;
  }
  .lux-card-price {
    font-size: 1.15rem !important;
  }
}

/* ==========================================================================
   📱 PUBLIC SITE — 100% MOBILE RESPONSIVE & ULTRA-PREMIUM UI/UX
   ========================================================================== */

/* Prevent horizontal scroll overflow globally */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Header & Mobile Navigation Menu Drawer */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(3, 8, 17, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  min-height: 80px;
}

.logo-img {
  height: 70px;
  width: auto;
  max-width: 380px;
  object-fit: contain;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.45));
}

.menu-toggle {
  display: none !important;
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex !important;
  }
}

  nav#navMenu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 80px);
    background: linear-gradient(180deg, rgba(3, 10, 20, 0.98) 0%, rgba(5, 15, 30, 0.99) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    z-index: 1001;
    overflow-y: auto;
    border-bottom: 2px solid #D4AF37;
  }

  nav#navMenu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  nav#navMenu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 320px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  nav#navMenu ul li {
    width: 100%;
    text-align: center;
  }

  nav#navMenu ul li a {
    font-size: 1.15rem;
    font-weight: 600;
    color: #E2E8F0;
    text-decoration: none;
    display: block;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.25s ease;
  }

  nav#navMenu ul li a:hover, nav#navMenu ul li a.active {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.3);
  }

  nav#navMenu ul li a.btn {
    width: 100%;
    margin-top: 12px;
    padding: 14px 24px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
}

/* Hero Section Mobile Responsiveness */
@media (max-width: 992px) {
  .hero {
    padding-top: 130px !important;
    padding-bottom: 60px !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    text-align: center;
  }
  .hero-tagline {
    margin: 0 auto 20px auto !important;
  }
  .hero-title {
    font-size: 2.2rem !important;
    line-height: 1.2 !important;
  }
  .hero-desc {
    font-size: 1rem !important;
    margin: 0 auto 28px auto !important;
  }
  .hero-ctas {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .hero-ctas .btn {
    width: 100% !important;
    padding: 14px 20px !important;
  }
  .form-card {
    padding: 24px 18px !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.85rem !important;
  }
  .logo-img {
    height: 38px !important;
  }
  .header-wrapper {
    height: 70px !important;
    padding: 10px 16px !important;
  }
  nav#navMenu {
    top: 70px !important;
    height: calc(100vh - 70px) !important;
  }
}

/* Catalog & Grid Mobile Responsiveness */
@media (max-width: 992px) {
  .properties-grid, #homeFeaturedGrid, .catalog-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 20px !important;
  }
}

@media (max-width: 640px) {
  .properties-grid, #homeFeaturedGrid, .catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .section-title {
    font-size: 1.8rem !important;
  }
  .section-subtitle {
    font-size: 0.95rem !important;
  }
}

/* ==========================================================================
   🏰 ULTRA-PREMIUM FOOTER — GRIFFE IMOBILIÁRIA
   ========================================================================== */
footer {
  background: linear-gradient(180deg, #071220 0%, #030811 100%);
  color: #94A3B8;
  padding: 80px 0 30px;
  position: relative;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.5);
  font-family: var(--font-sans);
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #F3E5AB 30%, #D4AF37 50%, #B38F24 70%, transparent 100%);
}

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

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

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

.footer-about .footer-logo {
  height: auto;
  width: clamp(270px, 25vw, 360px);
  max-height: 95px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 2px 14px rgba(178, 154, 114, 0.35));
  transition: transform 0.3s ease;
}

.footer-about .footer-logo:hover {
  transform: scale(1.03);
}

.footer-about p {
  color: #94A3B8;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 380px;
}

.footer-social-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-btn:hover {
  background: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 100%);
  color: #030811;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.footer-column-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.5px;
}

.footer-column-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px;
  height: 2px;
  background: #D4AF37;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: #CBD5E0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links ul li a::before {
  content: '›';
  color: #D4AF37;
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.footer-links ul li a:hover {
  color: #D4AF37;
  transform: translateX(4px);
}

.footer-links ul li a:hover::before {
  transform: translateX(2px);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: #CBD5E0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.footer-contact-info strong {
  display: block;
  color: #FFFFFF;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-contact-info a {
  color: #D4AF37;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-contact-info a:hover {
  color: #F3E5AB;
  text-decoration: underline;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: #64748B;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-bottom-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #D4AF37;
}

.footer-creci-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #D4AF37;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   ✨ SCROLL REVEAL ANIMATIONS (GUAÇUÍ PATTERN — SMOOTH FADE IN & SLIDE UP)
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.active,
.reveal.is-visible,
.reveal-left.active,
.reveal-left.is-visible,
.reveal-right.active,
.reveal-right.is-visible,
.reveal-scale.active,
.reveal-scale.is-visible {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

