@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap");

@font-face {
  font-family: "Frunchy";
  src: url("static/font/FrunchySage/FontsFree-Net-Frunchy.ttf")
    format("truetype");
  font-weight: bold;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

:root {
  --cor-marrom: #725d48;
  --cor-marromfraco: #b29a7e;
  --cor-verde: #62745c;
  --cor-verde-bg: #7d9578df;

  /* --cor-marrom: #825e43;
    --cor-marromfraco: #966625;
    --cor-verde: #7d9578;
    --cor-verde: #5F705D;
    --cor-verde-bg: #7d9578df; */
}

::-webkit-scrollbar {
  width: 10px;
  opacity: 0.8;
}

::-webkit-scrollbar-track {
  background-color: #ccc;
  border-radius: 1px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--cor-marromfraco);
  border-radius: 1px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--cor-verde);
}

body {
  /* font-family: 'Poppins', sans-serif; */
  font-family: "EB Garamond", serif;
  background-image: url("../img/branco.png");
  max-width: 2048px;
  margin: 0;
  position: relative;
  overflow-x: hidden;
  z-index: 2;
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  z-index: -1;
}

#scrollTopBtn {
  bottom: 70px;
}

.floating-button {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 20px;
  right: 20px;
  /* padding: 10px 10px; */
  width: 40px;
  height: 40px;
  background-color: var(--cor-marromfraco);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000000000;
  transition: 0.5s;
}

.floating-button:hover {
  background-color: var(--cor-verde-bg);
}

.floating-button i {
  position: relative;
  color: #fff;
  font-size: 25px; /* Tamanho maior para o ícone */
  z-index: 100000000001;
}

