* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #5c5c5c;
  background-color: #fff;
  text-align: justify;
}

p {
    text-indent: 40px;
  margin-bottom: 15px;
}

header {
  background-color: #f25f74;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
}

header .logo {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
}

header .logo img {
  height: 40px;
  margin-right: 10px;
}

header nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  font-weight: bold;
}

header nav a:hover {
  text-decoration: underline;
}

section {
  padding: 60px 10%;
}

.sobre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fcd2d9;
  flex-wrap: wrap;
}

.sobre .texto {
  flex: 1;
  color: #095e3f;
  min-width: 280px;
  padding-right: 30px;
  font-weight: bold;
}

.sobre h1 {
  font-size: 2rem;
  color: #fff;
  text-shadow: 2px 2px 4px #c24b5f;
  margin-bottom: 20px;
}

.sobre .imagem img {
  max-width: 450px;
  border-radius: 10px;
}

.informacoes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.informacoes .texto {
  flex: 1;
  min-width: 280px;
  padding: 20px;
  font-weight: bold;
  color: #efb4bf;
}

.informacoes .imagem img {
  width: 500px;
  border-radius: 10px;
}

.ajuda {
  background-color: #fcd2d9;
  color: #fff;
  text-align: center;
  padding: 60px 10%;
}

.ajuda h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 10px black;
}

.ajuda ul {
  list-style: none;
  line-height: 2;
  font-size: 1.1rem;
}

.adocao {
  background-color: #f25f74;
  color: #fff;
  text-align: center;
  padding: 60px 10%;
}

.carrossel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 30px auto;
}

.slides {
  display: flex;
  width: max-content;
  animation: deslizar 30s linear infinite;
}

.slides div {
  min-width: 220px;
  margin: 0 10px;
}

.carrossel img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

@keyframes deslizar {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


footer {
  background-color: #f25f74;
  color: #fff;
  text-align: center;
  padding: 30px 10%;
}

footer .links {
  margin-bottom: 20px;
}

footer .links a {
  color: #f1bebe;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}

footer .links a:hover {
  text-decoration: underline;
}

footer .social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

footer .logo-footer {
  height: 50px;
}

footer .icons a img {
  width: 25px;
  margin: 0 8px;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .sobre, .informacoes {
    flex-direction: column;
    text-align: center;
  }

  .carrossel img {
    width: 150px;
    height: 150px;
  }
}

/*******************************/
/*   NAV BAR - Codigos Renato */
/*******************************/


#navbar {
  position: sticky;
  top: 0;
  overflow: hidden;
  background-color: #f25f74;
}

#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

#navbar a:hover {
  background-color: #ddd;
  color: black;
}

#navbar a.active {
  background-color: #04AA6D;
  color: white;
}

.imgGato {
  width: 100%;
  height: auto; 
  max-width: 600px;
  display: block; 
  margin: 0 auto; 
}

@media (max-width: 480px) {
  .imgGato {
    max-width: 350px;
  }
}

#slogan {
  color: #c24b5f;
}

#slogan {
  background-color: #ffe6e6; 
  text-align: center; 
  padding: 40px 20px; 
  overflow: hidden; 
}

.slogan-container h3 {
  font-size: 1.8rem; 
  color: #333;
  font-weight: 600;
  animation: girarEntrada 2s ease-out; 
}

@keyframes girarEntrada {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  60% {
    transform: rotateY(-10deg);
    opacity: 1;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .slogan-container h3 {
    font-size: 1.4rem;
  }
}

/*********************************/
/* FORMULARIO DE CONTATO - Renato */
/*********************************/


.formulario {
  background-color: #fff7f7;
  padding: 60px 20px;
  text-align: center;
}

.formulario h2 {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.contato-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  outline: none;
  transition: border-color 0.3s ease;
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #d67c7c;
}

.contato-form button {
  background-color: #d67c7c;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contato-form button:hover {
  background-color: #b85d5d;
}

@media (max-width: 480px) {
  .formulario {
    padding: 40px 15px;
  }
  .formulario h2 {
    font-size: 1.6rem;
  }
  .contato-form input,
  .contato-form textarea {
    font-size: 0.95rem;
    padding: 12px;
  }
}
