/* IMPORTAÇÃO DE FONTE EXTERNA (Poppins) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ESTILOS GERAIS */
body {
  background-color: #fcfcfc;
  font-family: 'Poppins', sans-serif;
  color: #25282e;
}

* {
  color: #25282e;
}

a, i {
  transition: all 0.3s ease;
  text-decoration: none;
}

.secondary-color {
  color: #6c757d;
}

.center-image {
  background-size: cover;
  background-position: center;
}

/* BOTÃO CUSTOMIZADO */
.btn-custom {
  text-decoration: none;
  background-color: #25282e;
  color: #FFF !important;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}

.btn-custom:hover {
  background-color: #c1b696;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* HEADER */
#header {
  padding: 20px 0;
  border-bottom: 1px solid #eaeaea;
  background-color: #fff;
}

#logo {
  width: 40px;
  margin-right: 15px;
}

#header h1 {
  font-weight: 700;
  margin: 0;
  font-size: 2rem;
  color: #25282e;
}

/* NAVBAR */
#navbar {
  padding: 15px;
  margin-bottom: 20px;
}

#navbar a {
  color: #555;
  font-weight: 500;
  margin: 0 15px;
  font-size: 1.05rem;
  position: relative;
}

#navbar a:hover {
  color: #c1b696;
}

#navbar a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #c1b696;
  transition: width 0.3s;
}

#navbar a:hover::after {
  width: 100%;
}

/* ESTRUTURA DE IMAGENS (Evita que o zoom vaze) */
.image-wrapper {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}

/* MAIN IMAGE (IMAGEM PRINCIPAL) */
.main-image {
  height: 450px;
  background-image: url('../img/g_1.jpg'); /* Caminho ajustado para CSS externo */
  background-color: #ccc; 
  position: relative;
  width: 100%;
  transition: transform 0.5s ease;
}

.main-image:hover {
  transform: scale(1.05);
}

.main-image-info {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 30px;
  position: fixed; 
  left: 30px;
  bottom: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
  z-index: 1000; 
}

.main-image-info h2 {
  font-weight: 700;
}

/* GALLERY (GALERIA) */
.gallery-item {
  margin-bottom: 50px;
}

.gallery-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 15px;
}

.small-image-container {
  height: 280px;
  width: 100%;
  transition: transform 0.5s ease;
  background-color: #ddd;
}

.small-image-container:hover {
  transform: scale(1.08);
}

/* IMAGENS DA GALERIA (Caminhos ajustados para CSS externo) */
#img-2 { background-image: url('../img/g_7.jpg'); }
#img-3 { background-image: url('../img/g_8.jpg'); }
#img-4 { background-image: url('../img/g_9.jpg'); }
#img-5 { background-image: url('../img/g_10.jpg'); }
#img-6 { background-image: url('../img/g_11.jpg'); }

#gallery-container h1 {
  text-align: center;
  font-weight: 700;
  margin: 60px 0 40px 0;
  position: relative;
}

/* FOOTER */
footer {
  border-top: 1px solid #eaeaea;
  padding: 50px 0 20px 0;
  margin-top: 50px;
}

footer i {
  font-size: 24px;
}

#social-icons-container {
  gap: 20px;
  margin-bottom: 20px;
}

#social-icons-container a:hover i {
  color: #c1b696;
  transform: translateY(-3px);
  display: inline-block;
}

/* LOGIN ICON */
.login {
  font-size: 28px;
}

.login a {
  color: #25282e;
}

.login a:hover {
  color: #c1b696;
}

/* MODALS */
.modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.modal-header {
  border-bottom: none;
}