.interface {
  max-width: 1280px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

header > .interface {
  display: flex;
  align-items: center;
  justify-content: end;
  max-width: 1280px;
}

header button {
  background-color: transparent;
  border: 0;
  font-size: 18px;
}

header a,
header button {
  font-family: "Poppins", sans-serif;
  color: var(--cor-marromfraco);
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  text-align: start;
}

header a:hover,
header button:hover {
  color: var(--cor-marrom);
  transform: scale(1.05);
}
.logo a:hover {
  transform: scale(1) !important;
}
header nav ul {
  list-style-type: none;
  margin: 25px 168px 0px 0;
  font-size: 18px;
}

header nav ul li {
  display: inline-block;
  padding: 0 10px;
}

section {
  padding: 25px 4%;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.modal2 {
  display: none;
  position: fixed;
  z-index: 100000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal2 h2 {
  font-size: 25px;
  height: 40px;
  /* margin: 10px 0; */
  color: var(--cor-marrom);
}

.modal-content2 {
  position: fixed;
  z-index: 2000;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  height: 400px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal2 a {
  position: relative;
  width: 100%;
  text-decoration: none;
}

.modal2 p {
  font-size: 15px;
  font-weight: 500;
}

.modal2 button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5a6f54;
  color: white;
  margin-top: 15px;
  padding: 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  font-size: 15px;
}

.modal2 button:hover {
  background-color: #4a5d47;
}

.modal2 button i {
  font-size: 22px;
  margin-right: 10px;
}

/* Estilo para as imagens das flores */
section.home {
  position: relative;
  padding-top: 30px;
  margin-bottom: 25px;
}

section.home .flor {
  position: absolute; /* Usa o `section.home` como referência */
  width: 200px;
  bottom: 0;
  z-index: 1;
  opacity: 0.7;
  animation: balanco 3s infinite ease-in-out;
}

/* Posicionamento da flor esquerda */
section.home .flor-esquerda {
  left: 0;
  /* top: 50px; Adiciona unidade */
  bottom: -40px;
}

/* Posicionamento da flor direita */
section.home .flor-direita {
  right: 0;
  /* top: 50px;  */
  bottom: -40px;
}

section.home .flex {
  align-items: center;
  justify-content: center;
  gap: 200px;
}

section.home .container img {
  max-width: 455px;
}

section.home .container.pt1 img {
  max-width: 300px;
}

section.home .container.pt1 h1,
section.home .container.pt1 p {
  color: var(--cor-marrom);
  /* font-family: 'Times New Roman', serif; */
  font-style: italic;
  font-optical-sizing: auto;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 8px;
}

section.home .container.pt1 p {
  font-size: 20px;
  letter-spacing: 1px;
  margin-top: 15px;
}

section.home .container.pt2 p {
  color: var(--cor-marrom);
  /* font-family: 'Times New Roman', serif; */
  font-style: italic;
  /* font-optical-sizing: auto; */
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 2px;
  text-align: center;
  width: 496px;
}

section.home .botao-confirmar {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 16px;
  /* font-family: 'Times New Roman', serif; */
  font-weight: 500;
  color: var(--cor-marrom);
  background-color: transparent;
  border: 2px solid var(--cor-marrom);
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Efeito de hover */
section.home .botao-confirmar:hover {
  background-color: var(--cor-marrom);
  color: #ffffff;
}

.container .container-dt-casamento {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 23px;
}

.container .container-dt-casamento .dt-casamento {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 75px;
  width: 80px;
  background-color: #ffffffd8;
  border-radius: 25%;
}

.container .container-dt-casamento .dt-casamento p,
.container .container-dt-casamento .dt-casamento span {
  color: var(--cor-marromfraco);
  font-size: 26px;
  /* font-family: 'Times New Roman', serif; */
  font-weight: 500;
  text-align: center;
}

.container .container-dt-casamento .dt-casamento span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
  /* font-family: 'Times New Roman', serif; */
  font-weight: 500;
}

section.bemvindo {
  height: 280px;
  background-color: var(--cor-verde);
  width: 100%;
  position: relative;
  padding-top: 30px;
  box-shadow: 0px -2px 11px #5f705d;
}
section.bemvindo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background-image: url("../img/detalhefundo.png");
  background-position: left;
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  opacity: 0.5;
  z-index: 1;
}

section.bemvindo .flex {
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

section.bemvindo .container img {
  height: 100px;
  position: relative;
  z-index: 2;
}

section.bemvindo .container h1,
section.bemvindo .container p {
  position: relative;
  color: white;
  font-optical-sizing: auto;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 8px;
  z-index: 2;
}

section.bemvindo .container p {
  position: relative;
  font-size: 18px;
  width: 500px;
  text-align: center;
  z-index: 2;
  margin-bottom: 5px;
}

section.carta {
  height: 730px;
  width: 100%;
  position: relative;
  padding-top: 30px;
  box-shadow: 0px -2px 11px #5f705d;
  overflow: hidden;
}

section.carta .flor,
section.carta .linha {
  position: absolute;
  z-index: 1;
  opacity: 0.5;
}
section.carta .flor {
  bottom: 0px;
  right: 10px;
  /* width: 400px; */
}

section.carta .linha {
  width: 400px;
}

section.carta .linhaesquerda {
  top: -130px;
  left: -170px;
}

section.carta img.linhaesquerda {
  transform: scaleX(1);
  transform: scaleY(1);
}

section.carta .linhadireita {
  top: -30px;
  right: -150px;
}

section.carta .flex {
  height: 720px;
  justify-content: center;
  align-items: center;
  gap: 100px;
}

section.carta .container img {
  height: 550px;
}

section.carta .container h1,
section.carta .container p {
  text-align: center;
  max-width: 600px;
  color: var(--cor-marrom);
  font-weight: 500;
  text-shadow: -4px -3px 14px #8d644d2c;
}

section.carta .container h1 {
  font-size: 37.8px;
  padding-bottom: 50px;
  font-style: italic;
}

section.carta .container p {
  font-size: 18.8px;
}

/* Defina a altura da seção de galeria */
section.galeria {
  height: min-content;
  /* max-height:  1160px; */
  width: 100%;
  position: relative;
  padding-top: 30px;
  /* background-color: #fff; */
  background-image: url(../img/fundoprew.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  z-index: 1;
}

/* Defina a altura da seção de galeria */
section.galeria .flex {
  flex-direction: column;
}

section.galeria::after {
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /* background-color: var(--cor-marromfraco); */
  background: linear-gradient(26deg, #000, var(--cor-verde), #000);
  position: absolute;
  opacity: 0.7;
  z-index: 2;
}
/* section.galeria::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 110px;
    transform: scaleY(-1);
    background-color: #fff;
    clip-path: polygon(0 100%, 10% 80%, 20% 100%, 30% 80%, 40% 100%, 50% 80%, 60% 100%, 70% 80%, 80% 100%, 90% 80%, 100% 100%);

    z-index: 9;

} */

section.galeria .interface {
  position: relative;
  z-index: 3;
}

section.galeria h1 {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 55px;
  font-family: "Imperial Script", cursive;
  font-weight: 100;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center; /* Centraliza os itens */
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  height: auto;
  max-width: 200px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-item img {
  height: auto;
  max-width: 200px;
  transition: transform 0.3s;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 8px rgba(3, 3, 3, 0.24);
  position: relative;
  z-index: 0;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(3, 3, 3, 0.43);
}

.foto {
  position: relative;
  margin: 0;
  padding: 0;
}

/*  ESTILO MODAL*/

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

body.modal-open {
  overflow: hidden !important;
}

.modal-content {
  margin: auto;
  display: block;
  height: auto;
  max-height: 550px;
  transition: transform 0.2s;
  padding-top: 50px;
}

.modal-content:hover {
  cursor: zoom-in;
}

.modal-content.zoomed:hover {
  cursor: zoom-out;
}

#caption {
  margin: 0;
  display: block;
  text-align: center;
  color: #ccc;
  padding: 30px 0;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

.modal-header {
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
  gap: 20px;
}

.modal-button {
  background: none;
  border: none;
  margin: 0 5px;
  cursor: pointer;
}

.modal-button i {
  font-size: 20px;
  color: #fff;
}

.modal-header button {
  box-shadow: none !important;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.modal .prev,
.modal .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  box-shadow: 0 0 0 !important;
}

.modal .next {
  right: 0;
  border-radius: 3px 0 0 3px;
  box-shadow: 0 0 0 !important;
}

/* Defina a altura da seção de galeria */
section.cerimonia {
  height: 730px;
  width: 100%;
  padding-top: 30px;
  position: relative;
  z-index: 1;
  color: var(--cor-marrom);
  /* background-image: url(/static/img/fundohome2.JPG); */
  /* background-size: cover; */
  background-repeat: no-repeat;
  z-index: 1;
  background-attachment: fixed;
}

/* section.cerimonia::after{
content: '';
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: #000000d7;
z-index: 2;
}
 */

section.cerimonia .interface {
  z-index: 3;
  position: relative;
}

section.cerimonia .flex {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

section.cerimonia .flex .flex {
  justify-content: center;
  flex-direction: row;
  align-items: center;
  gap: 35px;
}

section.cerimonia .flortop {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  z-index: 4;
}

section.cerimonia .florbottom {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: scale(1, 1);
  opacity: 0.8;
  z-index: 4;
}

section.cerimonia .weddingday {
  width: 550px;
  margin-top: 20px;
}

section.cerimonia .map {
  width: 550px;
  height: 400px;
}

section.cerimonia .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  box-shadow: 0 0 8px #0000005c;
  border-radius: 20px;
}

section.cerimonia .botaomaps {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

section.cerimonia .botaomap {
  width: 35px;
  height: auto;
  border: 0;
  box-shadow: 0 0 0 !important;
}

section.cerimonia .botaomap:hover {
  box-shadow: none !important;
  background-color: transparent;
}

section.cerimonia .container {
  margin-top: 90px;
}

section.cerimonia .container p {
  width: 600px;
  text-align: justify;
  font-size: 18px;
  font-weight: 500;
}

section.cerimonia .container p.p2 {
  text-align: center;
}

section.cerimonia .carousel {
  position: absolute;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  margin: auto;
  box-shadow: 0 0 8px #0000005c;
  border-radius: 20px;
}

section.cerimonia .carousel-inner {
  display: flex;
  transition: transform 0.5s ease;
}

section.cerimonia .carousel-inner img {
  width: 100%;
  flex-shrink: 0;
}

section.cerimonia .carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

section.cerimonia .carousel button.prev {
  left: 10px;
}

section.cerimonia .carousel button.next {
  right: 10px;
}

footer {
  background-color: #f7f7f7;
  padding: 20px 0;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #333;
  border-top: 2px solid #dcdcdc;
}

footer .interface {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

footer .flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

footer,
footer a {
  text-decoration: none;
  color: var(--cor-marrom);
}
footer .container {
  flex: 1;
  min-width: 250px;
}

.container_menu_mobile {
  display: none;
  width: 100%;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}
.container_menu_mobile img {
  height: 110px;
}
.button-menu-mobile {
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  color: transparent;
  border: 0;
}

.button-fechar-menu {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: s;
  background-color: transparent;
  color: transparent;
  border: 0;
  margin-top: 20px;
  margin-right: 40px;
}

.button-fechar-menu i {
  height: 40px;
  width: 40px;
  font-size: 50px;
  color: #fff;
}

.menu-mobile {
  display: flex;
  background-color: var(--cor-verde);
  width: 250px;
  height: 100%;
  z-index: 1000000;
  position: fixed;
  flex-direction: column;
  top: 0;
  right: -250px; /* Começa fora da tela */
  align-items: center;
  border-radius: 40px 0px 0px 40px;
  transition: right 0.5s ease-in-out;
  animation: abrirmenu;
}

/* Quando a classe "ativo" é adicionada, o menu aparece */
.menu-mobile.ativo {
  right: 0;
}

.menu-mobile nav {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: start;
  width: 100%;
  justify-content: start;
}

.menu-mobile nav ul {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: start;
  justify-content: start;
  width: 100%;
  gap: 10px;
  padding: 20px;
}

.menu-mobile nav ul li {
  position: relative;
  border: var(--cor-marromfraco) 1px solid;
  border-radius: 25px;
  background-color: var(--cor-marrom);
  padding: 10px 0px;
  padding-left: 10px;
  width: 100%;
}

.menu-mobile nav ul li a {
  color: #fff;
  width: 100%;
}

.menu-mobile img {
  width: 160px;
  height: auto;
}

.button-menu-mobile i {
  font-size: 50px;
  color: var(--cor-marrom);
}

.p-mobile {
  display: none;
}

/* Estilos para dispositivos móveis */
@media (max-width: 1000px) {
  body {
    font-size: 14px;
    /* padding: 10px; */
  }

  header nav ul {
    margin: 15px 0;
    font-size: 16px;
    text-align: center;
  }

  header nav ul li {
    display: block;
    margin: 5px 0;
  }
  section.home {
    padding: 10px;
  }
  section.home .flex {
    flex-direction: column;
    gap: 20px;
  }
  .p-desktop {
    display: none;
  }
  header button {
    width: 100%;
    color: #fff;
  }
  header button:hover {
    color: #fff;
    transform: scale(1.05);
  }
  section.home .container.pt1 .p-mobile {
    display: flex;
    color: var(--cor-marrom);
    padding: 15px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.6px;
    margin-top: 20px;
    text-align: center;
  }
  .container_menu_mobile {
    display: flex;
    padding-top: 15px;
  }
  .menu-desktop {
    display: none;
  }

  .container.pt2 img {
    height: 300px;
  }

  section.home .flor {
    width: 82px;
    opacity: 0.5 !important;
  }
  section.home .flor-direita {
    right: 9px !important;
    top: 133px !important;
    transform: rotate(10deg);
  }

  section.home .flor-esquerda {
    right: 5px !important;
    left: 13px !important;
    top: 133px !important;
    transform: rotate(-10deg);
  }
  section.bemvindo .container img {
    height: 73px;
    padding-top: 20px;
  }

  section.bemvindo .flex {
    height: 100%;
  }
  section.home .flex {
    flex-direction: column-reverse;
  }
  section.home .container.pt1 h1,
  section.home .container.pt1 p {
    font-size: 18px;
    text-align: center;
  }

  section.home .container.pt2 p {
    font-size: 15px;
    width: auto;
  }

  section.bemvindo {
    padding: 0;
    margin: 0;
    height: 230px;
  }

  section.bemvindo .container p {
    margin: 0px !important;
  }

  .container .container-dt-casamento {
    flex-direction: row;
    gap: 10px;
  }

  .container .container-dt-casamento .dt-casamento {
    height: 65px;
    width: 65px;
  }

  .container .container-dt-casamento .dt-casamento span {
    margin-top: -6px;
  }

  section.bemvindo .container img {
    height: 80px;
  }

  section.bemvindo .container h1,
  section.bemvindo .container p {
    font-size: 15px;
    width: auto;
    padding: 0px 10px;
  }

  section.bemvindo .container p.titulo-contagem {
    padding: 10px 10px;
  }

  section.carta {
    flex-direction: column-reverse;
    width: 100%;
    height: 837px;
    margin-top: 80px;
    box-shadow: none;
    overflow: visible;
  }
  .linha {
    display: none;
  }

  .florcarta {
    width: 80px;
    opacity: 0.2 !important;
  }
  section.carta .flex {
    flex-direction: column-reverse;
    gap: 20px;
  }

  section.carta .container img {
    height: 300px;
  }

  section.carta .container h1 {
    font-size: 25px;
  }

  section.carta .container p {
    font-size: 16px;
  }

  section.galeria h1 {
    font-size: 30px;
  }

  .pt1 img {
    display: none;
  }
  .gallery-item img {
    height: auto;
    max-width: 165px;
  }
  .retirar-mobile {
    display: none;
  }
  .gallery-container {
    gap: 10px;
  }

  .gallery-item {
    max-width: 170px;
  }

  section.cerimonia .weddingday {
    width: 300px;
    margin-top: 20px;
  }
  section.cerimonia .flortop,
  section.cerimonia .florbottom {
    width: 80px;
  }

  section.cerimonia .flex .flex {
    flex-direction: column-reverse;
    gap: 0px;
  }
  section.cerimonia .container {
    margin-top: 43px;
  }
  section.cerimonia .container p {
    width: 310px;
    text-align: justify;
    font-size: 17px;
    font-weight: 500;
  }
  section.cerimonia .container p.p2 {
    margin-top: 10px;
  }

  section.cerimonia {
    height: 100%;
  }

  section.cerimonia .map {
    width: 330px;
    height: 300px;
  }

  .aliancacerimonia {
    height: auto;
    width: 150px;
  }
  .floating-button {
    width: 50px;
    height: 50px;
  }

  .floating-button i {
    font-size: 20px;
  }
}

@media (max-width: 500px) {
  .gallery-item img {
    height: auto;
    max-width: 125px;
  }

}
/* animacao */

.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show {
  opacity: 1;
  transform: translateY(0) !important;
}

.show2 {
  opacity: 1;
  transform: translateX(0) !important;
}

.hiddenesquerdo {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hiddendireito {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show2.linhaesquerda {
  opacity: 1;
  transform: scaleX(1) !important;
  transform: scaleY(-1) !important;
}

.show2.florbottom {
  opacity: 1;
  transform: scale(-1, -1) !important;
}

@keyframes balanco {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  50% {
    transform: rotate(0deg) translateY(2px);
  }
  100% {
    transform: rotate(0deg) translateY(0px);
  }
}
