/* =============================== */
/* BASE                            */
/* =============================== */

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

body {
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  line-height: 1.5;
  background: url("../img/background4.png") center center fixed;
  background-size: cover;
}

/* container base */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

main.container {
  flex: 1;
}

/* =============================== */
/* VÍDEO DE FUNDO                  */
/* =============================== */

.bg-video-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -10;
}

.bg-video,
.bg-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-fallback {
  opacity: 0;
  transition: 0.3s ease;
  z-index: -1;
}

/* =============================== */
/* HEADER                          */
/* =============================== */

header {
  width: 100%;
  height: 120px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

header .nav {
  width: 100%;
  max-width: 1100px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.nav-logo {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.logo-img {
  height: 120px;
  width: auto;
}

/* botão login */
.header-login-btn {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* =============================== */
/* MENU CAPSULA VERDE              */
/* =============================== */

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* mesma paleta do botão "Solicitar proposta" */
.nav-links a {
  padding: 0.75rem 1.4rem;
  margin: 0 0.35rem;
  border-radius: 999px;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  background: #1a9900;
  border: 1px solid #1a9900;
  transition: 0.25s ease-in-out;
}

.nav-links a:hover {
  background: #1fb900;
  border-color: #1fb900;
  box-shadow: 0 0 12px rgba(26, 153, 0, 0.6);
}

.nav-links a.active {
  background: #1fb900;
  border-color: #1fb900;
  transform: scale(1.05);
  color: #fff;
}

/* =============================== */
/* BOTÕES GERAIS                   */
/* =============================== */

.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  background: #1a9900;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary:hover {
  background: #1fb900;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* =============================== */
/* TÍTULO DAS PÁGINAS              */
/* =============================== */

.info-banner {
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 3rem;
  color: #fff;
}

/* =============================== */
/* PLANOS – GRID                   */
/* =============================== */

.planos-section {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.planos-grid {
  width: 100%;
  max-width: 1100px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
}

/* CARD DO PLANO */
.plano-card {
  flex: 0 0 300px;
  max-width: 300px;
  padding: 1.6rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  color: #fff;
  transition: 0.25s ease;
}

.plano-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: #1a9900;
  box-shadow: 0 0 24px rgba(26, 153, 0, 0.45);
}

.plano-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  text-align: center;
}

/* Preço */
.plano-preco {
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.plano-preco strong {
  font-size: 1.25rem;
}

.plano-preco span {
  font-size: 0.9rem;
  color: #d1d5db;
}

/* Lista empurra o botão para baixo */
.plano-lista {
  list-style: disc;
  margin: 1rem 0 auto 1.25rem;
  color: #e5e7eb;
  font-size: 0.95rem;
}

/* Destaque */
.plano-destaque {
  border-color: #1a9900;
  box-shadow: 0 0 18px rgba(26, 153, 0, 0.35);
}

/* =============================== */
/* FAIXA FINAL (FULL WIDTH)        */
/* =============================== */

.faixa-fechamento {
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 1rem;
}

.faixa-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 1.2rem;
  text-align: center;
  color: #fff;
}

.faixa-inner h3 {
  margin-bottom: 0.8rem;
}

.faixa-inner p {
  margin-bottom: 0.7rem;
}

.btn-fechamento {
  margin-top: 1rem;
}

/* =============================== */
/* FOOTER                          */
/* =============================== */

.footer-autor {
  width: 100%;
  height: 120px;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-inner img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-inner strong {
  color: #fff;
}

.footer-inner span {
  color: #d1d5db;
}

/* =============================== */
/* MODAL LOGIN                     */
/* =============================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-overlay.show {
  display: flex;
}

.modal-login-box {
  width: 360px;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  color: #fff;
  position: relative;
}

.modal-login-box input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

.modal-login-box input:focus {
  border-color: #1a9900;
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 26px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* título alinhado central (onde for usado) */
.title-inferior {
  text-align: center;
}

/* =============================== */
/* HOME – CARROSSEL BENEFÍCIOS     */
/* =============================== */

.beneficios-section {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  color: #f9fafb;
}

.beneficios-carousel {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem 3.2rem 4rem; /* espaço para texto + bolinhas */
  overflow: hidden;
  z-index: 10;
}

.beneficios-track {
  display: flex;
  transition: transform 0.35s ease-in-out;
}

/* slide */
.beneficio-card {
  min-width: 100%;
  text-align: left;
}

.beneficio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.beneficio-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e7eb;
}

/* SETAS */
.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.2s;
  z-index: 20;
}

.car-prev {
  left: 16px;
}

.car-next {
  right: 16px;
}

.car-btn:hover {
  background: #1a9900;
  border-color: #1a9900;
}

/* BOLINHAS */
.car-dots {
  position: absolute;
  bottom: 14px; /* dentro da caixa */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 30;
  margin: 0;
  padding: 0;
}

.car-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: 0.2s;
}

.car-dots button.active {
  width: 24px;
  background: #1a9900;
}

/* =============================== */
/* HOME – HERO / CHAMADA           */
/* =============================== */

.beneficios-header {
  max-width: 900px;
  margin: 2.5rem auto 1.5rem;
  padding: 1.6rem 2rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
  color: #f9fafb;
}

.beneficios-titulo {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.beneficios-subtitulo {
  font-size: 1rem;
  color: #d1d5db;
}

.btn-whats-header {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: #1a9900;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.btn-whats-header:hover {
  background: #1fb900;
}

/* =============================== */
/* HOME – SOBRE O PORTAL           */
/* =============================== */

.sobre-wrapper {
  max-width: 900px;
  margin: 2.5rem auto 0;
  padding: 1.6rem 2rem;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  text-align: center;
  color: #f9fafb;
}

.sobre-wrapper h2 {
  margin-bottom: 0.75rem;
}

.sobre-wrapper p {
  margin-bottom: 0.75rem;
  color: #e5e7eb;
}

/* =============================== */
/* RESPONSIVO GERAL                */
/* =============================== */

@media (max-width: 768px) {
  .container {
    padding: 1.25rem;
  }

  .logo-img {
    height: 80px;
  }

  .planos-grid {
    gap: 1.5rem;
  }

  .plano-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .beneficios-section {
    padding: 0 1rem;
  }

  .beneficios-carousel {
    padding: 2rem 2rem 3.5rem;
  }

  .car-prev {
    left: 8px;
  }

  .car-next {
    right: 8px;
  }

  .beneficios-header,
  .sobre-wrapper {
    padding: 1.4rem 1.2rem;
  }
}
/* =============================== */
/* FALE CONOSCO – FORMULÁRIO       */
/* =============================== */

.contato-section {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.contato-header {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #f9fafb;
}

.contato-header h2 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.contato-header p {
  font-size: 0.95rem;
  color: #e5e7eb;
}

/* caixa glass do formulário */
.contato-form {
  width: 100%;
  max-width: 480px;
  padding: 1.8rem 2rem;
  border-radius: 18px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
}

.contato-form label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: #f9fafb;
}

.contato-form input,
.contato-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  margin-bottom: 0.9rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(0,0,0,0.28);
  color: #fff;
}

.contato-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contato-form input:focus,
.contato-form textarea:focus {
  outline: none;
  border-color: #1a9900;
}

/* botão centralizado */
.btn-contato {
  display: block;
  margin: 0.5rem auto 0;
}

/* =============================== */
/* FALE CONOSCO – BLOCO INFERIOR   */
/* =============================== */

.contato-info {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 0;
}

.contato-card {
  max-width: 600px;
  width: 100%;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  color: #f9fafb;
}

.contato-card h3 {
  margin-bottom: 1rem;
}

.contato-card p {
  margin-bottom: 0.4rem;
  color: #e5e7eb;
}

.contato-card a {
  color: #1a9900;
  font-weight: 600;
  text-decoration: none;
}

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

/* responsivo contato */
@media (max-width: 768px) {
  .contato-form {
    padding: 1.4rem 1.2rem;
  }

  .contato-card {
    margin: 0 1rem;
    padding: 1.4rem 1.2rem;
  }
}
/* =============================== */
/* PÁGINA PLATAFORMA               */
/* =============================== */

.plataforma-section {
  margin-top: 3rem;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
}

.plataforma-wrapper {
  max-width: 900px;
  padding: 2rem 2.4rem;
  border-radius: 18px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
  text-align: left;
}

.plataforma-wrapper h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: #fff;
}

