/* ==============================================
   HEADER LAGOA SECA STYLE
   Inspirado no site oficial
   ============================================== */

/* Barra Superior Escura */
.top-bar-lagoa {
  background: #1b4c5e;
  color: white;
  padding: 10px 0;
  font-size: 0.85rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-text {
  font-size: 0.85rem;
}

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

.top-social a {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1b4c5e;
  transition: all var(--transition-fast);
  text-decoration: none;
  font-size: 16px;
}

.top-social a:hover {
  background: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

/* Header Principal Verde */
.header-lagoa {
  background: linear-gradient(135deg, #2e7d6e 0%, #3d9981 100%);
  padding: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  position: relative;
}

.header-lagoa-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  position: relative;
}

/* Logo */
.header-logo-wrap {
  position: relative;
  z-index: 10;
}

.header-logo-lagoa {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.15));
  transition: transform var(--transition);
}

.header-logo-lagoa:hover {
  transform: scale(1.03);
}

/* Título */
.header-title-lagoa {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.header-title-lagoa h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: white;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-subtitle-lagoa {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  margin: 3px 0 0 0;
  font-weight: 400;
}

/* Espaço à direita para balancear */
.header-spacer {
  width: 80px;
}

/* Responsividade */
@media (max-width: 768px) {
  .top-bar-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .top-social {
    justify-content: center;
  }
  
  .header-lagoa-content {
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
  }

  .header-logo-lagoa {
    height: 48px;
  }

  .header-title-lagoa {
    text-align: center;
    padding: 0;
  }

  .header-title-lagoa h1 {
    font-size: 1.2rem;
  }

  .header-subtitle-lagoa {
    font-size: 0.75rem;
  }

  .header-spacer {
    display: none;
  }
}

@media (max-width: 480px) {
  .header-logo-lagoa {
    height: 42px;
  }

  .header-title-lagoa h1 {
    font-size: 1.1rem;
  }

  .header-subtitle-lagoa {
    font-size: 0.7rem;
  }
  
  .top-social a {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
