/* ===== Fontes ===== */
@font-face {
  font-family: 'GalanoGrotesqueBold';
  src: url('/assets/fonts/GalanoGrotesqueBold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'GalanoGrotesqueRegular';
  src: url('/assets/fonts/GalanoGrotesqueRegular.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'GalanoGrotesqueItalic';
  src: url('/assets/fonts/GalanoGrotesqueItalic.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

.footer {
  background: #2c3e50;
  color: #fff;
  padding: 40px 20px 0 20px;
  margin-top: auto;
  font-family: GalanoGrotesqueRegular, sans-serif;
  width: 100%;
  border-top: 4px solid #c72041;
}

/* ---------------------------
   COLUNAS DO FOOTER
--------------------------- */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-logo img {
  height: 80px;        /* ajusta o tamanho */
  margin-bottom: 30px; /* espaço abaixo do logo */
  display: block;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.footer-col p,
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: #fcd4a4; }

/* Redes sociais */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
.footer-social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}
.footer-social a:hover { 
  background: #fff;
  color: #c72041;
}

/* Menu */
.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fff;
}

/* ---------------------------
   COLUNA NEWSLETTER + CONTATO
--------------------------- */

.footer-contato{
  margin-top: 10px;
}

/* Newsletter */
.footer-newsletter {
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  height: 50px;
  padding: 0 15px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  box-sizing: border-box;
}

.newsletter-button {
  height: 50px;
  padding: 0 20px;
  background: #c72041;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-button:hover {
  background: #a7112e;
}

.newsletter-msg {
  margin-top: 8px;
  font-size: 13px;
  font-style: italic;
}

.newsletter-msg.success {
  color: #28a745; /* verde */
}

.newsletter-msg.error {
  color: #dc3545; /* vermelho */
}

.newsletter-msg.warning {
  color: #ffc107; /* amarelo */
}

.footer-contato {
  display: flex;
  justify-content: center;  /* 🔹 Centraliza os botões */
  gap: 10px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* Botões */
.btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 120px;    /* 🔹 mantém tamanhos consistentes */
  justify-content: center;
}

/* WhatsApp */
.btn-footer.btn-whatsapp {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}
.btn-footer.btn-whatsapp:hover {
  background: #1ebe5d;
  border: none;
  color: #fff;
}

/* Contato outline */
.btn-footer.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-footer.btn-outline:hover {
  background: #fff;
  color: #2c3e50;
}


/* ---------------------------
   BARRA INFERIOR
--------------------------- */
.footer-bottom {
  /* layout */
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  /* visual */
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 13px;
  color: rgba(255,255,255,0.7);

  /* centralização do conteúdo */
  max-width: 1300px;   /* mesmo limite do resto do site */
  margin: 0 auto;      /* centraliza dentro da página */
}

.footer-bottom-left {
  flex: 1;
  text-align: left;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
}

.footer-bottom-right img {
  height: 24px;        /* ajuste como preferir */
  width: auto;
  display: block;
  opacity: 0.9;
  transition: opacity .2s ease;
}

.footer-bottom-right img:hover {
  opacity: 1;
}

/* empilha no mobile */
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom-left {
    text-align: center;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;   /* 🔹 centraliza as colunas */
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input {
    width: 100%;
    font-size: 14px;
    height: 45px !important;   /* 🔹 garante altura */
    line-height: 45px;         /* 🔹 centraliza o texto verticalmente */
    padding: 0 12px;
    border-radius: 6px;
    border: none;
    box-sizing: border-box;
    display: block;
  }

  .newsletter-button {
    width: 100%;
    height: 45px;
    font-size: 14px;
    border-radius: 6px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-logo img {
    margin: 0 auto;        /* 🔹 garante que o logo fique no centro */
  }

  .footer-social {
    margin-top: 20px;
    margin-left: 20px;

  }

  .footer-col ul {
    padding: 0;
  }

  .footer-col ul li {
    text-align: center;    /* 🔹 garante centralização dos links */
  }
}