.plataforma-beneficios {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.plataforma-beneficios h3 {
  font-size: 1.2rem;
  color: #fff;
}

.plataforma-beneficios p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e7eb;
}

/* Responsivo */
@media (max-width: 768px) {
  .plataforma-wrapper {
    padding: 1.4rem 1.2rem;
  }
}
/* =============================== */
/* PÁGINA PLATAFORMA – MOOVSEC     */
/* =============================== */

.plataforma-section {
  margin-top: 3rem;
}

.plataforma-header {
  max-width: 900px;
  margin: 0 auto 2rem;
  text-align: center;
  color: #f9fafb;
}

.plataforma-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.plataforma-header p {
  font-size: 0.95rem;
  color: #e5e7eb;
}

/* GRID DE CARDS COM IMAGENS */
.plataforma-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  justify-content: center;
}

.plataforma-card {
  width: 320px;
  padding: 1.4rem 1.4rem 1.6rem;
  border-radius: 18px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: 0.25s ease;
}

.plataforma-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 18px rgba(26,153,0,0.45);
  border-color: #1a9900;
}

.plataforma-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;     /* respeita layout das telas */
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.plataforma-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  text-align: center;
}

.plataforma-card p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #e5e7eb;
  text-align: center;
}

/* Responsivo */
@media (max-width: 768px) {
  .plataforma-card {
    width: 100%;
    max-width: 420px;
  }
}
/* =============================== */
/* PLATAFORMA – HERO + CARROSSEL   */
/* =============================== */

