/* Estilo geral */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #fdfcfc;
  color: #333;
  line-height: 1.6;
}

/* Cabeçalho */
header {
  background: #5c0a0a; /* Bordô escuro */
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.logo-container {
  margin-bottom: 10px;
}

.logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;   /* Deixa circular */
  object-fit: cover;    /* Ajusta dentro do círculo */
  border: 3px solid #ffd700; /* Borda dourada opcional */
}

nav ul {
  list-style: none;
  margin: 15px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 30px;
}

nav a {
  color: #ffd700; /* Dourado */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #fff;
}

/* Seções */
main {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

section {
  margin-bottom: 50px;
}

h2 {
  color: #5c0a0a;
  padding-left: 10px;
  margin-bottom: 15px;
  text-align: center;
}

/* Galeria */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 12px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.2rem;
  font-style: italic;
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card:hover {
  transform: scale(1.05);
  border-color: #5c0a0a;
  color: #5c0a0a;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 20px;
  background: #5c0a0a;
  color: #fff;
  font-size: 0.9rem;
  margin-top: 30px;
}
.intro{
  text-align: left;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #555;
}
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Seção de redes sociais */
.social-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #f7f7f7;
}
/* Grid das redes */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    justify-items: center;
}

/* Cartões de rede social */
.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Ícones dentro do card */
.social-card .icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Cores por rede */
.instagram {
    background: #E1306C;
}

.facebook {
    background: #1877F2;
}

.tiktok {
    background: #000000;
}

/* Efeito hover */
.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* Responsividade */
@media (max-width: 500px) {
    .social-card {
        width: 120px;
        height: 120px;
        font-size: 1rem;
    }

    .social-card .icon {
        font-size: 2rem;
    }
}
