@charset "utf-8";
/* CSS Rota dos Sonhos */

/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ================= HEADER ================= */
header {
  background: linear-gradient(to bottom, #002244 0%, #3f7fb3 60%, #ccecff 230%);
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
}

.logo img {
  width: 100px;
}

/* ================= MENU ================= */
nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}

nav ul li a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 5px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

nav ul li a:hover::after {
  transform: scaleX(1);
}

/* ================= BOTÃO HEADER ================= */
.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.btn-entre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #002244;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 34, 68, 0.15);
  transition: all 0.3s ease;
}

.btn-entre .icon img {
  width: 18px;
  height: 18px;
}

.btn-entre:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 34, 68, 0.25);
}

/* ================= HERO ================= */
.hero {
  background: #fff;
  min-height: 54vh;
  padding-left: 60px;
  display: flex;
  justify-content: space-between;
  position: relative;
  /*box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);*/
}

.hero-text {
  width: 50%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #002244;
}

.hero-text h4 {
  letter-spacing: 3px;
  font-size: 22px;
  margin-bottom: 10px;
  color: #eb8444;
}

.hero-text h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 33px;
  max-width: 480px;
}

.hero-image {
  width: 50%;
  height: 516px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================= FORMULÁRIO (DESKTOP) ================= */
.form-panel {
  position: absolute;
  right: 150px;
  bottom: 0px;
  width: 360px;
  background: #fff;
  border-radius: 20px 20px 0px 0px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);

  /* 🔒 MOSTRA APENAS O TOPO */
  height: 54px;
  overflow: hidden;

  transition: height 0.45s ease;
  z-index: 10;
}

/* FORM ABERTO */
.form-panel.active {
  height: 325px;
}

/* TOPO DO FORM */
.form-toggle {
  height: 54px;
  background: #fff;
  color: #002244;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  border-radius: 18px 18px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  user-select: none;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.form-toggle i {
  transition: transform 0.3s ease;
}

.form-panel.active .form-toggle i {
  transform: rotate(180deg);
}

.form-panel.active .form-toggle {
  animation: none;
}

/* CONTEÚDO */
.form-content {
  padding: 25px;
}

.form-content input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.form-content button {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px;
  background: #002244;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1;
}

/* CAMADA DO HOVER */
.form-content button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #3f7fb3; /* azul claro do tema */
  transition: left 0.4s ease;
  z-index: -1;
}

/* HOVER */
.form-content button:hover::before {
  left: 0;
}

/* GARANTE TEXTO SEMPRE VISÍVEL */
.form-content button span,
.form-content button {
  position: relative;
  z-index: 2;
}

/* ================= MENU MOBILE ================= */
.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

  header {
    padding: 15px 20px;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #3f7fb3;
    display: none;
    padding: 20px 0;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
  }

  nav.active {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    flex-direction: column;
    padding-left: 0;
  }

  .hero-text {
    width: 90%;
    margin: 30px auto;
    text-align: center;
    align-items: center;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-image {
    width: 100%;
    height: 320px;
  }

  /* ================= FORM MOBILE (IGUAL DESKTOP) ================= */
  .form-panel {
    position: fixed;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 92%;
    max-width: 420px;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.25);

    /* 🔒 MOSTRA APENAS O TOPO */
    height: 54px;
    overflow: hidden;

    transition: height 0.45s ease;
    z-index: 999;
  }

  .form-panel.active {
    height: 340px; /* ajuste fino se quiser */
  }
}

/* ================= SEÇÃO INFORMATIVA ================= */
.info-section {
  background: #fff;
  padding: 80px 60px;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 70px;
}

/* IMAGEM */
.info-image {
  width: 50%;
}

.info-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* TEXTO */
.info-text {
  width: 50%;
  color: #002244;
}

.info-text h4 {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #3f7fb3;
}

.info-text h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.info-text p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 480px;
  color: #333;
}

/* CONTAINER DA IMAGEM */
.info-image {
  width: 45%;
  position: relative;
}