.plataforma-hero {
  margin-top: 3rem;
  text-align: center;
  color: #f9fafb;
}

.plataforma-hero h2 {
  font-size: 1.9rem;
  margin-bottom: 0.6rem;
}

.plataforma-hero p {
  font-size: 0.95rem;
  color: #e5e7eb;
}

/* seção do carrossel */
.plataforma-carousel-section {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.plataforma-carousel {
  position: relative;
  max-width: 900px;
  width: 100%;
  background: rgba(0,0,0,0.55);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 2.2rem 3rem 3.2rem;
  overflow: hidden;
}

/* trilho e slides */
.plataforma-track {
  display: flex;
  transition: transform 0.35s ease-in-out;
}

.plataforma-slide {
  min-width: 100%;
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.plataforma-slide-img {
  flex: 0 0 45%;
}

.plataforma-slide-img img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

.plataforma-slide-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.plataforma-slide-info h3 {
  font-size: 1.25rem;
  color: #fff;
}

.plataforma-slide-info p {
  font-size: 0.95rem;
  color: #e5e7eb;
  line-height: 1.6;
}

/* botões de navegação */
.plat-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.65);
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.2s;
  z-index: 5;
}

.plat-prev { left: 16px; }
.plat-next { right: 16px; }

.plat-btn:hover {
  background: #1a9900;
  border-color: #1a9900;
}

/* bolinhas */
.plat-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.plat-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: 0.2s;
}

.plat-dots button.active {
  width: 24px;
  background: #1a9900;
}

/* responsivo */
@media (max-width: 768px) {
  .plataforma-carousel {
    padding: 1.8rem 1.4rem 3rem;
  }

  .plataforma-slide {
    flex-direction: column;
  }

  .plataforma-slide-img {
    flex: 0 0 auto;
    width: 100%;
  }

  .plat-prev { left: 8px; }
  .plat-next { right: 8px; }
}
.plataforma-hero {
  margin-top: 3rem;
  padding: 2rem 2.5rem;

  /* FAIXA GLASS */
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  text-align: center;
  color: #f9fafb;

  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faleconosco-hero {
  max-width: 900px;
  margin: 3rem auto 1.5rem;
  padding: 1.8rem 2.4rem;

  /* FAIXA GLASS (fundo embaçado) */
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  text-align: center;
  color: #fff;
}
