
/* Cabeçalho */

:root {
  --header-bg-gradient: linear-gradient(90deg, #ffffff 0%, #ffffff 80%);
  --header-solid: #102542;
  --header-shadow: 0 4px 24px rgba(24, 65, 115, 0.18);
  --logo-size: 80px;
  --logo-size-small: 48px;
  --header-padding: 2px 20px;
  --header-padding-small: 2px 2px;
}

/* Cabeçalho fixo transparente com gradiente */
header#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  padding: var(--header-padding);
  background: var(--header-bg-gradient);
  transition: 
    background 0.3s,
    box-shadow 0.3s,
    padding 0.3s;
  box-shadow: none;
}

/* Logo à direita, tamanho facilmente alterável */
.logo {
  display: flex;
  align-items: center;
  margin-left: 40px;
}
.logo img {
  height: var(--logo-size);
  width: auto;
  transition: height 0.3s;
}

/* Header encolhe ao rolar */
header.solid {
  background: var(--header-solid);
  box-shadow: var(--header-shadow);
  padding: var(--header-padding-small);
}
header.solid .logo img {
  height: var(--logo-size-small);
}

/* Menu desktop links à esquerda */
.nav-menu {
  display: flex;
  gap: 36px;
}
.nav-menu a {
  position: relative;
  color: #000000;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s;
}

/* Hover animado: sublinhado da esquerda para direita */
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2.5px;
  background: #e2742b;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.47,1.64,.41,.8);
}
.nav-menu a:hover::after,
.nav-menu a:focus::after {
  transform: scaleX(1);
}
.nav-menu a:hover,
.nav-menu a:focus {
  color: #f58529;
}

/* Hamburger menu (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 36px;
  z-index: 1101;
}
.hamburger span {
  display: block;
  width: 32px;
  height: 4px;
  background: #3bb4fa;
  border-radius: 3px;
  transition: all 0.3s;
}

/* Mobile menu animado */
.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0; right: -100vw;
  width: 70vw;
  max-width: 300px;
  height: 100vh;
  background: var(--header-bg-gradient);
  box-shadow: -4px 0 24px rgba(24, 65, 115, 0.13);
  padding: 86px 28px 28px 28px;
  transition: right 0.4s cubic-bezier(.77,0,.18,1);
  z-index: 1100;
}
.mobile-menu.open {
  right: 0;
  display: flex;
}
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 28px;
  border-bottom: 2px solid transparent;
  transition: border 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a:focus {
  border-bottom: 2px solid #3bb4fa;
}

/* Responsividade */
@media (max-width: 900px) {
  header#main-header {
    padding: 14px 18px;
  }
  .logo img {
    height: 54px;
  }
  .nav-menu {
    gap: 22px;
  }
}

@media (max-width: 700px) {
  .nav-menu {
    display: none;
  }
  .logo {
    margin-left: 0;
  }
  .hamburger {
    display: flex;
  }
}

/* Evitar sobreposição do header no conteúdo */
body {
  padding-top: 105px;
}

@media (max-width: 700px) {
  body {
    padding-top: 74px;
  }
}




#sketch {
  width: 100vw;
  height: 100vh;
  background: black;
}

.loading span {
  animation: blur 1.5s calc(var(--i) / 5 * 1s) alternate infinite;
}

@keyframes blur {
  to {
    filter: blur(5px);
  }
}



























































 html {
  scroll-behavior: smooth;
}


header nav a {
  color: var(--texto-claro);
  margin-left: 20px;
  text-decoration: none;
  transition: color 0.3s;
}



header nav a:hover {
  color: var(--cor-principal);
}


















/* Hero section */
.imagem-principal {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.imagem-principal img {
  width: 100%;       /* ocupa toda a largura */
  height: 500px;     /* altura fixa (você pode mudar aqui) */
  object-fit: cover; /* mantém proporcional sem distorcer */
}











.section-segmentos{
  color: #161515;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: clamp(3rem, 5vw, 9rem) 1.25rem;
  text-align:center;
  background-color: #ffffff;
  font-weight: 100;
  margin-top: -100px;
}

.wrap{
  width:100%;
  max-width: var(--maxw);
  margin-inline:auto;
}

.badge{
  display:inline-block;
  font-size: .875rem;
  font-weight:300;
  letter-spacing:.04em;
  text-transform:uppercase;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
  padding: .5rem .75rem;
  border-radius: 999px;
  margin-bottom: 8rem;
}

h2{
  margin: 0 0 .75rem 0;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--accent);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
}

