/* ================================
   Variáveis de Cores (Tema)
================================= */
:root {
  --azul-printalentejo: #003366;
  --laranja-destaque: #F6A500;
  --verde-assistencia: #28a745;
  --cinza-escuro: #444444;
  --cinza-claro: #666666;
  --preto-puro: #000000;
  --branco: #ffffff;
}

/* ================================
   Base e Tipografia
================================= */
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  background-color: #f9f9f9;
  color: var(--cinza-escuro);
}

/* ================================
   Botões Flutuantes (Social)
================================= */
.about {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  z-index: 100;
}

.bg_links {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--branco);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.bg_links:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 10px #fbb80e, 0 0 20px #fbb80e, 0 0 30px #fbb80e;
  border-color: #fbb80e;
}

.bg_links:hover .icon {
  color: #fbb80e;
  text-shadow: 0 0 5px #fbb80e;
}

.icon {
  color: var(--branco);
  font-size: 1.2rem;
}
.icon-img {
  width: 20px;
  height: 20px;
  filter: invert(1); /* deixa branco se a imagem for preta */
}


/* ================================
   Navegação Principal (Menu)
================================= */
.mainNav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 1000;
  color: white;
}

.mainNav__logo img {
  height: 70px;
}

.mainNav__logo a {
  display: inline-block;
  cursor: pointer;
}

.logo-neon {
  transition: filter 0.3s ease, box-shadow 0.3s ease;
}

.logo-neon:hover {
  filter: drop-shadow(0 0 5px #fbb80e) drop-shadow(0 0 10px #fbb80e);
  box-shadow: 0 0 10px #fbb80e, 0 0 20px #fbb80e;
}

.mainNav__links {
  display: flex;
  gap: 20px;
}

.mainNav__link {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  color: white;
  position: relative;
  padding: 4px;
  transition: 0.3s;
}

.mainNav__link::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  background: white;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}

.mainNav__link:hover {
  color: #fbb80e;
}

.mainNav__link:hover::after {
  width: 100%;
  background: #fbb80e;
  box-shadow: 0 0 8px #fbb80e, 0 0 12px #fbb80e;
}

.mainNav__icon {
  display: none;
  cursor: pointer;
}

/* ================================
   Header com Vídeo de Fundo
================================= */
.mainHeading {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.5);
}

/* ================================
   Leque de cartões sobrepostos
================================= */
.empresa-leque {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 360px;
  margin: 100px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.empresa-card {
  position: absolute;
  width: 320px;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
  color: white;
  text-align: center;
  padding: 30px 24px;
  transition: all 0.5s ease;
  z-index: 1;
}

.empresa-card::before {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--laranja-destaque);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.empresa-card-content {
  position: relative;
  z-index: 2;
}

.empresa-card h2 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--laranja-destaque);
}

.empresa-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

/* Efeito leque */
.empresa-card:nth-child(1) {
  transform: rotate(-10deg) translateX(-160px);
  z-index: 1;
}
.empresa-card:nth-child(2) {
  transform: rotate(0deg);
  z-index: 2;
}
.empresa-card:nth-child(3) {
  transform: rotate(10deg) translateX(160px);
  z-index: 1;
}

/* Hover traz para frente */
.empresa-card:hover {
  transform: rotate(0deg) scale(1.05);
  z-index: 3;
}

/* ================================
   Responsivo (Mobile/Tablet)
================================= */
@media (max-width: 992px) {
  .mainHeading__content {
    flex-direction: column;
    text-align: center;
  }

  .mainNav__links {
    display: none;
  }

  .mainNav__icon {
    display: block;
  }
}

@media (max-width: 768px) {
  .empresa-leque {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }

  .empresa-card {
    position: relative;
    transform: none !important;
    margin-bottom: 20px;
    width: 90%;
  }
}
