/* Paleta: #007bff (azul), #28a745 (verde), #f8f9fa (cinza claro) */
body {
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  padding-top: 70px; /* espaço para o header fixo */
}

/* HERO */
.hero {
  background-image: url('../img/clinic_banner.jpg');
  background-size: cover;
  background-position: center;
}

/* Overlay escuro no vídeo */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Texto do hero */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

/* Tamanho reduzido só para a IMAGEM do hero */
.hero-img {
  height: 480px;
  object-fit: cover;
}

/* Cards de especialidades */
.especial-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.especial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Botão flutuante do WhatsApp */
.btn-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: #fff;
  padding: 14px 18px;
  border-radius: 50%;
  font-size: 28px;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
}

/* Seguradoras */
.ass-list img {
  height: 55px;
  object-fit: contain;
  transition: 0.2s;
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 0.65rem 1rem;
}

.navbar-brand {
  color: #0D4F8B;
  font-weight: bold;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.navbar-nav .nav-link {
  color: #0D4F8B;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: 0.25s ease;
  position: relative;
  padding-bottom: 4px;
  padding-left: 2px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #0A66C2;
  transition: width 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0A66C2;
  font-weight: 700;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Dropdown de idioma */
.dropdown-toggle {
  background-color: #ffffff;
  color: #0A66C2;
  border-radius: 6px;
  padding: 5px 12px;
  border: 1px solid #0A66C2;
}

.dropdown-menu {
  border-radius: 8px;
}

.dropdown-item {
  color: #0A66C2;
}

/* CTA de agendamento no topo */
.btn-cta {
  background: linear-gradient(135deg, #0A66C2, #0D4F8B);
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 6px 18px rgba(13, 79, 139, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 79, 139, 0.3);
  opacity: 0.95;
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(13, 79, 139, 0.2);
}

/* Bandeiras (idiomas) */
.flag-icon {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05), 0 2px 6px rgba(0,0,0,0.12);
  margin-right: 6px;
}

.flag-pt {
  background-image: url('https://flagcdn.com/w20/pt.png');
}

.flag-en {
  background-image: url('https://flagcdn.com/w20/gb.png');
}
body {
    margin: 0;
}

/* RODAPÉ */
#rodape {
    background-color: #0b3c5d !important;
    width: 100%;
    position: relative;
}


/* GARANTE QUE O FUNDO AZUL NÃO É SOBRESCRITO */
#rodape .container,
#rodape .row {
    background-color: transparent !important;
}

/* TÍTULOS */
#rodape h5 {
    color: #ffffff;
}

/* LINKS */
.footer-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
    color: #9dd6ff;
    padding-left: 5px;
}

/* ÍCONES SOCIAIS */
.social-container {
    display: flex;
    gap: 12px;
}
.social-icon img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.15);
}

/* ÍCONE MAPA */
.map-icon {
    font-size: 22px;
    color: #ffffff;
    text-decoration: none;
}
/* CRÉDITOS */
.development-credits {
    font-size: 0.85rem;
    opacity: 0.9;
}

.credits-highlight {
    font-weight: 600;
    color: #9dd6ff;
}



/* Créditos de Desenvolvimento - Texto legível e com bom contraste */
.development-credits {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65); /* texto claro para máxima visibilidade no rodapé azul */
  letter-spacing: 0.5px;
  line-height: 1.6;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 20px;
  text-align: left;
  opacity: 1; /* remover transparência excessiva */
}

/* Nomes específicos destacados - Clínica e Desenvolvedora */
.development-credits .credits-highlight {
  color: rgba(255,255,255,0.65) !important; 

  text-shadow: none !important; /* limpa o brilho para manter legibilidade */
  transition: all 0.3s ease !important;
  display: inline-block !important;
  opacity: 1 !important;
}

.development-credits .credits-highlight:hover {
  color: rgba(255,255,255,0.65) !important;
  text-shadow: 0 0 20px rgba(207, 206, 204, 0.833), 0 0 30px rgba(207, 206, 203, 0.7) !important;
  transform: scale(1.08) !important;
}

/* Links rápidos no rodapé */
.footer-link {
  position: relative;
  display: inline-block;
  padding-left: 0;
  cursor: pointer;
  color: #fafcfe !important; /* links claros sobre fundo azul */
  text-decoration-thickness: 1px;
  transition: color 0.25s ease, padding-left 0.25s ease, text-decoration-color 0.25s ease;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #042352;
  transition: width 0.25s ease;
}

.footer-link:hover {
  color: #042352 !important;
  padding-left: 4px;
  text-decoration: underline ;
  text-decoration-color: #f7f6f7;
}

.footer-link:hover::after {
  width: 100%;
}

/* Ícones sociais no rodapé */
.social-container {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.social-icon {
  width: 25px;
  height: 30px;
  background: #0D4F8B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  backdrop-filter: blur(3px);
  border: 1px solid rgb(46, 96, 184);
}

.social-icon img {
  width: 15px;
  transition: 0.3s ease;
}

.social-icon:hover {
  background: #f4f3f0;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
  border-color: #f5f4ef;
}

.social-icon:hover img {
  filter: brightness(0);
}

.social-icon.map-icon {
  color: #f8f9fa; /* ícone do mapa claro sobre azul */
  font-size: 15px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
}

.social-icon.map-icon:hover {
  color: #0D4F8B;
}

/* Utilidades */
.bg-light {
  background-color: #f8f9fa !important;
}

.btn-success {
  background: #28a745;
  border-color: #28a745;
}
#rodape,
#rodape p,
#rodape span,
#rodape li,
#rodape small,
#rodape a:not(.footer-link) {
  color: #f8f9fa !important; /* texto claro */
}