
/* RESET GLOBAL */
/* ===================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

/* ===================================== */
/* BODY */
/* ===================================== */

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a30; /* grafite institucional */

  background: url("../images/bg_wayamou.png") no-repeat center center/cover;

  min-height: 100vh;
}

/* ===================================== */
/* MAIN */
/* ===================================== */

main {
  min-height: 100vh; /* Altura mínima da viewport para centralização vertical */
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza horizontalmente */
  justify-content: center; /* Centraliza verticalmente */
  padding: 40px 20px; /* Espaço no topo, base e laterais */
  gap: 40px; /* Espaço entre os elementos filhos */
}

/* ===================================== */
/* SECTION */
/* ===================================== */

.section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Removido flex-grow para permitir que o justify-content do main controle o espaçamento */
}

/* ===================================== */
/* CONTAINER */
/* ===================================== */

.container {
  width: 90%;
  max-width: 1200px;
}


/* ===================================== */
/* ROWS (TOP & BASE) */
/* ===================================== */

.mensagens-row-top,
.contact-row-base {
  width: 90%; /* Não ocupa a largura total para parecer flutuante */
  max-width: 1100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.15); /* Leve destaque para as rows flutuantes */
  backdrop-filter: blur(8px);
  border-radius: 10px; /* Bordas arredondadas para o visual flutuante */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-row-base {
  justify-content: space-between;
}

/* Estilo para o slider de mensagens */
.mengens-item {
  text-align: center;
  max-width: 800px;
}

#mensagem-texto {
  transition: opacity 0.5s ease-in-out;
}

/* ===================================== */
/* LINKS E ÍCONES */
/* ===================================== */

a {
  text-decoration: none;
  color: inherit;
}

.social-items a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-left: 15px;
  color: #1f2a30;
  transition: 0.3s ease;
}

.social-items a:hover {
  color: #b8860b;
}

/* ===================================== */
/* COLUNAS */
/* ===================================== */

.col3-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.col3 {
  flex: 1;
  text-align: center;
  padding: 20px;
}

/* ===================================== */
/* COLUNA CENTRAL (CORINGA / AMPLIADA) */
/* ===================================== */

.col-center {
  flex: 2.5;
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 30px;

  background-color: rgba(255, 255, 255, 0.15); /* Leve destaque para as rows flutuantes */
  backdrop-filter: blur(8px);
  border-radius: 10px; /* Bordas arredondadas para o visual flutuante */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================== */
/* LOGOS */
/* ===================================== */

.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.image-box {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo-name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===================================== */
/* TEXTO CENTRAL */
/* ===================================== */

.info-column p {
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
  color: #2e3b42;
}

/* ===================================== */
/* RESPONSIVO */
/* ===================================== */

@media (max-width: 900px) {
  main {
    height: auto;
    min-height: 100vh;
    justify-content: flex-start;
    gap: 40px; /* Mantém o conceito de espaços no mobile */
  }

  .mensagens-row-top,
  .contact-row-base {
    width: 95%;
  }

  .contact-row-base {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .col3-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  
  .col-center {
    flex: none;
    width: 100%;
  }
}
