/* Reset de estilos e importação da fonte */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");

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

/* Estilos gerais */
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background-color: #fafafa;
  color: #000;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background-color: #242424;
  color: #fff;
  padding: 10px 0;
}

.header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logotipo {
  height: 50px;
}

.logotipo:hover {
  border-radius: 5px;
  padding: 1px;
}

.site-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.site-nav ul {
  list-style-type: none;
  display: flex;
}

.site-nav ul li {
  margin: 0 10px;
}

.site-nav ul li a {
  text-decoration: none;
  color: #fff;
  padding: 8px 16px;
  background-color: #2c2c2c;
  border-radius: 5px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.site-nav ul li a:hover {
  background-color: #1e1e1e;
}

/* Hero Section */
.hero {
  background-color: #000000;
  background-image: url("/img/fundo\ contato\ desfocado.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 130px 0;
  text-align: left;
  background-repeat: no-repeat;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 15px;
  margin-left: 5px; /* Adiciona uma leve distância da borda */
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-left: 5px; /* Adiciona uma leve distância da borda */
  color: #b9b9b9;
}

/* Estilos específicos para cada botão */
.whatsapp-contact .contact-button {
  background-color: #25d366;
}

.whatsapp-contact .contact-button:hover {
  background-color: #075e54;
}

.instagram-contact .contact-button {
  background-color: #f13171;
}

.instagram-contact .contact-button:hover {
  background-color: rgb(224, 26, 43);
}

/* Seção de Contato */
#contato {
  padding: 50px 5px 50px 5px;
  background-color: #fff;
  border: 1px solid #fffbfb;
  margin: 1px 0px 1px 0px;
}

#contato h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Cards de Contato */
.cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: #ffffff;
  border: 1px solid #c2c2c2;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  display: grid;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  margin: 0;
}

.card .btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  color: #fff;
  background-color: #00346b;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border: 2px solid #e0e0e0;
}

.card .btn:hover {
  background-color: #007bffee;
  color: #ddd;
}

/* parte teste  */
/* Importa a fonte para consistência */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* --- Estrutura Principal --- */
.cards-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
}

/* --- Estilo Base do Card --- */
.social-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    width: 320px;
    min-height: 280px;
    padding: 30px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* --- Efeito de Hover Global nos Cards --- */
.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* --- Wrapper para Ícones/Logos --- */
.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* --- [AQUI ESTÁ O AJUSTE] Estilo para a sua imagem de logo --- */
.icon-wrapper img {
    width: 55%; /* Ajusta a largura da logo dentro do círculo */
    height: 55%; /* Ajusta a altura da logo dentro do círculo */
    object-fit: contain; /* Garante que a logo não fique distorcida */
    transition: transform 0.3s ease;
}

/* Efeito na logo ao passar o mouse no card */
.social-card:hover .icon-wrapper img {
    transform: scale(1.1); /* Logo cresce levemente */
}

/* --- Títulos dos Cards --- */
.social-card h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    letter-spacing: -0.5px;
}

/* --- Descrição dos Cards --- */
.social-card p {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* --- Estilo Base do Botão --- */
.btn-social {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.btn-social:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* --- ESTILOS ESPECÍFICOS PARA CADA REDE SOCIAL --- */

/* Instagram Card */
.instagram-card .icon-wrapper {
    background: white;
}
.instagram-card .btn-social {
    background: linear-gradient(to right, #833AB4, #FD1D1D, #FEDA75);
}
.instagram-card:hover {
    box-shadow: 0 0 0 3px #bc1888, 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* YouTube Card */
.youtube-card .icon-wrapper {
    background-color: #ffffff;
}
.youtube-card .btn-social {
    background-color: #FF0000;
}
.youtube-card:hover {
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2);
}

/* TikTok Card */
.tiktok-card .icon-wrapper {
    background-color: #ffffff;
}
.tiktok-card .btn-social {
    background: linear-gradient(to right, #FF0050, #00F2EA);
}
.tiktok-card:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 0 0 3px #FF0050;
}

/* fim parte teste */

/* Imagem e Descrição */
.imagem-descricao {
  text-align: center;
  margin-top: 20px;
}

.imagem-descricao img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.imagem-descricao p {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}

/* Footer */
.site-footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  width: 100%;
}

/* Responsividade */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: center;
  }

  .logo-container {
    order: -1; /* Move a logo para cima do menu */
    margin-bottom: 10px;
  }

  .site-nav {
    display: flex;
    flex-direction: row; /* Alterado para row */
    align-items: center;
    width: 100%;
    justify-content: center; /* Centraliza o menu horizontalmente */
  }

  .site-nav ul {
    display: flex;
    flex-direction: row; /* Alterado para row */
    width: auto;
    align-items: center;
  }

  .site-nav ul li {
    margin: 0 5px; /* Ajustado para margens menores */
  }

  .site-nav ul li a {
    padding: 8px 12px;
    font-size: 14px;
  }

  .contact-form,
  .rede {
    padding: 20px;
  }

  .contact-button {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
