* {
  /* espaçamento */
  padding: 0;
  /* margem */
  margin: 0;
  /* caixa */
  box-sizing: border-box;
  /* fonte */
  font-family: "Times New Roman", Times, serif;
}
body {
  /* tamanho dos bgl */
  width: 100%;
  height: 100%;
  background-attachment: fixed;
  background-size: cover;
}

.menu {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.menu li a {
  color: #000000;
  display: block;
  text-decoration: none;
  padding: 10px 20px 10px 20px;
  margin-left: 20px;
  border-radius: 10px;
  font-size: 22px;

}
.menu li a:hover {
  color: #ffffff;
  display: block;
  text-decoration: none;
  margin-left: 20px;
  background-color: #333;
}

.logo img {
            max-width: 100%;
            height: auto;
        }

        @media (max-width: 768px) {
            .logo img {
                max-width: 100%;
                height: auto;
            }
        }
h1,
p {
  color: #000000;
  text-align: center;
  margin-top: 20px;
}
/* Adicione essas regras CSS ao seu arquivo style.css */

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Distribui as imagens horizontalmente com espaço entre elas */
}

.item {
    width: calc(33.33% - 20px); /* Define a largura das imagens (1/3 do espaço) com um espaço de 20px entre elas */
    margin-bottom: 20px;
    position: relative;
}

/* Adicione o CSS de "flip" aqui (o mesmo código do meu resposta anterior) */

.container .item {
  flex: 1 1 350px;
  margin: 10px;
}
.container,
.item img {
  width: 100%;
  border-radius: 10px;
}
.item img {
  width: 240px;
  height: 350px;
  
}

button {
  justify-content: space-between;
  background-color: white;
  border-radius: 15%;
}
table {
  width: 100%;
  height: 100%;
}

.btn-link {
  text-decoration: none;
  border: 1px solid #000000;
  width: 160px;
  text-align: center;
  padding: 10px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 16px;
  color: black;
  box-shadow: 2px 2px 2px #000;
}
.foto1{
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            width: 1250px;
            height: 1000px;
        }

        .slider {
            width: 1250px;
            height: 1000px;
            margin: 0 auto;
        }

        .slides {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: nowrap;
        }
        .slides img{
          width: 1250px;
          height: 1000px;
        }

      .item{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    text-align: center;
    margin-top: 2rem;
}

.item{
    transform: scale(0.9) translateY(5px);
    cursor: pointer;
    transition: 0.3s;
}
.white-header {
    background-color: #ffffffc5;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 80px; /* Ajuste a altura conforme necessário */
    width: 260px;
}

.title h1 {
    margin: 0;
    font-size: 24px;
    text-align: center;
    
}

.menu-icons ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

.menu-icons li {
    font-size: 30px;
    padding: 0px;
}

.menu-icons a {
    text-decoration: none;
    color: rgba(51, 51, 51, 0.66);
}

.menu-icons a:hover {
    color: #007bff;
}
.flip-container {
  perspective: 1000px;
  display: inline-block;
}

.flip-container:hover .flipper,
.flip-container.hover .flipper {
  transform: rotateY(180deg);
}

.flip-container,
.front,
.back {
  width: 200px;
  height: 300px;
}

.flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

.front,
.back {
  width: 100%;
  height: 400px;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.front {
  z-index: 1;
  transform: rotateY(0deg);
}

.back {
  transform: rotateY(180deg);
  background-color: #ffffff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
footer{
    background-color: #000000;
    padding: 50px 0;
}
.container-footer{
    max-width: 1400px;
    padding: 0 4%;
    margin: auto;
}
.row-footer{
    display: flex;
    flex-wrap: wrap;
}

.footer-col{
    width: 25%;
    padding: 0 15px;
}
.footer-col h4{
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
}
.footer-col ul{
    list-style: none;
}
.footer-col ul li{
    margin: 10px 0;
}
.footer-col ul li a{
    font-size: 16px;
    text-transform: capitalize;
    color: white;
    text-decoration: none;
    font-weight: 300;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover{
    color: #cecdcd;
    padding-left: 10px;
}
.footer-col .medias-socias{
    margin-top: 30px;
}
.footer-col .medias-socias a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    border-radius: 50%;
    color: white;
    border: 1px solid white;
    transition: all 0.5s ease;
}
.footer-col .medias-socias a i{
    font-size: 20px;
}

.footer-col .medias-socias a:hover{
    color: #415aca;
    background-color: white;
}
.footer-col .form-sub input{
    width: 100%;
    padding: 10px;
    font-size: 15px;
    outline: none;
    border: 1px solid white;
    color: white;
    background-color: #191616;
}
.footer-col .form-sub input::placeholder{
    color: white;
}
.footer-col .form-sub button{
    width: 100%;
    margin-top: 10px;
    padding: 10px; 
    font-size: 17px;
    outline: none;
    border: none;
    cursor: pointer;
    color: #0a0a0c;
    border-radius: 3px;
    font-weight: bold;
    background-color: white;        
}
/* Responsivo */
@media (max-width: 800px) {
    .footer-col{
        width: 50%;
        margin-bottom: 30px;
    }
}
@media (max-width:600px) {
    .footer-col{
        width: 100%;
    }
}

.menu-toggle {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    cursor: pointer;
    z-index: 2;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.sidebar {
    width: 0;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.5s;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    padding: 20px;
}

.sidebar a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.sidebar a:hover {
    color: #ff5733;
}

.content {
    margin-left: 0;
    padding: 20px;
    transition: 0.5s;
}

.menu-open {
    width: 250px;
}

.menu-open .content {
    margin-left: 250px;
}

@media (max-width: 768px) {
    .menu-toggle {
        top: 10px;
        left: 10px;
    }
}


form{
    margin-left: 8rem;
    display: flex;
    gap: 1rem;
}

form strong{
    font-size: 22px;
    height: 60px;
}

details button{
    width: 100px;
    border-radius: 0;
    border: none;
    height: 30px;
    background-color: #007bff;
    text-decoration: none;
}

details button a{
    color: #000;
    text-decoration: none;
}