@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

body {
    background: #ffffff;
    color: #000000;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

header {
    background: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: center;
    padding: 15px;
    background: #fff;
}

nav a {
    color: #000000;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: 0.7s;
}

nav a:hover {
    color: rgb(255, 81, 0);
    transform: scale(1.1);
    transform: translateY(-5px);
}

section {
    padding: 80px 20px;
    min-height: 100vh;
}

h2 {
    text-align: center;
    margin-bottom: 30px;
    color: rgb(0, 0, 0);
    font-family: Montserrat, sans-serif;
    font-size: 65px;
}

/* Fotos em grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 20px;
}

.item {
    background: #11111100;
    padding: 10px;
    border-radius: 10px;
    text-align: justify;
    font-size: 15px;
}

.item:hover {
    background: #0000;

}

.item img {
  max-width: 100%;
  border-radius: 10px;
  height: 200px;
  margin: 10px auto;
  width: 200px;
  border: 4px solid transparent;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.item img:hover {
    
    
    border: 3px solid #ffffff;
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.7);
    transform: translateY(-10px) scale(1.05);
    cursor: pointer;
}


.item p {
    margin-top: 10px;
    font-weight: 400;
    font-size: 2em;
}

footer {
    background: #ffffff;
    text-align: center;
    padding: 15px;
 
    color: #000000;
}

footer a {
    color: rgb(255, 0, 0);
    text-decoration: none;
    transition: all 0.3s ease;
}
footer a:hover {
    color: rgb(255, 81, 0);
    text-decoration: underline;
    transform: scale(1.1) translateY(-5px);

}

/*fade louco*/

@keyframes gradient-shift {
  0% {background-position: 0%}
  100% {background-position: 100%}
}
 
/* Styling our animated gradient text */
.animated-gradient {
  font-family: 'Open Sans', sans-serif;
  font-size: 5em;
  background: linear-gradient(270deg, #ff4b59, #ff9057, #000000, #e35050, #f56200, #ac0505, #ff4b59);
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease-in-out infinite;
}
.trate-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px; /* Espaçamento entre as imagens */
    flex-wrap: wrap; /* Quebra de linha se for necessário */
    margin: 10px auto;
    max-width: 1200px; /* limita a largura para não ficar gigante */
    padding: 5px;
}

.trate-images img {
    width: 820px;
    height: 620px;
    object-fit: cover; /* Mantém proporção sem esticar */
    border-radius: 15px;
    border: 3px solid transparent;
    background: linear-gradient(135deg, #111, #222);
    padding: 5px; /* Cria respiro entre a imagem e a borda */
    transition: all 0.4s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

/* Hover elegante */
.trate-images img:hover {
    transform: translateY(-10px) scale(1.05);
    border: 3px solid #ff2e2e;
    box-shadow: 0 12px 28px rgba(255, 0, 0, 0.3);
}