/* IMAGEM PRINCIPAL */
.main-image {
  width: 100%;
  height: 500px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

/* MINIATURAS */
.thumbs {
  position: absolute;
  left: 50%;
  bottom: -40px;              /* ajusta a distância da imagem */
  transform: translateX(-50%);

  display: flex;
  gap: 14px;
  justify-content: center;
}

/* CAIXINHA */
.thumb {
  width: 85px;
  height: 65px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;

  opacity: 0.65;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HOVER */
.thumb:hover {
  opacity: 1;
}

/* ATIVA */
.thumb.active {
  opacity: 1;
  border-color: #002244;
  box-shadow: 0 6px 18px rgba(0, 34, 68, 0.25);
}

@media (max-width: 900px) {
	
  .thumbs {
    position: static;
    transform: none;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 5px;
  }

  .info-section {
    padding: 60px 20px;
  }

  .info-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .info-image,
  .info-text {
    width: 100%;
  }

  .info-text h2 {
    font-size: 30px;
  }

  .info-text p {
    font-size: 16px;
    margin: 0 auto;
  }
}

/* BOTÃO SEÇÃO INFO */
.btn-info {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 32px;

  background: transparent;
  color: #002244;
  border: 2px solid #002244;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.35s ease;
}

/* HOVER */
.btn-info:hover {
  background: #002244;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 34, 68, 0.25);
}


/* ================= SEÇÃO DE VÍDEO ================= */
.video-section {
  background: linear-gradient(to bottom, #c56930 0% 15%, #f7e355 85%, #f7e355 230%);
  padding: 80px 20px;
  text-align: center;
}

.video-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* TÍTULO */
.video-section h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* TEXTO */
.video-section p {
  color: #ffeaea;
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto 40px;
}

/* MOLDURA DO VÍDEO */
.video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border: 8px solid #f2f2f2;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  background: #000;
}

/* OVERLAY ESCURECIDO */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  pointer-events: none;
}

/* VIDEO */
.video-frame video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

/* BOTÃO PLAY */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: #002244;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: #fff;
}

/* ESCONDE BOTÃO QUANDO TOCA */
.video-frame.playing .play-btn,
.video-frame.playing .video-overlay {
  display: none;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .video-section h2 {
    font-size: 26px;
  }

  .video-section p {
    font-size: 16px;
  }

  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 26px;
  }
}


/* ================= FAQ ================= */
.faq-section {
  position: relative;
  padding: 70px 20px;

  /* Imagem de fundo */
  background-image: url("../imagens/praia.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: inset 0px 3px 3px rgba(0, 0, 0, 0.3);
}

/* Overlay para misturar a imagem com a cor */
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 249, 252, 0.88); /* cor original + transparncia */
  z-index: 0;
}

/* Contedo acima do overlay */
.faq-container {
  position: relative;
  z-index: 1;
}

/* ================= RESTANTE DO FAQ (INALTERADO) ================= */

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  color: #002244;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid #e3d9c6;
}

/* BOTO */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  text-align: left;
}

/* SETA */
.faq-arrow {
  color: #002244;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
}

/* QUANDO ABERTO */
.faq-item.active .faq-arrow {
  transform: rotate(90deg);
}

/* TEXTO */
.faq-text {
  flex: 1;
}

/* RESPOSTA */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 0 20px 40px;
  color: #333;
  font-size: 15px;
  line-height: 1.6;
}

/* ATIVO */
.faq-item.active .faq-answer {
  max-height: 1365px;
}

.fundo-faq{
background-color: #fff;
padding: 35px;
border-radius: 20px 20px 20px 20px;	
}


/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .faq-title {
    font-size: 22px;

    margin-bottom: 35px;
  }

  .faq-question {
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* ================= REGRAS GERAIS ================= */
.rules-section {
  background: #f6f9fc;
  padding: 80px 20px;
}

.rules-container {
  max-width: 1100px;
  margin: 0 auto;
}

.rules-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #002244;
  margin-bottom: 40px;
}

/* CAIXA PRINCIPAL */
.rules-box {
  position: relative;
  background: #fff;
  border-radius: 22px;
  padding: 50px 60px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* FUNDO PRAIA TRANSPARENTE */
.rules-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      rgba(255,255,255,0.85),
      rgba(255,255,255,0.85)
    ),
    url("img/praia-bg.jpg") center/cover no-repeat;
  opacity: 0.12;
  z-index: 0;
}

/* LISTA */
.rules-list {
  position: relative;
  z-index: 1;
  list-style: none;
}

.rules-list li {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 14px;
  padding-left: 18px;
  position: relative;
}

/* BOLINHA CLEAN */
.rules-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -4px;
  font-size: 20px;
  color: #3f7fb3;
}

/* IMAGENS DENTRO DA CAIXA */
.rules-images-inside {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 25px;
  margin-top: 35px;
}

.rules-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  transition: transform 0.3s ease;
}

.rules-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 5px;
}

/* HOVER SUAVE */
.rules-image:hover {
  transform: translateY(-5px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .rules-box {
    padding: 35px 25px;
  }

  .rules-title {
    font-size: 26px;
  }

  .rules-images-inside {
    flex-direction: column;
  }

  .rules-image img {
    height: 180px;
  }
}


/* ================= CARROSSEL ================= */
.travels-section {
  background: #ffffff;
  padding: 80px 20px;
}

.travels-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #002244;
  margin-bottom: 40px;
}

.carousel-wrapper {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  cursor: grab;
}

.carousel-wrapper:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 24px;
  will-change: transform;
}

