/* ===== Styles moved from contactos.html ===== */

/* ========== SISTEMA DE DESIGN PREMIUM ========== */
    :root {
      /* Cores premium */
      --gold-primary: #c79d33;
      --gold-dark: #a88428;
      --gold-light: #d4b15c;
      --gold-gradient: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 100%);
      --gold-glow: 0 0 30px rgba(199, 157, 51, 0.4);
      
      /* Sistema de cores neutras sofisticadas */
      --bg-primary: #0a0a0a;
      --bg-secondary: #1a1a1a;
      --bg-card: #2a2a2a;
      --bg-elevated: #363636;
      
      --text-primary: #ffffff;
      --text-secondary: #b0b0b0;
      --text-accent: var(--gold-primary);
      
      --border-light: rgba(255, 255, 255, 0.1);
      --border-gold: rgba(199, 157, 51, 0.4);
      
      /* Efeitos visuais */
      --glass-bg: rgba(255, 255, 255, 0.05);
      --glass-border: rgba(255, 255, 255, 0.1);
      --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      
      /* Espaçamento moderno */
      --section-padding: 4rem 2rem;
      --card-padding: 2.5rem;
      --element-spacing: 1.5rem;
    }

    /* ========== BASE E RESET MODERNO ========== */
    body {
      background: var(--bg-primary);
      color: var(--text-primary);
      font-family: 'Inter', 'SF Pro Display', -apple-system, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
      padding-bottom: 140px;
    }

    /* ========== LAYOUT PRINCIPAL ESTRUTURADO ========== */
    .max-w-6xl {
      background: 
        radial-gradient(ellipse at 0% 0%, rgba(199, 157, 51, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(199, 157, 51, 0.05) 0%, transparent 50%);
      min-height: 100vh;
      padding: var(--section-padding);
    }

    /* ========== CARDS E CONTAINERS MODERNOS ========== */
    .grid.grid-cols-1.md\:grid-cols-2 {
      gap: 3rem;
      align-items: start;
    }

    .grid > div {
      background: var(--bg-card);
      border-radius: 24px;
      padding: var(--card-padding);
      box-shadow: var(--card-shadow);
      border: 1px solid var(--border-light);
      backdrop-filter: blur(10px);
      transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .grid > div:hover {
      transform: translateY(-5px);
      border-color: var(--gold-primary);
      box-shadow: var(--gold-glow), var(--card-shadow);
    }

    /* ========== TIPOGRAFIA PREMIUM ========== */
    .text-4xl.sm\:text-5xl {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      background: var(--gold-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
      border: none !important;
    }

    .text-4xl.sm\:text-5xl::after {
      content: '';
      position: absolute;
      bottom: -1rem;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: var(--gold-gradient);
      border-radius: 2px;
    }

    .border-b-2.border-\[\#c79d33\] {
      border: none !important;
    }

    /* ========== SISTEMA DE CONTACTOS MODERNO ========== */
    .space-y-4 {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact-item {
      background: var(--bg-elevated);
      border-radius: 16px;
      padding: 1.5rem;
      border: 1px solid var(--border-light);
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .contact-item:hover {
      transform: translateX(8px);
      border-color: var(--gold-primary);
      background: var(--bg-card);
    }

    .contact-item .flex.items-center {
      flex: 1;
    }

    /* Ícones modernos */
    .icon-animated {
      width: 40px;
      height: 40px;
      background: var(--gold-gradient);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--bg-primary);
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .contact-item:hover .icon-animated {
      transform: scale(1.1) rotate(5deg);
    }

    /* ========== BOTÕES PREMIUM ========== */
    .btn-copy, .btn-email, .btn-google-maps {
      background: var(--gold-gradient);
      color: var(--bg-primary) !important;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 12px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(199, 157, 51, 0.3);
    }

    .btn-copy {
      padding: 0.5rem 1rem;
      font-size: 0.875rem;
    }

    .btn-copy:hover, .btn-email:hover, .btn-google-maps:hover {
      transform: translateY(-2px);
      box-shadow: var(--gold-glow);
    }

    .btn-email, .btn-google-maps {
      min-width: 160px;
      justify-content: center;
    }

    .copy-feedback {
      display: none;
      color: var(--gold-primary);
      font-size: 0.875rem;
      margin-left: 0.5rem;
    }

    /* ========== HORÁRIO E STATUS ELEGANTE ========== */
    .gold-line {
      border-top: 2px solid var(--gold-primary);
      margin: 3rem 0;
      position: relative;
    }

    .gold-line::before {
      content: '';
      position: absolute;
      top: -2px;
      left: 0;
      width: 50px;
      height: 2px;
      background: var(--gold-gradient);
    }

    .text-2xl.sm\:text-3xl {
      font-size: 1.75rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    .text-2xl.sm\:text-3xl i {
      width: 40px;
      height: 40px;
      background: var(--gold-gradient);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--bg-primary);
    }

    #statusHorario {
      background: var(--bg-elevated);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-size: 0.875rem;
      font-weight: 600;
      border: 1px solid var(--border-light);
      margin-left: auto;
    }

    .status-open { 
      color: #10b981; 
      border-color: rgba(16, 185, 129, 0.3); 
    }
    .status-closed { 
      color: var(--gold-primary); 
      border-color: var(--border-gold); 
    }

    /* ========== MAPA E REDES SOCIAIS PREMIUM ========== */
    .embed-frame {
      border-radius: 20px;
      border: 2px solid var(--gold-primary) !important;
      box-shadow: var(--gold-glow);
      transition: all 0.3s ease;
    }

    .embed-frame:hover {
      transform: scale(1.02);
      box-shadow: var(--gold-glow), 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .social-icon {
      position: relative;
      width: 60px;
      height: 60px;
      background: var(--bg-elevated);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 1.5rem;
      transition: all 0.3s ease;
      border: 1px solid var(--border-light);
    }

    .social-icon:hover {
      background: var(--gold-primary);
      color: var(--bg-primary);
      transform: translateY(-5px) scale(1.1);
      box-shadow: var(--gold-glow);
    }

    .tooltip {
      position: absolute;
      bottom: 125%;
      left: 50%;
      transform: translateX(-50%);
      background: var(--bg-primary);
      color: var(--gold-primary);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      font-size: 0.875rem;
      border: 1px solid var(--gold-primary);
      box-shadow: var(--card-shadow);
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
      z-index: 10;
    }

    .tooltip::after {
      content: "";
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      border-width: 6px;
      border-style: solid;
      border-color: var(--bg-primary) transparent transparent transparent;
    }

    .social-icon:hover .tooltip {
      opacity: 1;
      transform: translateX(-50%) translateY(-4px);
    }

    
    /* ========== RODAPÉ PREMIUM CONTACTOS - CSS ATUALIZADO ========== */
.footer-premium {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a1a1a 100%) !important;
  border-top: 3px solid var(--gold-primary) !important;
  margin-top: 6rem !important;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Garantir que o rodapé seja o final da página */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  position: relative;
}

body {
  padding-bottom: 0 !important;
  overflow-x: hidden;
}

.footer-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--gold-primary) 50%, 
    transparent 100%);
  opacity: 0.6;
}

.footer-premium-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  box-sizing: border-box;
}

