CSS

:root {
  --primary: #8B4513;
  --secondary: #5D4037;
  --light: #f0e6dd;
  --dark: #000000;
  --white: #ffffff;
  --gray: #777777;
  --cor-primaria: #050000;
  --cor-secundaria: #e74c3c;
  --cor-texto: #333;
  --cor-fundo: #f9f9f9;
  --cor-borda: #ddd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.8;
  color: var(--cor-texto);
  background-color: var(--cor-fundo);
  padding: 0;
  margin: 0;
}

header {
  background-color: rgb(255, 255, 255);
  color: var(--dark);
  padding: 30px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.interface {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .logo {
  position: absolute;
  left: 20px;
}

header .logo img {
  max-width: 60px;
  height: auto;
}

.menu-desktop {
  display: flex;
  justify-content: center;
  width: 100%;
}

.menu-desktop ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0 auto;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-desktop ul li a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 15px;
  font-family: 'Poppins', sans-serif;
}

.menu-desktop ul li a:hover {
  color: var(--primary);
}

/* Container principal */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 20px;
}

/* Grade de Momentos */
.momentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.momentos-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%; /* Começa redonda */
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, filter 0.4s ease, border-radius 0.4s ease;
}

.momentos-image:hover {
  transform: scale(1.1);        /* Amplia */
  border-radius: 12px;          /* Fica quadrada com cantos levemente arredondados */
  filter: brightness(1.1);
}


.momentos-image:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}


.momentos-image:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}


/* Item de momento */
.momentos-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.momentos-item:hover {
  transform: translateY(-5px);
}


/* Conteúdo */
.momentos-content {
  padding: 1.5rem;
  flex: 1;
}

.momentos-content h2 {
  color: var(--cor-primaria);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
}

.momentos-content p {
  font-size: 1rem;
  color: var(--gray);
}


.momentos-image:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* Seção de capa para a página Momentos */
.momentos-hero {
  background-image: url("imagens_momentos/imagem-cabecalho.jpeg"); /* Substitua pelo caminho correto */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
  position: relative;
}

.momentos-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* escurece a imagem */
  z-index: 1;
}

.momentos-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.momentos-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.momentos-hero-content p {
  font-size: 1.25rem;
}


/* AQUI COMEÇA O RODAPÉ */
.white-footer {
  background-color: #f5f5f5;
  color: #000;
  padding: 60px 20px 30px;
  font-family: 'Roboto', sans-serif;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.footer-col {
  flex: 1;
  padding: 0 20px;
  margin-bottom: 20px;
}

.footer-col h3 {
  color: #8B4513;
  font-size: 1.4rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #8B4513;
}

.footer-col p {
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #5D4037;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #8B4513;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a img {
  transition: all 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.9rem;
  color: #777;
}

.momentos-hero-content h1 {
  font-size: 2.8rem;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  animation: zoomIn 1.2s ease;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}