.travel-card {
  min-width: 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.travel-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.travel-card span {
  display: block;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #002244;
  text-align: center;
}

@media (max-width: 768px) {
  .travel-card {
    min-width: 220px;
  }
}


/* ================= FOOTER ================= */
.footer {
  position: relative;
  background: url("img/footer-bg.jpg") center/cover no-repeat;
  color: #fff;
  margin-top: 30px;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #002244 0%, #002244 60%, #002244 230%);
  z-index: 0;
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 20px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

/* BRAND */
.footer-brand img {
  max-width: 260px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #dfe7ef;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 18px;
  color: #ffffff;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: #cfd8e3;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #6bb7ff;
}

/* CONTATO */
.footer-contact span {
  display: block;
  font-size: 14px;
  color: #cfd8e3;
  margin-bottom: 10px;
}

/* BOTTOM */
.footer-bottom {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 18px 10px;
  font-size: 13px;
  color: #cbd6e2;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .footer-brand img {
    margin: 0 auto 20px;
  }
}

/* ================= FORM PANEL PADRÃO - formulario ================= */

.form-panel {
  transition: box-shadow 0.3s ease;
}

/* ================= FORM PANEL FLUTUANTE (DESKTOP) ================= */
@media (min-width: 769px) {
  .form-panel.floating {
    position: fixed;
    right: 25px;
    bottom: 0px;
    z-index: 999;
    width: 320px;
    border-radius: 18px 18px 0px 0px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);

    /* animação limpa */
    transform: translateY(120%);
    opacity: 0;
    animation: slideUpStraight 0.45s ease-out forwards;
  }

  @keyframes slideUpStraight {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}


/* ================= DEPOIMENTOS ================= */
.testimonials-section {
  background: #fff;
  padding: 80px 20px;
  overflow: hidden;
}

.testimonials-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #002244;
  margin-bottom: 50px;
}

/* AREA DO CARROSSEL */
.testimonials-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

/* ESTADO DURANTE O DRAG (JS adiciona essa classe) */
.testimonials-wrapper.grabbing {
  cursor: grabbing;
}

.testimonials-track {
  display: flex;
  gap: 26px;
  will-change: transform;
}

/* CARD */
.testimonial-card {
  width: 100%;
  max-width: 360px; /* CONTROLE REAL DO TAMANHO */
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  flex-shrink: 0;

  display: flex;
  flex-direction: column;
}

/* ESTRELAS */
.stars {
  color: #fbbf24;
  font-size: 18px;
  margin-bottom: 10px;
}

/* TITULO */
.testimonial-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

/* TEXTO (SEM CORTE) */
.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 22px;

  word-break: break-word;
  overflow-wrap: break-word;
}

/* USUÁRIO */
.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.testimonial-user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user strong {
  display: block;
  font-size: 14px;
  color: #000;
}

.testimonial-user span {
  font-size: 13px;
  color: #666;
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-card {
    max-width: 85vw;
    padding: 24px;
  }

  .testimonials-title {
    font-size: 26px;
  }
}


/* ================= COMO PARTICIPAR ================= */
.how-section {
  background: #f6f9fc;
  padding: 90px 20px;
}

.how-container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-title {
  text-align: center;
  color: #002244;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 60px;
  text-transform: uppercase;
}

/* GRID */
.how-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD */
.how-card {
  background: linear-gradient(to bottom, #002244 0%, #3f7fb3 60%, #ccecff 230%);
  border-radius: 26px;
  padding: 45px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  transition: transform .3s ease;
}

.how-card:hover {
  transform: translateY(-6px);
}

/* ÍCONE */
.how-icon {
  margin-bottom: 25px;
}

.how-icon img {
  width: 70px;
  height: auto;
}

/* TEXTOS */
.how-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.how-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 16px;
}

.how-card span {
  font-size: 14px;
  opacity: 0.9;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .how-cards {
    grid-template-columns: 1fr;
  }

  .how-title {
    font-size: 26px;
  }

  .how-card {
    padding: 35px 28px;
  }
}


/* ================= ANIMAES GERAIS ================= */

/* BASE (mobile-first) */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

/* ATIVO */
.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= DESKTOP (ANIMAES LATERAIS) ================= */

@media (min-width: 769px) {

  /* ENTRA DA ESQUERDA */
  .animate.fade-left {
    transform: translateX(-40px);
  }

  /* ENTRA DA DIREITA */
  .animate.fade-right {
    transform: translateX(40px);
  }

  /* ESTADO ATIVO */
  .animate.fade-left.show,
  .animate.fade-right.show {
    transform: translateX(0);
  }

  /* ZOOM */
  .animate.zoom-in {
    transform: scale(0.9);
  }

  .animate.zoom-in.show {
    transform: scale(1);
  }
}

/* ================= MOBILE (FORMULRIO FIXO E CENTRALIZADO) ================= */

@media (max-width: 768px) {

  /* REMOVE QUALQUER ANIMAO DO FORM */
  .form-panel,
  .form-panel.animate,
  .form-panel.animate.show {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }

  /* GARANTE CENTRALIZAO REAL */
  .form-panel {
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}