/* Seção de Contacto Superior */
.footer-contact-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.contact-column,
.social-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-title,
.social-title {
  color: var(--gold-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  position: relative;
  padding-bottom: 0.5rem;
}

.contact-title::after,
.social-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold-primary);
  opacity: 0.6;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(199, 157, 51, 0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(199, 157, 51, 0.05);
  border-color: rgba(199, 157, 51, 0.3);
  transform: translateX(5px);
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-primary);
  flex-shrink: 0;
}

.contact-link {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--gold-primary);
}

/* Botão Ligar Agora */
.call-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.call-now-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.call-now-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.call-now-btn:hover::before {
  left: 100%;
}

.call-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.call-now-btn:hover .call-icon {
  transform: scale(1.1);
}

/* Logotipos Premium */
.logo-column {
  display: flex;
  justify-content: center;
}

.footer-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.logo-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid rgba(199, 157, 51, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* ====== BLOCO DO FORMULÁRIO GOOGLE ====== */
.contact-form-page {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 2rem;
  color: #f4f4f4;
}

.form-header {
  background: linear-gradient(135deg, rgba(199, 157, 51, 0.2), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(199, 157, 51, 0.5);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  margin-bottom: 1rem;
}

.form-header h2 {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 800;
  color: #ffefc3;
  text-shadow: 0 0 15px rgba(199, 157, 51, 0.45);
}

.form-header p {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  color: #dfd6b3;
}

.form-header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-logo {
  width: 64px;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(199, 157, 51, 0.5);
  background: rgba(0,0,0,0.2);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.form-badges {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin: 0.85rem 0 1.3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(5px);
}

.badge.secure { border-color: #22c55e; color: #22c55e; }
.badge.fast { border-color: #38bdf8; color: #38bdf8; }
.badge.privacy { border-color: #f97316; color: #f97316; }

.form-embed-wrapper {
  position: relative;
  border: 2px solid rgba(199, 157, 51, 0.6);
  box-shadow: 0 20px 35px rgba(199, 157, 51, 0.25), 0 20px 80px rgba(0, 0, 0, 0.35);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.form-embed-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 40px rgba(199, 157, 51, 0.45), 0 30px 90px rgba(0, 0, 0, 0.45);
}

.form-embed-wrapper iframe {
  width: 100%;
  min-height: 1300px;
  border: 0;
  background: #040404;
}

.form-alert {
  margin-top: 1rem;
  border: 1px solid rgba(248, 208, 16, 0.8);
  background: rgba(255, 237, 165, 0.15);
  color: #fff;
  font-weight: 600;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: fadeIn 0.4s ease;
}

.iframe-loading-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(8, 8, 8, 0.78);
  z-index: 50;
  gap: 0.75rem;
  color: #ffeecf;
  text-align: center;
  padding: 1.25rem;
  backdrop-filter: blur(4px);
  border-radius: 24px;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.iframe-loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 46px;
  height: 46px;
  border: 6px solid rgba(255, 255, 255, 0.22);
  border-top-color: rgba(199, 157, 51, 0.95);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.loader-text {
  max-width: 260px;
  font-size: 0.95rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-alert a {
  color: #000;
  background: linear-gradient(90deg, #c79d33 0%, #f5c541 100%);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  padding: 0.45rem 0.8rem;
  border-radius: 9px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.form-alert a:hover {
  text-decoration: underline;
}

.form-alert-warning {
  background: rgba(253, 224, 71, 0.2);
  border-color: rgba(253, 186, 38, 0.85);
  color: #f8f3dc;
}

.form-alert-success {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(34, 197, 94, 0.85);
  color: #e7fdf1;
}

.form-alert.hidden {
  display: none;
}

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

.form-note {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: #d5d1c7;
}

.form-note a {
  text-decoration: underline;
  color: var(--gold-primary);
}

.info-card {
  margin-top: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(199,157,51,0.35);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  color: #eccd93;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
}

.info-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.info-card a {
  color: var(--gold-primary);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .form-header, .form-embed-wrapper {
    padding: 1.2rem;
  }

  .form-badges {
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .max-w-6xl { padding: 2rem 1rem; }

  .form-header h2 {
    font-size: 1.6rem;
  }

  .form-embed-wrapper {
    aspect-ratio: 16 / 9;
    max-height: 70vh;
  }

  .form-embed-wrapper iframe {
    min-height: 0;
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-header h2 {
    font-size: 1.35rem;
  }

  .form-embed-wrapper iframe {
    min-height: 1050px;
  }
}


.logo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(199, 157, 51, 0.1), transparent);
  transition: left 0.6s ease;
}

.logo-card:hover::before {
  left: 100%;
}

.logo-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-logo {
  height: 45px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

.logo-card:hover .footer-logo {
  transform: scale(1.15);
  filter: brightness(1.2) drop-shadow(0 0 12px var(--gold-primary));
}

/* Botões de Redes Sociais */
.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(199, 157, 51, 0.2);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.05);
  border-color: var(--gold-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.facebook-btn:hover {
  background: #1877F2;
  border-color: #1877F2;
}

.instagram-btn:hover {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  border-color: #E1306C;
}

.tiktok-btn:hover {
  background: #000000;
  border-color: #000000;
}

.social-icon {
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}

.social-btn:hover .social-icon {
  transform: scale(1.2);
  filter: brightness(1.5);
}

/* Botão Email */
.email-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(199, 157, 51, 0.1) 0%, rgba(199, 157, 51, 0.05) 100%);
  color: var(--gold-primary);
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(199, 157, 51, 0.3);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.email-btn:hover {
  background: linear-gradient(135deg, var(--gold-primary) 0%, #d4af37 100%);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(199, 157, 51, 0.4);
  border-color: var(--gold-primary);
}

.email-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.email-btn:hover::before {
  left: 100%;
}

.email-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.email-btn:hover .email-icon {
  transform: scale(1.1);
}

/* Navegação Rápida */
.footer-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  border: 1px solid rgba(199, 157, 51, 0.9);
  background: rgba(0, 0, 0, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(199, 157, 51, 0.2);
  border-color: #c79d33;
}

.nav-separator {
  color: rgba(199, 157, 51, 0.5);
  font-weight: 300;
}

/* Separador */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(199, 157, 51, 0.3) 50%, 
    transparent 100%);
  margin: 1.5rem 0;
}

/* Seção Inferior */
.footer-bottom-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.copyright-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.copyright-text {
  color: var(--gold-primary);
  font-size: 0.9rem;
  margin: 0;
  font-weight: 500;
}

.designer-credit {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  line-height: 1.4;
}

.designer-name {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.90);
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.25s ease;
}

.designer-name:hover {
  color: #ffffff;
  text-shadow: none;
}

.footer-badge {
  background: rgba(199, 157, 51, 0.1);
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  border: 1px solid #c79d33;
  box-shadow: 0 0 0 1px rgba(199, 157, 51, 0.3);
  transition: all 0.3s ease;
}

.footer-badge:hover {
  background: rgba(199, 157, 51, 0.15);
  border-color: rgba(199, 157, 51, 0.4);
  transform: translateY(-2px);
}

.badge-text {
  color: var(--gold-primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Botão Voltar ao Topo */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gold-primary);
  color: #000;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(199, 157, 51, 0.4);
}

.back-to-top-btn:hover {
  background: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(199, 157, 51, 0.6);
}

.back-to-top-btn.show {
  display: flex;
}

.back-to-top-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.back-to-top-btn:hover .back-to-top-icon {
  transform: translateY(-2px);
}

/* Animações de entrada */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-contact-section,
.footer-bottom-section {
  animation: slideUpFade 0.8s ease-out;
}

.footer-bottom-section {
  animation-delay: 0.2s;
  animation-fill-mode: both;
}

/* Responsividade */
@media (max-width: 1024px) {
  .footer-contact-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .contact-title::after,
  .social-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .social-buttons {
    justify-content: center;
  }
  
  .footer-logos {
    justify-content: center;
  }
  
  .contact-item:hover {
    transform: translateY(-2px);
  }
  
  .nav-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .nav-separator {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-premium-container {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .footer-logos {
    flex-direction: column;
    gap: 1rem;
  }
  
  .logo-card {
    padding: 0.75rem;
  }
  
  .footer-logo {
    height: 40px;
  }
  
  .footer-bottom-section {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .social-buttons {
    gap: 0.75rem;
  }
  
  .social-btn {
    width: 45px;
    height: 45px;
  }
  
  .social-icon {
    width: 20px;
    height: 20px;
  }
  
  .call-now-btn,
  .email-btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9rem;
  }
  
  .back-to-top-btn {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .footer-premium-container {
    padding: 1.5rem 1rem 1rem;
  }
  
  .footer-logo {
    height: 35px;
  }
  
  .social-buttons {
    gap: 0.5rem;
  }
  
  .social-btn {
    width: 42px;
    height: 42px;
  }
  
  .social-icon {
    width: 18px;
    height: 18px;
  }
  
  .call-now-btn,
  .email-btn {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    width: 100%;
  }
  
  .contact-item {
    padding: 0.625rem;
  }
  
  .footer-badge {
    padding: 0.5rem 1rem;
  }
  
  .back-to-top-btn {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  .back-to-top-icon {
    width: 20px;
    height: 20px;
  }
}

/* Melhorias de Acessibilidade */
@media (prefers-reduced-motion: reduce) {
  .footer-premium * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Estados de Foco para Acessibilidade */
.call-now-btn:focus,
.email-btn:focus,
.social-btn:focus,
.contact-link:focus,
.nav-link:focus,
.back-to-top-btn:focus {
  outline: 2px solid var(--gold-primary);
  outline-offset: 2px;
}
    /* ========== MODAIS E OVERLAYS ========== */
    .approval-message {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.9);
      background: var(--bg-card);
      padding: 30px;
      border-radius: 12px;
      box-shadow: var(--glass-shadow);
      text-align: center;
      max-width: 350px;
      width: 90%;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      color: var(--text-primary);
      border: 1px solid var(--gold-primary);
    }

    .approval-message.show {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -50%) scale(1);
    }

    .approval-icon {
      font-size: 3rem;
      color: var(--gold-primary);
      margin-bottom: 15px;
    }

    .approval-text {
      font-size: 1.1rem;
      margin-bottom: 20px;
      color: var(--text-primary);
    }

    .approval-btn {
      background: var(--gold-gradient);
      color: var(--bg-primary);
      border: none;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .approval-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--gold-glow);
    }

    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.8);
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .modal-overlay.show {
      opacity: 1;
      visibility: visible;
    }

    /* ========== RESPONSIVIDADE ========== */
    @media (max-width: 768px) {
      :root {
        --card-padding: 1.5rem;
        --element-spacing: 1rem;
      }

      .grid > div {
        margin-bottom: 1rem;
      }

      .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
      }

      .text-2xl.sm\:text-3xl {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
      }

      #statusHorario {
        margin-left: 0;
      }

      .mini-chat-container {
        width: calc(100vw - 2rem);
        left: 1rem;
        bottom: 1rem;
      }

      .embed-frame {
        height: 320px;
      }
      
      .chat-body {
        height: 350px;
      }
      
      .faq-area.open {
        max-height: 180px;
      }
    }

    @media (max-width: 480px) {
      .embed-frame {
        height: 250px;
      }
      
      .fab-menu {
        bottom: 1rem;
        right: 1rem;
      }
      
      .mini-chat-container {
        width: calc(100vw - 2rem);
        bottom: 160px;
      }
    }

    /* ========== ANIMAÇÕES E EFEITOS ========== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .grid > div {
      animation: fadeInUp 0.6s ease-out;
    }

    .grid > div:nth-child(2) {
      animation-delay: 0.2s;
    }

    /* ========== UTILITÁRIOS ========== */
    .gold-text { color: var(--gold-primary) !important; }
    .phone-text-no-effect {
      color: #ffffff !important;
      transition: none !important;
      text-decoration: none !important;
    }
    .phone-text-no-effect strong,
    .phone-text-no-effect {
      color: #ffffff !important;
    }
    .phone-text-no-effect:hover {
      color: #ffffff !important;
      text-decoration: none !important;
      transform: none !important;
    }
    .copyright-text,
    .copyright-text strong {
      color: #ffffff !important;
    }
    .clock-icon { font-size: 1.3rem; }
    .text-center { text-align: center; }
    .mt-6 { margin-top: 2rem; }
    .mb-6 { margin-bottom: 2rem; }
    .hidden { display: none; }

    /* Restaurar funcionalidades específicas do chat */
    .message-text {
      word-wrap: break-word;
      white-space: pre-wrap;
    }

    .message-input:disabled {
      background-color: var(--bg-elevated);
      color: var(--text-secondary);
      cursor: not-allowed;
    }

    button:disabled {
      opacity: 0.5;
      cursor: not-allowed !important;
    }
    /* ========== OTIMIZAÇÕES ESPECÍFICAS PARA TELEMÓVEIS ========== */
@media (max-width: 480px) {
  /* Ajustes no layout principal */
  .max-w-6xl {
    padding: 1.5rem 1rem;
  }

  /* Título principal mais compacto */
  .text-4xl.sm\:text-5xl {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 2rem;
  }

  /* Grid em coluna única com melhor espaçamento */
  .grid.grid-cols-1.md\:grid-cols-2 {
    gap: 1.5rem;
  }

  /* Cards mais compactos em mobile */
  .grid > div {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  /* Itens de contacto otimizados para touch */
  .contact-item {
    padding: 1.25rem;
    gap: 0.75rem;
    flex-direction: column;
    text-align: center;
  }

  /* Botões com área de toque aumentada */
  .btn-copy, .btn-email, .btn-google-maps {
    min-height: 44px;
    min-width: 44px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  /* Grupo de botões copiar melhor organizado */
  .contact-item .flex.items-center {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  /* Ajustes no horário */
  .text-2xl.sm\:text-3xl {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    font-size: 1.4rem;
  }

  #statusHorario {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  /* Mapa mais compacto */
  .embed-frame {
    height: 250px;
    border-width: 2px;
  }

  /* Redes sociais com melhor espaçamento */
  .flex.justify-center.space-x-6 {
    gap: 0.75rem;
  }

  .social-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Chat otimizado para mobile */
  .mini-chat-container {
    width: calc(100vw - 2rem);
    left: 1rem;
    bottom: 5rem;
    max-height: 70vh;
  }

  .chat-body {
    height: 50vh;
  }

  .chat-header {
    padding: 1rem 1.25rem;
  }

  .messages-container {
    padding: 1rem;
  }

  .message {
    max-width: 90%;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .input-area {
    padding: 1rem;
  }

  /* Menu FAB reposicionado */
  .fab-menu {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }

  .fab-btn {
    width: 50px;
    height: 50px;
  }

  .fab-btn i {
    font-size: 1.1rem;
  }

  /* Rodapé mais compacto */
  footer {
    margin-top: 4rem !important;
    padding: 1.5rem 1rem;
  }

  footer .flex.items-center.justify-center.space-x-6 {
    gap: 1rem;
  }

  footer img {
    height: 2rem;
  }

  /* Modal de aprovação responsivo */
  .approval-message {
    width: 95%;
    margin: 0 1rem;
    padding: 1.5rem;
  }

  /* Melhorias de usabilidade para formulários */
  .identification-input, 
  .phone-input, 
  .message-input {
    font-size: 16px; /* Previne zoom no iOS */
    padding: 0.875rem 1rem;
  }

  /* Ajustes no sistema de FAQ */
  .faq-items {
    max-height: 120px;
  }

  .faq-item {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }

  /* Tooltips reposicionados para mobile */
  .tooltip {
    bottom: 100%;
    transform: translateX(-50%) translateY(-8px);
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
  }

  /* Status de horário mais visível */
  #statusHorario {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* Melhorias de performance para animações */
  .grid > div,
  .contact-item,
  .social-icon {
    animation-duration: 0.4s;
  }
}

/* ========== OTIMIZAÇÕES PARA TABLETS PEQUENOS ========== */
@media (max-width: 768px) and (min-width: 481px) {
  .max-w-6xl {
    padding: 2rem 1.5rem;
  }

  .grid > div {
    padding: 2rem;
  }

  .embed-frame {
    height: 300px;
  }

  .mini-chat-container {
    width: 400px;
  }
}

/* ========== MELHORIAS DE ACESSIBILIDADE MOBILE ========== */
@media (max-width: 480px) {
  /* Garantir contraste adequado */
  .gold-text {
    font-weight: 600;
  }

  /* Melhor legibilidade do texto */
  body {
    font-size: 16px;
    line-height: 1.5;
  }

  /* Feedback tátil melhorado */
  .btn-copy:active,
  .btn-email:active,
  .btn-google-maps:active,
  .fab-btn:active {
    transform: scale(0.95);
  }

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

  /* Otimizações de performance */
  .grid > div::before {
    display: none; /* Desativa efeito de brilho em mobile para performance */
  }
}

/* ========== ORIENTAÇÃO LANDSCAPE ========== */
@media (max-width: 480px) and (orientation: landscape) {
  .mini-chat-container {
    bottom: 4rem;
    max-height: 60vh;
  }

  .chat-body {
    height: 40vh;
  }

  .hero-section {
    min-height: auto;
    padding: 2rem 1rem;
  }
}

/* ========== DISPOSITIVOS COM NOTCH ========== */
@supports(padding: max(0px)) {
  @media (max-width: 480px) {
    .max-w-6xl {
      padding-left: max(1rem, env(safe-area-inset-left));
      padding-right: max(1rem, env(safe-area-inset-right));
      padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
    }

    .fab-menu {
      right: max(1rem, env(safe-area-inset-right));
      bottom: max(1rem, env(safe-area-inset-bottom));
    }

  }
}