.sub{
  margin: 0 auto;
  max-width: 52rem;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--muted);
}






















.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: pulse 1.5s infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}













.logo-carousel {
  overflow: hidden;
  width: 100%;
  background: #ffffff;
  padding: 30px 0;
 
}

.carousel-track {
  display: flex;
  width: calc(200%); /* Porque repetimos as logos */
  animation: scroll 50s linear infinite;
}

.logo {
  flex: 0 0 auto;
  width: 150px; /* Ajuste do tamanho da logo */
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Animação infinita para deslizar */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .logo {
    width: 100px;
    margin: 0 10px;
  }
}
















.about-section {
  padding: 40px 20px;
  background: #3a3f50;
  color: #000;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffffff;
}

.carousel-wrapper {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.cards-carousel {
  display: flex;
  gap: 50px;
  transition: transform 0.45s ease;
  padding: 10px 4px 24px;
}

.service-card {
  flex: 0 0 clamp(220px, 24vw, 320px);
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}

.img-wrapper {
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.img-wrapper img {
  width: clamp(60px, 6vw, 90px);
  height: auto;
}

.service-card h3 {
  font-size: 1.15rem;
  margin: 6px 0 6px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.35;
  color: rgba(41, 39, 39, 0.95);
}

/* Cores personalizadas */
.cor1 { background: #ffffff; }
.cor2 { background: #ffffff; }
.cor3 { background: #ffffff; }
.cor4 { background: #ffffff; }
.cor5 { background: #ffffff; }
.cor6 { background: #ffffff; }
.cor7 { background: #ffffff; }
.cor8 { background: #ffffff; }

/* Pontinhos */
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 0;
}

.dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cfcfcf;
  opacity: 0.9;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.dots button[aria-current="true"] {
  width: 24px;
  opacity: 1;
  background: #111;
}

/* Mobile/tablet */
@media (max-width: 768px) {
  .cards-carousel { gap: 16px; }
  .service-card { flex: 0 0 calc(50% - 8px); aspect-ratio: auto; }
  .dots { gap: 8px; }
  .dots button { width: 12px; height: 12px; background: #bbb; }
  .dots button[aria-current="true"] { background: #111; }
}

@media (max-width: 480px) {
  .cards-carousel { gap: 12px; }
  .service-card { flex: 0 0 calc(50% - 6px); }
  .dots { gap: 6px; }
  .dots button { width: 14px; height: 14px; }
  .dots button[aria-current="true"] { background: #000; }
}





























































/* =========================
   ESTILO GERAL
========================= */
body {
  font-family: Arial, sans-serif;
  background: #111;
  margin: 0;
  padding: 0;
}

.slider-container {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 90%;
  max-width: 1110px;
  height: 90vh;
  overflow: hidden;
  border-radius: 12px;
  margin: 40px auto;
}

.now-showing {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #9fff6b;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.now-showing::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #9fff6b;
  border-radius: 50%;
}

/* =========================
   ACCORDION SLIDER
========================= */
.accordion-slider {
  display: flex;
  height: 100%;
  position: relative;
  flex: 1;
  z-index: 1;
}

.slide {
  flex: 1 1 0;
  position: relative;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  filter: grayscale(1);
  min-width: 0;
}

.slide:hover {
  filter: grayscale(0);
}

.slide.active {
  flex: 2.5 1 0;
  filter: grayscale(0);
  z-index: 2;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 80%);
  z-index: 1;
}

/* =========================
   CONTEÚDO DO SLIDE
========================= */
.slide-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: white;
  z-index: 2;
  text-align: center; /* CENTRALIZA TEXTO NO PC */
}

.slide.active .slide-content {
  bottom: 80px;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide-number {
  font-size: 64px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  position: absolute;
  bottom: 30px;
  left: 30px;
  transition: all 0.8s cubic-bezier(0.4,0,0.2,1);
  z-index: 2;
}

.slide.active .slide-number {
  top: -50px;
  left: 0;
  font-size: 48px;
}

/* Nome e subtítulo */
.car-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

.slide.active .car-name {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.car-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

.slide.active .car-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* Botão adicionar */
.add-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 32px;
  height: 32px;
  border: 2px solid #9fff6b;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/* =========================
   SETORES / BADGES
========================= */
.car-specs, .performance-badges {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
}

.slide.active .car-specs,
.slide.active .performance-badges {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   BOTÕES DE NAVEGAÇÃO
========================= */
.navigation-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 4;
  backdrop-filter: blur(10px);
}

.nav-prev { left: 20px; }
.nav-next { right: 20px; }

.navigation-arrows:hover {
  background: rgba(255,255,255,0.2);
}

/* =========================
   ESTILO MOBILE
========================= */
@media (max-width: 600px) {
  .slide-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 1;
  }

  .slide:not(.active) .slide-content {
    opacity: 0;
    transform: translate(-50%, -30%);
    pointer-events: none;
  }

  .car-name {
    font-size: 1.7rem;
    margin: 0;
  }

  .car-subtitle {
    font-size: 1rem;
    color: #ddd;
  }

  .navigation-arrows {
    top: 80%;
  }
}



























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

body {
  color: white;
  font: 18px/1.5 'Avenir Next', 'Avenir', 'Helvetica', 'Helvetica Neue', 'Arial', sans-serif;
  -webkit-font-smoothing: antialiased;
}

p { margin: 1.5em 0; }

/* Container method */
section.container-method { 
  background: #1a1b1d;
  width: 100%;
  padding: 50px;
}

section.container-method > .container {
  max-width: 700px;
  margin: 0 auto;
}

/* calc() method */
section.calc-method { 
  background: #2c2c2c;
  width: 700px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 50px calc(50% - 350px);
}

@media (max-width: 800px) {
  section.calc-method {
    width: 100%;
    padding: 50px;
    box-sizing: border-box;
  }
}

/* Pseudo-Element Method */
section.pseudo-element-method {
  background: #000000;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
}

section.pseudo-element-method:before, 
section.pseudo-element-method:after {
  content: '';
  display: block;
  width: 200%;
  height: 100%;
  background: inherit;
  position: absolute;
  top: 0;
}

section:before { right: 100%; }
section:after  { left: 100%;  }

html, body { overflow-x: hidden; }



/* Estilo e animação do título */
.animated-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeSlideUp 1.2s ease forwards;

}

/* Keyframes da animação */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}













body, html {
	margin: 0;
	padding: 0;
	height: 100%;	
	background: url("https://4kwallpapers.com/images/wallpapers/white-tiger-bengal-tiger-black-background-5k-3840x2160-1526.jpg") no-repeat center center fixed;
	background-size: cover;
}










.canvas {
	height: 100%;
	width: 100%;
	position: relative;
}

/* ANIMAÇÃO DO BRILHO */
@keyframes shine {
	from { opacity: 0.3; }
	to   { opacity: 1; }
}


/* LUA */
.canvas .moon {
	position: absolute;
	top: 50px;
	left: 50px;
	width: 100px;
	height: 100px;
	background: white;
	border-radius: 50%;
	box-shadow: 0px 0px 50px 11px rgba(255, 255, 255, .2);
}

/* ÁREA DO TEXTO */
.canvas .scroll {
	position: relative;
	padding: 20px;
	width: 50%;
	min-width: 400px;
	margin: auto;
	top: 50px;
	font-family: 'Montserrat', sans-serif;
}

.canvas .scroll .title {
	text-align: center;
	font-size: 60px;
	color: #ffffff;
	font-family: inherit;
	margin-bottom: 30px;
}

.canvas .scroll .title small {
	display: block;
	margin: 10px;
	font-size: 13px;
	text-align: center;
}

.canvas .scroll .content {
	margin: auto;
	text-align: center;
	font-size: 14px;
	color: #333;
	font-family: inherit;
	max-width: 500px;
}

a {
	color: #333;
}























:root {
  --primary: #42495e;
  --primary-dark: #484f68;
  --muted: #6b7280;
  --bg: #f9fafb;
  --card: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
}
.hero-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 100%;
  transition: transform var(--transition);
}
.hero-image img:hover {
  transform: scale(1.05);
}

/* Form Card */
.form-card {
  background: var(--card);
  border-radius: 0;
  padding: 32px;
  box-shadow: none;
  width: 100%;
}
.form-header {
  margin-bottom: 18px;
}
.form-header h1 {
  margin: 0;
  font-size: clamp(22px, 4vw, 32px);
  color: var(--primary-dark);
}
.form-header p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--muted);
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
}
.field span {
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 14px;
}
.field input,
.field textarea,
.field select {
  border: 1px solid #e5e7eb;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: all var(--transition);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
}
.field.full {
  grid-column: 1/-1;
}
.file-field input[type="file"] {
  padding: 8px;
}
.error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
}

/* Actions */
.actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.btn {
  border: 0;
  padding: 12px 18px;
  border-radius: 10px;
  background: #eef2ff;
  color: var(--primary-dark);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn:hover {
  background: #e0e7ff;
}
.btn.primary {
  background: var(--primary);
  color: white;
}
.btn.primary:hover {
  background: var(--primary-dark);
}


/* ===========================
   Mobile + Tablet Responsivo
   =========================== */

/* --- Layout Mobile / Tablets até 880px --- */
@media (max-width: 880px) {
  .hero {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
  }

  .hero-image {
    order: -1;
    height: 220px;
    margin-bottom: 16px;
  }

  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
  }

  .form-card {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .actions {
    justify-content: center;
    margin-top: 16px;
  }

  .btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }

  #project-image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
  }

  #project-image-preview img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
  }

  #project-image-preview button {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}

/* --- iPhones e Android pequenos até 480px --- */
@media (max-width: 480px) {
  .hero-image {
    height: 180px;
  }

  .form-card {
    padding: 12px;
  }

  .btn {
    font-size: 15px;
    padding: 10px;
  }

  #project-image-preview img {
    width: 70px;
    height: 70px;
  }
}

/* --- Telas muito pequenas (ex: iPhone SE, Android mini) até 320px --- */
@media (max-width: 320px) {
  .hero-image {
    height: 150px;
  }

  .form-card {
    padding: 8px;
  }

  .btn {
    font-size: 14px;
    padding: 8px;
  }

  #project-image-preview img {
    width: 60px;
    height: 60px;
  }
}
















































/* conteúdo de exemplo */
.page{min-height:60vh}
.hero-sample{
  display:grid;place-items:center;
  padding:6rem 1rem;
  background: radial-gradient(1200px 500px at 50% -10%, #142033 0%, transparent 60%);
  text-align:center;
}
.hero-sample h1{margin:0 0 .5rem}
.content-sample{padding:2rem 1rem; max-width:900px; margin:auto; color:var(--muted)}

/* FOOTER */
.site-footer{
  margin-top:4rem;
  background:linear-gradient(180deg, #000000 0%, #0a0f18 100%);
  border-top:1px solid rgba(255,255,255,.06);
  position:relative;
  overflow:hidden;
}

.footer-trust{
  display:flex; flex-wrap:wrap; gap:1rem;
  align-items:center; justify-content:space-between;
  padding:1rem 1.25rem;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.02);
}
.trust-list, .payments-list{
  display:flex; gap:.5rem; padding:0; margin:0; list-style:none;
}
.trust-badge{
  display:inline-block; padding:.4rem .6rem; border-radius:999px;
  background:rgba(58,161,255,.12); color:#cfe6ff; font-weight:600; font-size:.9rem;
  border:1px solid rgba(58,161,255,.35);
}
.pay{
  display:inline-flex; align-items:center; justify-content:center;
  min-width:64px; padding:.35rem .6rem; border-radius:.6rem; font-weight:700;
  background:#0d1625; border:1px solid rgba(255,255,255,.08);
}
.pay-pix{outline:2px solid rgba(48,209,88,.3)}
.pay-visa{outline:2px solid rgba(58,161,255,.3)}
.pay-master{outline:2px solid rgba(239,68,68,.3)}
.pay-boleto{outline:2px solid rgba(245,158,11,.3)}

.footer-grid{
  display:grid; gap:2rem;
  grid-template-columns: repeat(4, minmax(0,1fr));
  padding:2rem 1.25rem 2.5rem;
  max-width:1200px; margin:0 auto;
}
.footer-col{background:transparent}
.footer-title{
  margin:.25rem 0 1rem; font-size:1.1rem; letter-spacing:.2px;
  color:#eaf2ff; font-weight:700;
}
.footer-text{color:var(--muted); margin:.25rem 0 1rem}
.footer-list{margin:.5rem 0 1.25rem; padding-left:1rem; color:var(--muted)}
.footer-social{display:flex; gap:.75rem; flex-wrap:wrap}
.social-link{
  text-decoration:none; color:#d7e7ff; font-weight:600;
  border:1px solid rgba(255,255,255,.12); padding:.45rem .7rem; border-radius:.6rem;
}
.social-link:hover{background:rgba(255,255,255,.06)}

.footer-contact{list-style:none; padding:0; margin:0 0 1rem; color:var(--muted)}
.footer-contact .link{color:#d7e7ff; text-decoration:none}
.footer-contact .link:hover{text-decoration:underline}

.contact-form, .newsletter-form{display:grid; gap:.75rem}
.fld{display:grid; gap:.35rem}
.fld input, .fld textarea{
  width:100%; padding:.7rem .8rem; border-radius:.6rem; border:1px solid rgba(255,255,255,.14);
  background:#0d1625; color:#e9f2ff; outline:none;
}
.fld input:focus, .fld textarea:focus{box-shadow:var(--ring); border-color:rgba(58,161,255,.5)}
.chk{display:flex; gap:.6rem; font-size:.95rem; color:var(--muted); align-items:flex-start}
.chk input{margin-top:.25rem}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  background:linear-gradient(180deg, var(--brand) 0%, var(--brand-2) 100%);
  color:#061423; border:0; border-radius:.65rem; padding:.7rem 1rem; font-weight:800; cursor:pointer;
}
.btn:hover{filter:brightness(1.05)}
.btn-secondary{
  background:transparent; color:#cfe0ff; border:1px solid rgba(255,255,255,.18);
}
.btn-secondary:hover{background:rgba(255,255,255,.06)}

.form-status{min-height:1.2rem; font-size:.95rem}
.form-status.ok{color:var(--ok)}
.form-status.warn{color:var(--warn)}
.form-status.err{color:var(--danger)}

.footer-address{font-style:normal; color:#dbe7fb; margin-bottom:.75rem}
.map-wrap{
  position:relative; overflow:hidden; border-radius:.8rem;
  border:1px solid rgba(255,255,255,.1);
  aspect-ratio: 4 / 3; background:#0d1625;
  margin-bottom:.75rem;
}
.map-wrap iframe{width:100%; height:100%; border:0}

.footer-bottom{
  display:flex; gap:1rem; flex-wrap:wrap; align-items:center; justify-content:space-between;
  padding:1rem 1.25rem; border-top:1px solid rgba(255,255,255,.06);
  background:rgba(255,255,255,.02); color:#b7c8dc;
  font-size:.95rem;
}
.bottom-nav{display:flex; gap:.75rem; flex-wrap:wrap}
.bottom-nav .link{color:#cfe0ff; text-decoration:none}
.bottom-nav .link:hover{text-decoration:underline}

/* Botões flutuantes */
.back-to-top{
  position:fixed; right:1rem; bottom:1rem;
  width:42px; height:42px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18); background:#0d1625; color:#fff;
  cursor:pointer; display:none; align-items:center; justify-content:center;
}
.back-to-top.show{display:flex}
.whatsapp-fab{
  position:fixed; right:1rem; bottom:4.2rem;
  width:48px; height:48px; border-radius:999px; display:grid; place-items:center;
  text-decoration:none; background:#25D366; color:#041b0e; font-size:1.25rem; font-weight:900;
  border:0; box-shadow:0 10px 24px rgba(0,0,0,.35);
}

/* Acessibilidade e utilidades */
.visually-hidden{
  position:absolute!important; width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;
}

/* Responsivo */
@media (max-width: 1024px){
  .footer-grid{grid-template-columns: repeat(2, minmax(0,1fr))}
}
@media (max-width: 640px){
  .footer-grid{grid-template-columns: 1fr}
  .footer-trust{gap:.75rem}
  .payments-list{flex-wrap:wrap}
  .back-to-top{right:.75rem; bottom:.75rem}
  .whatsapp-fab{right:.75rem; bottom:3.9rem}
}



































