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


body.paginaInicial {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(270deg, #333, #333);
  background-size: 400% 400%;
  animation: gradientMove 12s ease infinite;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}


@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


header {
  background: #ffaa00(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px #ffaa00(0,0,0,0.4);
}

header h1 {
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px #ffaa00;
}


nav ul.menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

nav ul.menu > li {
  position: relative;
}

nav ul.menu > li a {
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: bold;
}

nav ul.menu > li a:hover {
  background: #ffaa00(255, 255, 255, 0.2);
  transform: translateY(-3px);
  color: #ffeb3b;
}


nav ul.submenu {
  list-style: none;
  position: absolute;
  top: 120%;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px 0;
  border-radius: 10px;
  display: none;
  flex-direction: column;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  animation: fadeIn 0.4s ease;
}

nav ul.submenu li {
  text-align: left;
}

nav ul.submenu li a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  transition: background 0.3s;
}

nav ul.submenu li a:hover {
  background: #ffaa00(255, 255, 255, 0.2);
  color: #ffd369;
}

nav ul.menu li:hover .submenu {
  display: flex;
}


main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

main h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease;
  color: white;
}

main p {
  font-size: 1.2rem;
  max-width: 600px;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease;
}


footer {
  background: #ffaa00(0, 0, 0, 0.3);
  padding: 15px;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.4);
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
 




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

body.bodyp {
  font-family: Arial, sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}


nav {
  background: #2c3e50;
  padding: 10px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #f39c12;
}


.container {
  width: 80%;
  margin: 20px auto;
}

h1, h2 {
  color: #2c3e50;
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 10px;
}

video {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}


table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

table, th, td {
  border: 1px solid #2c3e50;
}

th, td {
  padding: 10px;
  text-align: center;
}


form {
  display: flex;
  flex-direction: column;
}

form input, form textarea, form button {
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background: #2c3e50;
  color: #fff;
  cursor: pointer;
}

form button:hover {
  background: #f39c12;
}

/* QUEM SOU EU */
.imgQuem {
  display: flex;
  justify-content: center;   
  align-items: center;     
  margin: 0 auto;          
  width: 100%;               
  text-align: center;
}

.imgQuem img {
  width: 300px;              
  height: auto;              
  border-radius: 50%;        
  border: 5px solid #fff;    
  box-shadow: 0 8px 20px rgba(0,0,0,0.4); 
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.imgQuem img:hover {
  transform: scale(1.1) rotate(3deg); 
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}



/*Cards*/
 .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .card {
      background: #333;
      border-radius: 0px;
      overflow: hidden;

      box-shadow: 0 4px 8px rgba(0,0,0,0.5);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0,0,0,0.8);
    }

    .card img {
      width: 100%;
      height: 200px; 
      object-fit: cover; 
      display: block;

    }
  img.imgCards{
    border: none;
    border-radius: 0%;
  }

    .card-content {
      padding: 15px;
    }

    .card-content h2 {
      margin: 0 0 10px;
      font-size: 20px;
      color: #ffaa00;
    }

    .card-content p {
      font-size: 14px;
      line-height: 1.4;
      color: #ddd;
    }

    .card-content button {
      margin-top: 10px;
      padding: 10px 15px;
      border: none;
      border-radius: 6px;
      background: #ffcc00;
      color: #000;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s;
    }

    .card-content button:hover {
      background: #ffaa00;
    }


    /* Tabela */
    body.bodyT{
      background-color: #333;

    }
    h1.h1T{
      color: #ffaa00;
    }
th.thT{
  color: #ffaa00;
  
}
table.tableT th,
table.tableT td {
    color: white; 
    border: 2px solid #ffaa00;
    padding: 8px; 
}


table.tableT {
    border: 2px solid #ffaa00;
    border-collapse: collapse; 
}

/*Lista*/

body.list{
  background-color: #333;
  color: #ffaa00;

}
h2.list{
  color: #ffaa00;
}
h1.list{
  color: #ffaa00;
}
/*formulario*/

body.formulario {
  background-color: #333;
  color: #ffaa00;
  font-family: Arial, sans-serif;
  margin: 20px;
}


h1.formulario, h2.formulario {
  color: #ffaa00;
  margin-bottom: 10px;
}


label.formulario {
  color: #ffaa00;
  font-weight: bold;
}


input[type="text"],
input[type="number"],
input[type="date"],
input[type="email"],
input[type="radio"],
input[type="convênio"],
textarea {
  background-color: #222;
  border: 2px solid #ffaa00;
  color: #ffaa00;
  padding: 8px;
  margin-bottom: 10px;
  border-radius: 5px;
  width: 100%;
  max-width: 400px;
}


input[type="radio"] {
  width: auto;
  margin: 5px;
}


input[type="submit"] {
  background-color: #ffaa00;
  color: #333;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

input[type="submit"]:hover {
  background-color: #ff8800;
}
/*Menu*/
.descricao {
  margin: 20px auto;
  max-width: 800px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

.imagem {
  text-align: center;
  margin: 20px 0;
}

.imagem img {
  border: 3px solid #ffaa00;
  border-radius: 10px;
}


.rodape {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  color: #ffaa00;
}
/* Centraliza a imagem */
.foto-container {
  display: flex;
  justify-content: center;  
  align-items: center;      
  width: 100%;
  margin: 30px 0;
}

/* Estilo da imagem */
img.Quem {
  width: 250px;
  height: 300px;
  object-fit: cover;          
  border-radius: 20px;        
  border: 4px solid #ffaa00;  
  box-shadow: 0px 0px 25px #ffaa00;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: pulsar 3s infinite alternate;
}

img.Quem:hover {
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0px 0px 40px #ffaa00;
}

/* Animação do brilho */
@keyframes pulsar {
  from {
    box-shadow: 0px 0px 25px #ffaa00;
  }
  to {
    box-shadow: 0px 0px 45px #ffaa00;
  }
}


/*Contatos*/

.contatos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px auto;
  max-width: 800px;
}

.card-contato {
  background: #222;
  border: 2px solid #ffaa00;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 0px 15px #ffaa00;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulsar 3s infinite alternate;
}

.card-contato h2 {
  color: #ffaa00;
  margin-bottom: 10px;
}

.card-contato p {
  color: #ffaa00;
  font-size: 16px;
  word-wrap: break-word;
}

.card-contato a {
  color: #ffaa00;
  text-decoration: none;
  font-weight: bold;
}

.card-contato a:hover {
  text-decoration: underline;
}


.card-contato:hover {
  transform: scale(1.05);
  box-shadow: 0px 0px 30px #ffaa00;
}


@keyframes pulsar {
  from {
    box-shadow: 0px 0px 10px #ffaa00;
  }
  to {
    box-shadow: 0px 0px 30px #ffaa00;
  }
}

h1.conta{
  color: #ffaa00;
}
body.conta{
  background-color: #333;
}





