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

html,
body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background: #000;
  color: #fff;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 48px;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: transparent;
}

/* LOGO */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
}

.brand img {
  height: 42px;
  filter: brightness(0) invert(1);
}

.brand span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

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

nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
  transition: all 0.3s ease;
}

nav a:hover {
  color: #e50914;
}

.menu-highlight {
  color: #e50914 !important;
  font-weight: 900 !important;
}

/* ================= DROPDOWN ================= */

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;

  background: #fff;
  color: #000;

  min-width: 220px;
  padding: 12px 0;

  border-radius: 6px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.3);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);

  transition: all 0.25s ease;
  z-index: 2000;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: #000;
  text-decoration: none;
  text-shadow: none;
}

.dropdown-menu li a:hover {
  background: #f5f5f5;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= HERO VIDEO ================= */

.hero-video-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100vw;
  height: 100vh;

  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;

  z-index: 1;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(to right, rgba(0,0,0,0.65), rgba(0,0,0,0.12)),
    linear-gradient(to bottom, rgba(0,0,0,0.10), rgba(0,0,0,0.55));
}

/* TEXTO */
.hero-text {
  position: relative;
  z-index: 3;
  height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 76px;
  font-weight: 900;
  letter-spacing: -2px;
  text-shadow: 0 4px 18px rgba(0,0,0,0.55);
}

.hero-text p {
  margin-top: 18px;
  font-size: 22px;
  max-width: 680px;
  color: #f0f0f0;
  line-height: 1.5;
  text-shadow: 0 3px 14px rgba(0,0,0,0.65);
}

.hero-text a {
  margin-top: 34px;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.75);
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: rgba(0,0,0,0.18);
  transition: all 0.3s ease;
}

.hero-text a:hover {
  background: #e50914;
  border-color: #e50914;
}

/* ================= FIPA HOME DESTAQUE ================= */

.fipa-alert {
  position: absolute;
  top: 110px;
  left: 60px;
  z-index: 5;

  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(8px);

  padding: 18px 26px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
}

.fipa-alert span {
  display: block;
  font-size: 13px;
  color: #e50914;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
}

.fipa-alert a {
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.fipa-countdown {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 5;

  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(7px);

  padding: 22px 26px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
}

.fipa-countdown span {
  display: block;
  font-size: 12px;
  color: #aaa;
  font-weight: 800;
  letter-spacing: 1px;
}

.fipa-countdown strong {
  display: block;
  font-size: 46px;
  color: #fff;
  line-height: 1;
  margin: 6px 0;
}

.fipa-countdown small {
  color: #aaa;
}

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

.footer {
  background: #000;
  padding: 80px 40px 40px;
  border-top: 1px solid #111;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-col h4 {
  margin-bottom: 12px;
  font-size: 14px;
  color: #aaa;
}

.footer-col p {
  font-size: 14px;
  color: #777;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 13px;
  color: #555;
}

/* ================= BOTÕES E ELEMENTOS GERAIS ================= */

.eyebrow {
  display: block;
  color: #e50914;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.btn-red {
  background: #e50914;
  padding: 14px 28px;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  display: inline-block;
}

.btn-outline {
  border: 1px solid #fff;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  border-radius: 30px;
  display: inline-block;
}

/* ================= PÁGINA REVENDEDOR ================= */

.revendedor-hero {
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.35)),
    url("/images/hero/hero-01.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
}

.revendedor-content {
  max-width: 760px;
}

.revendedor-content h1 {
  font-size: 72px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.revendedor-content p {
  font-size: 22px;
  line-height: 1.6;
  color: #f1f1f1;
  max-width: 680px;
}

.revendedor-btn {
  display: inline-block;
  margin-top: 34px;
  padding: 15px 34px;
  border-radius: 40px;
  background: #e50914;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.revendedor-section {
  padding: 90px 48px;
  background: #fff;
  color: #111;
}

.revendedor-section.dark {
  background: #050505;
  color: #fff;
}

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

.revendedor-section h2,
.revendedor-form-section h2 {
  font-size: 44px;
  margin-bottom: 34px;
  letter-spacing: -1px;
}

.revendedor-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.revendedor-card,
.step {
  padding: 32px;
  border-radius: 18px;
  background: #f4f4f4;
}

.revendedor-card h3,
.step h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.revendedor-card p,
.step p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.revendedor-section.dark .revendedor-card,
.revendedor-section.dark .step {
  background: #111;
}

.revendedor-list {
  list-style: none;
  max-width: 850px;
}

.revendedor-list li {
  padding: 18px 0;
  border-bottom: 1px solid #222;
  color: #ddd;
  font-size: 18px;
}

.revendedor-list li::before {
  content: "▸ ";
  color: #e50914;
  font-weight: bold;
}

.step span {
  display: block;
  color: #e50914;
  font-weight: 900;
  margin-bottom: 16px;
}

.revendedor-form-section {
  padding: 90px 48px;
  background: #0b0b0b;
  color: #fff;
}

.revendedor-form-section p {
  max-width: 720px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 32px;
}

.revendedor-form {
  max-width: 760px;
  display: grid;
  gap: 16px;
}

.revendedor-form input,
.revendedor-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #222;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 15px;
}

.revendedor-form textarea {
  min-height: 140px;
  resize: vertical;
}

.revendedor-form button {
  padding: 16px 30px;
  border: none;
  border-radius: 40px;
  background: #e50914;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

/* ================= QUEM SOMOS ================= */

.about-hero {
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.28)),
    url("/images/hero/hero-01.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
}

.about-hero-content {
  max-width: 780px;
}

.about-hero h1 {
  font-size: 78px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.about-hero p {
  font-size: 22px;
  line-height: 1.6;
  color: #f1f1f1;
  max-width: 740px;
}

.about-section {
  background: #fff;
  color: #111;
  padding: 90px 48px;
}

.about-section.dark {
  background: #050505;
  color: #fff;
}

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

.about-container h2 {
  font-size: 46px;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.about-text p,
.about-card p,
.about-box p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.about-section.dark .about-box p {
  color: #ccc;
}

.about-card {
  margin-top: 40px;
  padding: 34px;
  background: #f3f3f3;
  border-radius: 20px;
}

.about-card h3,
.about-box h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-box {
  background: #111;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #222;
}

.founder-section {
  background: #0b0b0b;
  color: #fff;
  padding: 100px 48px;
}

.founder-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.photo-placeholder {
  height: 520px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #111, #222);
  border: 1px solid #242424;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-weight: 800;
  letter-spacing: 1px;
}

.founder-text h2 {
  font-size: 54px;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.founder-text p {
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.founder-text blockquote {
  margin-top: 30px;
  padding-left: 24px;
  border-left: 4px solid #e50914;
  font-size: 22px;
  line-height: 1.5;
  color: #fff;
}

.about-list {
  list-style: none;
  max-width: 900px;
}

.about-list li {
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

.about-list li::before {
  content: "▸ ";
  color: #e50914;
  font-weight: bold;
}

/* ================= SEJA SHOWROOM ================= */

.showroom-hero {
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(0,0,0,0.82), rgba(0,0,0,0.30)),
    url("/images/hero/hero-01.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
}

.showroom-content {
  max-width: 780px;
}

.showroom-content h1 {
  font-size: 72px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.showroom-content p {
  font-size: 22px;
  line-height: 1.6;
  color: #f1f1f1;
  max-width: 700px;
}

.showroom-btn {
  display: inline-block;
  margin-top: 34px;
  padding: 15px 34px;
  border-radius: 40px;
  background: #e50914;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.showroom-section {
  padding: 90px 48px;
  background: #fff;
  color: #111;
}

.showroom-section.dark {
  background: #050505;
  color: #fff;
}

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

.showroom-section h2,
.showroom-form-section h2 {
  font-size: 44px;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.showroom-text {
  max-width: 900px;
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 42px;
}

.showroom-grid,
.showroom-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.showroom-steps {
  grid-template-columns: repeat(4, 1fr);
}

.showroom-card,
.showroom-step {
  padding: 32px;
  border-radius: 18px;
  background: #f4f4f4;
}

.showroom-card h3,
.showroom-step h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.showroom-card p,
.showroom-step p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.showroom-step span {
  display: block;
  color: #e50914;
  font-weight: 900;
  margin-bottom: 16px;
}

.showroom-list {
  list-style: none;
  max-width: 900px;
}

.showroom-list li {
  padding: 18px 0;
  border-bottom: 1px solid #222;
  color: #ddd;
  font-size: 18px;
}

.showroom-list li::before {
  content: "▸ ";
  color: #e50914;
  font-weight: bold;
}

.showroom-form-section {
  padding: 90px 48px;
  background: #0b0b0b;
  color: #fff;
}

.showroom-form-section p {
  max-width: 720px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 32px;
}

.showroom-form {
  max-width: 760px;
  display: grid;
  gap: 16px;
}

.showroom-form input,
.showroom-form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #222;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 15px;
}

.showroom-form textarea {
  min-height: 140px;
  resize: vertical;
}

.showroom-form button {
  padding: 16px 30px;
  border: none;
  border-radius: 40px;
  background: #e50914;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

/* ================= AUTORIZADA ================= */

.autorizada-hero {
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.30)),
    url("/images/hero/hero-01.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
}

.autorizada-content {
  max-width: 760px;
}

.autorizada-content h1 {
  font-size: 70px;
  margin-bottom: 24px;
}

.autorizada-content p {
  font-size: 22px;
  color: #eee;
}

.autorizada-btn {
  margin-top: 30px;
  display: inline-block;
  padding: 14px 30px;
  background: #e50914;
  border-radius: 40px;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.autorizada-section {
  padding: 90px 48px;
  background: #fff;
  color: #111;
}

.autorizada-section.dark {
  background: #050505;
  color: #fff;
}

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

.autorizada-grid,
.autorizada-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.autorizada-steps {
  grid-template-columns: repeat(4, 1fr);
}

.autorizada-card,
.autorizada-step {
  padding: 30px;
  border-radius: 16px;
  background: #f3f3f3;
}

.autorizada-list li {
  padding: 16px 0;
  border-bottom: 1px solid #222;
}

.autorizada-form-section {
  padding: 90px 48px;
  background: #0b0b0b;
}

.autorizada-form {
  display: grid;
  gap: 16px;
  max-width: 700px;
}

.autorizada-form input,
.autorizada-form textarea {
  padding: 14px;
  background: #111;
  border: 1px solid #222;
  color: #fff;
}

.autorizada-form button {
  padding: 16px;
  background: #e50914;
  border: none;
  color: #fff;
  font-weight: bold;
}

/* ================= MAPA — DESATIVADO NO MOMENTO ================= */

.map-section {
  background: #000;
  padding: 120px 40px;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.map-container h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.map-container p {
  color: #aaa;
  margin-bottom: 40px;
}

#map {
  height: 550px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

/* ================= MINI TRAILERS PREMIUM ================= */

.mini-hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('/images/hero/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 60px;
}

.mini-hero-content {
  max-width: 800px;
}

.mini-hero h1 {
  font-size: 64px;
  margin: 10px 0;
}

.mini-hero p {
  font-size: 20px;
  color: #ccc;
  margin-bottom: 30px;
}

/* SEÇÕES */

.mini-section {
  padding: 100px 40px;
}

.mini-section.light {
  background: #f5f5f5;
  color: #111;
}

.mini-section.dark {
  background: #000;
}

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

.mini-lead {
  margin: 20px 0 40px;
  font-size: 18px;
}

/* GRID */

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mini-card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
}

/* MODELOS */

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.model-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
}

.model-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.model-info {
  padding: 20px;
}

/* CTA */

.mini-cta {
  background: #111;
  padding: 100px 40px;
  text-align: center;
}

.mini-cta h2 {
  font-size: 36px;
}

.mini-cta p {
  margin: 20px 0;
  color: #aaa;
}

/* ================= CONFIGURADOR MINI TRAILER ================= */

.config-hero {
  min-height: 70vh;
  background:
    linear-gradient(to right, rgba(0,0,0,0.86), rgba(0,0,0,0.35)),
    url("/images/products/mini-trailer-1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
}

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

.config-hero h1 {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.config-hero p {
  max-width: 720px;
  font-size: 21px;
  line-height: 1.6;
  color: #eee;
}

.config-section {
  background: #050505;
  color: #fff;
  padding: 90px 48px;
}

.config-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.config-form,
.config-summary {
  background: #101010;
  border: 1px solid #222;
  border-radius: 22px;
  padding: 34px;
}

.config-form h2,
.config-summary h2 {
  margin-bottom: 24px;
  font-size: 30px;
}

.config-form input,
.config-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 14px;
  border: 1px solid #222;
  border-radius: 10px;
  background: #080808;
  color: #fff;
  font-size: 15px;
}

.config-form textarea {
  min-height: 130px;
  resize: vertical;
}

.config-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  margin-bottom: 12px;
  background: #080808;
  border: 1px solid #222;
  border-radius: 12px;
  cursor: pointer;
}

.config-option strong {
  color: #e50914;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #222;
}

.summary-box {
  margin-top: 24px;
  padding: 20px;
  background: #080808;
  border-radius: 14px;
  border: 1px solid #222;
}

.summary-box h3 {
  margin-bottom: 12px;
}

#summaryText {
  color: #ccc;
  line-height: 1.8;
}

.summary-total {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.summary-total span {
  color: #aaa;
}

.summary-total strong {
  display: block;
  margin-top: 6px;
  font-size: 34px;
  color: #fff;
}

.config-btn {
  width: 100%;
  margin-top: 18px;
  padding: 16px;
  border: none;
  border-radius: 40px;
  background: #e50914;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.config-btn.secondary {
  background: transparent;
  border: 1px solid #444;
}

.config-note {
  margin-top: 18px;
  color: #888;
  font-size: 13px;
  line-height: 1.6;
}

/* ================= FIPA 2026 — VERSÃO PREMIUM ================= */

.cinema-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.cinema-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.cinema-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at center, rgba(0,0,0,0.20), rgba(0,0,0,0.78)),
    linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.88));
}

.cinema-content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.cinema-top {
  font-size: 13px;
  letter-spacing: 4px;
  color: #ccc;
  font-weight: 900;
  margin-bottom: 14px;
}

.cinema-content h1 {
  font-size: 96px;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 18px;
  text-shadow: 0 10px 40px rgba(0,0,0,0.7);
}

.cinema-sub {
  font-size: 26px;
  color: #eee;
  margin-bottom: 30px;
}

.cinema-countdown {
  margin: 26px 0 30px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.42);
  backdrop-filter: blur(8px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.cinema-countdown span,
.cinema-countdown small {
  font-size: 12px;
  color: #aaa;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.cinema-countdown strong {
  font-size: 78px;
  color: #fff;
  line-height: 1;
  margin: 6px 0;
}

.cinema-btn {
  display: inline-block;
  padding: 16px 38px;
  border-radius: 40px;
  background: #e50914;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 14px 45px rgba(229,9,20,0.42);
}

.cinema-note {
  margin-top: 18px;
  color: #aaa;
  font-size: 14px;
}

/* BASE FIPA */

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

.fipa-container h2 {
  font-size: 54px;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 28px;
}

.fipa-container p {
  font-size: 20px;
  line-height: 1.75;
}

/* DOMÍNIO */

.fipa-dominio {
  background: #000;
  color: #fff;
  padding: 140px 48px;
  text-align: center;
}

.fipa-dominio p {
  max-width: 850px;
  margin: 0 auto;
  color: #cfcfcf;
}

/* NÚMEROS */

.fipa-numeros {
  background: #fff;
  color: #111;
  padding: 120px 48px;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 46px 0;
}

.numeros-grid div {
  padding: 34px;
  border-radius: 22px;
  background: #f3f3f3;
  border: 1px solid #e7e7e7;
}

.numeros-grid strong {
  display: block;
  font-size: 46px;
  color: #e50914;
  margin-bottom: 10px;
}

.numeros-grid span {
  color: #333;
  font-weight: 800;
}

.numeros-impacto {
  max-width: 850px;
  color: #333;
}

/* LOCALIZAÇÃO */

.fipa-localizacao {
  background: #050505;
  color: #fff;
  padding: 120px 48px;
}

.fipa-localizacao p {
  max-width: 920px;
  color: #ccc;
}

.stand-card {
  margin: 42px 0;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid #222;
  background: #111;

  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: center;
}

.stand-card span {
  display: block;
  color: #e50914;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.4px;
}

.stand-card strong {
  display: block;
  font-size: 96px;
  line-height: 1;
}

.stand-card p {
  color: #ddd;
  font-size: 21px;
}

.mapa-box {
  margin-top: 36px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #222;
  background: #111;
}

.mapa-box img {
  width: 100%;
  display: block;
}

.mapa-note {
  margin-top: 14px;
  color: #777 !important;
  font-size: 13px !important;
}

/* CONTRASTE */

.fipa-contraste {
  background:
    linear-gradient(to right, rgba(0,0,0,0.88), rgba(0,0,0,0.45)),
    url("/images/hero/hero-01.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 140px 48px;
}

.fipa-contraste p {
  max-width: 850px;
  color: #ddd;
}

/* EXECUÇÃO */

.fipa-execucao {
  background: #fff;
  color: #111;
  padding: 120px 48px;
}

.execucao-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.execucao-grid div {
  background: #f3f3f3;
  border: 1px solid #e7e7e7;
  border-radius: 22px;
  padding: 30px;
}

.execucao-grid span {
  display: block;
  color: #e50914;
  font-weight: 900;
  margin-bottom: 18px;
}

.execucao-grid h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.execucao-grid p {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

/* ESTANDE */

.fipa-estande {
  background: #050505;
  color: #fff;
  padding: 120px 48px;
}

.estande-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.estande-grid div {
  background: #111;
  border: 1px solid #222;
  border-radius: 22px;
  padding: 34px;
}

.estande-grid h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.estande-grid p {
  color: #ccc;
  font-size: 17px;
}

/* PARTICIPAR */

.fipa-participar {
  background: #fff;
  color: #111;
  padding: 120px 48px;
}

.fipa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.fipa-card {
  padding: 34px;
  border-radius: 22px;
  background: #f3f3f3;
  border: 1px solid #e7e7e7;
}

.fipa-card h3 {
  font-size: 26px;
  margin-bottom: 14px;
}

.fipa-card p {
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}

.fipa-card a {
  display: inline-block;
  margin-top: 18px;
  color: #e50914;
  text-decoration: none;
  font-weight: 900;
}

/* FINAL */

.fipa-final-impacto {
  background: #000;
  color: #fff;
  padding: 140px 48px;
  text-align: center;
}

.fipa-final-impacto p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: #ccc;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .cinema-content h1 {
    font-size: 56px;
  }

  .cinema-sub {
    font-size: 20px;
  }

  .cinema-countdown {
    width: 150px;
    height: 150px;
  }

  .cinema-countdown strong {
    font-size: 54px;
  }

  .fipa-container h2 {
    font-size: 38px;
  }

  .numeros-grid,
  .execucao-grid,
  .estande-grid,
  .fipa-grid,
  .stand-card {
    grid-template-columns: 1fr;
  }

  .fipa-dominio,
  .fipa-numeros,
  .fipa-localizacao,
  .fipa-contraste,
  .fipa-execucao,
  .fipa-estande,
  .fipa-participar,
  .fipa-final-impacto {
    padding-left: 24px;
    padding-right: 24px;
  }
}

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

@media (max-width: 900px) {
  .revendedor-content h1,
  .showroom-content h1,
  .about-hero h1,
  .fipa-content h1 {
    font-size: 46px;
  }

  .revendedor-grid,
  .steps,
  .showroom-grid,
  .showroom-steps,
  .about-grid,
  .founder-container,
  .autorizada-grid,
  .autorizada-steps,
  .mini-grid,
  .model-grid,
  .config-grid,
  .fipa-grid,
  .launch-grid {
    grid-template-columns: 1fr;
  }

  .revendedor-section,
  .revendedor-form-section,
  .revendedor-hero,
  .showroom-section,
  .showroom-form-section,
  .showroom-hero,
  .about-section,
  .founder-section,
  .about-hero,
  .config-hero,
  .config-section,
  .fipa-hero,
  .fipa-section,
  .fipa-impact,
  .fipa-final {
    padding-left: 24px;
    padding-right: 24px;
  }

  .photo-placeholder {
    height: 360px;
  }

  .config-hero h1 {
    font-size: 42px;
  }

  .fipa-container h2,
  .fipa-impact h2,
  .fipa-final h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {

  .header {
    height: auto;
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  nav ul {
    gap: 16px;
    flex-wrap: wrap;
  }

  .brand img {
    height: 34px;
  }

  .brand span {
    font-size: 15px;
  }

  .hero-text {
    padding: 0 24px;
  }

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

  .hero-text p {
    font-size: 18px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .fipa-alert {
    top: 150px;
    left: 24px;
    right: 24px;
  }

  .fipa-countdown {
    left: 24px;
    bottom: 40px;
  }
}

/* ================= CINEMA FIPA ================= */

.cinema-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.cinema-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.cinema-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.cinema-content {
  position: relative;
  z-index: 2;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.cinema-top {
  font-size: 14px;
  letter-spacing: 3px;
  color: #aaa;
}

.cinema-content h1 {
  font-size: 90px;
  margin: 10px 0;
  letter-spacing: -2px;
}

.cinema-sub {
  font-size: 24px;
  color: #ddd;
  margin-bottom: 40px;
}

.cinema-countdown {
  margin: 30px 0;
}

.cinema-countdown span {
  display: block;
  font-size: 12px;
  color: #aaa;
}

.cinema-countdown strong {
  font-size: 72px;
  color: #fff;
}

.cinema-countdown small {
  font-size: 14px;
  color: #aaa;
}

.cinema-btn {
  margin-top: 30px;
  padding: 16px 36px;
  border-radius: 40px;
  background: #e50914;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

/* ===== REBOQUES ===== */

.reboque-section {
  padding: 100px 40px;
}

.reboque-section.light {
  background: #f5f5f5;
  color: #111;
}

.reboque-section.dark {
  background: #050505;
}

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

.reboque-container h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.reboque-lead {
  margin-bottom: 40px;
  color: #666;
}

.reboque-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reboque-card {
  background: #111;
  padding: 30px;
  border-radius: 12px;
}

.reboque-section.light .reboque-card {
  background: #fff;
}

.reboque-impact {
  padding: 120px 40px;
  text-align: center;
  background: #000;
}

.reboque-impact h2 {
  font-size: 54px;
  margin-bottom: 20px;
}

.reboque-impact p {
  color: #aaa;
  max-width: 800px;
  margin: auto;
}

.reboque-cta {
  padding: 120px 40px;
  text-align: center;
  background: #111;
}

/* ================= REBOQUE GM ================= */

.gm-hero {
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(0,0,0,0.84), rgba(0,0,0,0.30)),
    url("/images/hero/hero-01.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
}

.gm-hero-content {
  max-width: 820px;
}

.gm-hero h1 {
  font-size: 82px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.gm-hero p {
  font-size: 22px;
  line-height: 1.6;
  color: #f1f1f1;
  max-width: 760px;
  margin-bottom: 34px;
}

.gm-section {
  padding: 100px 48px;
}

.gm-section.light {
  background: #fff;
  color: #111;
}

.gm-section.dark {
  background: #050505;
  color: #fff;
}

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

.gm-container h2 {
  font-size: 50px;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.gm-lead {
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  max-width: 950px;
  margin-bottom: 24px;
}

.gm-impact {
  background: #000;
  color: #fff;
  padding: 130px 48px;
  text-align: center;
}

.gm-impact h2 {
  font-size: 56px;
  max-width: 980px;
  margin: 0 auto 22px;
  letter-spacing: -1px;
}

.gm-impact p {
  font-size: 24px;
  color: #aaa;
}

.gm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.gm-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 20px;
  padding: 34px;
}

.gm-section.light .gm-card {
  background: #f3f3f3;
  border-color: #e5e5e5;
}

.gm-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.gm-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #ccc;
}

.gm-section.light .gm-card p {
  color: #444;
}

.gm-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.gm-specs div {
  background: #111;
  border: 1px solid #222;
  border-radius: 18px;
  padding: 28px;
}

.gm-specs span {
  display: block;
  color: #e50914;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.gm-specs strong {
  font-size: 20px;
  line-height: 1.4;
}

.gm-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gm-placeholder {
  height: 260px;
  border-radius: 20px;
  background: #f1f1f1;
  border: 1px dashed #ccc;
  color: #777;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.gm-cta {
  background:
    linear-gradient(to right, rgba(0,0,0,0.86), rgba(0,0,0,0.45)),
    url("/images/hero/hero-01.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 48px;
  text-align: center;
}

.gm-cta h2 {
  font-size: 62px;
  margin-bottom: 20px;
}

.gm-cta p {
  max-width: 780px;
  margin: 0 auto 34px;
  color: #ddd;
  font-size: 21px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .gm-hero h1 {
    font-size: 50px;
  }

  .gm-grid,
  .gm-specs,
  .gm-image-grid {
    grid-template-columns: 1fr;
  }

  .gm-hero,
  .gm-section,
  .gm-impact,
  .gm-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .gm-container h2,
  .gm-impact h2,
  .gm-cta h2 {
    font-size: 38px;
  }
}

/* ================= PORTAL REBOQUES ================= */

.reboques-grid-section {
  background: #050505;
  color: #fff;
  padding: 110px 48px;
}

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

.reboques-container h2 {
  font-size: 52px;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.reboques-subtitle {
  max-width: 850px;
  color: #aaa;
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 46px;
}

.reboques-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.reboques-card {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  border: 1px solid #222;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.reboques-card:hover {
  transform: translateY(-8px);
  border-color: #e50914;
}

.reboques-img {
  height: 260px;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.65)),
    url("/images/hero/hero-01.jpg");
  background-size: cover;
  background-position: center;
}

.reboques-card-content {
  padding: 30px;
}

.reboques-card-content span {
  display: block;
  color: #e50914;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.reboques-card-content h3 {
  font-size: 34px;
  margin-bottom: 12px;
}

.reboques-card-content p {
  color: #ccc;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .reboques-grid {
    grid-template-columns: 1fr;
  }

  .reboques-grid-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .reboques-container h2 {
    font-size: 38px;
  }
}

/* ================= BRAVOLLI BANK ================= */

.bank-hero {
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(0,0,0,0.88), rgba(0,0,0,0.38)),
    url("/images/hero/hero-01.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
}

.bank-hero-content {
  max-width: 850px;
}

.bank-hero h1 {
  font-size: 86px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 26px;
}

.bank-hero p {
  font-size: 23px;
  line-height: 1.6;
  color: #f1f1f1;
  max-width: 780px;
  margin-bottom: 34px;
}

.bank-section {
  padding: 105px 48px;
}

.bank-section.light {
  background: #fff;
  color: #111;
}

.bank-section.dark {
  background: #050505;
  color: #fff;
}

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

.bank-container h2 {
  font-size: 54px;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.bank-lead {
  max-width: 950px;
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 24px;
}

.bank-impact {
  background: #000;
  color: #fff;
  padding: 135px 48px;
  text-align: center;
}

.bank-impact h2 {
  max-width: 980px;
  margin: 0 auto 24px;
  font-size: 58px;
  letter-spacing: -1px;
}

.bank-impact p {
  font-size: 24px;
  color: #aaa;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 42px;
}

.bank-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 22px;
  padding: 34px;
}

.bank-section.light .bank-card {
  background: #f3f3f3;
  border-color: #e5e5e5;
}

.bank-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

.bank-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #ccc;
}

.bank-section.light .bank-card p {
  color: #444;
}

.bank-status {
  background: #090909;
  color: #fff;
  padding: 110px 48px;
}

.bank-status p {
  max-width: 900px;
  color: #ccc;
  font-size: 20px;
  line-height: 1.8;
}

.bank-cta {
  background:
    linear-gradient(to right, rgba(0,0,0,0.90), rgba(0,0,0,0.52)),
    url("/images/hero/hero-01.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 130px 48px;
  text-align: center;
}

.bank-cta h2 {
  font-size: 68px;
  margin-bottom: 20px;
}

.bank-cta p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: #ddd;
  font-size: 22px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .bank-hero h1 {
    font-size: 52px;
  }

  .bank-grid {
    grid-template-columns: 1fr;
  }

  .bank-hero,
  .bank-section,
  .bank-impact,
  .bank-status,
  .bank-cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bank-container h2,
  .bank-impact h2,
  .bank-cta h2 {
    font-size: 38px;
  }
}

/* ================= BRAVOLLI MARINE ================= */

.marine-hero {
  position: relative;
  height: 100vh;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.35)),
    url("/images/hero/hero-01.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.marine-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0,0,0,0.2), rgba(0,0,0,0.9));
}

.marine-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 48px;
}

.marine-content h1 {
  font-size: 90px;
  line-height: 0.95;
  margin-bottom: 20px;
}

.marine-content p {
  font-size: 22px;
  color: #ddd;
}

.marine-section {
  padding: 120px 48px;
}

.marine-section.light {
  background: #fff;
  color: #111;
}

.marine-section.dark {
  background: #050505;
  color: #fff;
}

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

.marine-container h2 {
  font-size: 52px;
  margin-bottom: 28px;
}

.marine-lead {
  font-size: 20px;
  margin-bottom: 20px;
}

.marine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.marine-card {
  padding: 30px;
  border-radius: 20px;
  background: #111;
  border: 1px solid #222;
}

.marine-impact {
  background: #000;
  color: #fff;
  padding: 140px 48px;
  text-align: center;
}

.marine-impact h2 {
  font-size: 56px;
}

.marine-cta {
  background: #000;
  padding: 120px 48px;
  text-align: center;
}

@media (max-width: 900px) {
  .marine-content h1 {
    font-size: 50px;
  }

  .marine-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================================================== */
/* REVENDAS BRAVOLLI — MAPA REGIONAL PARÁ */
/* ===================================================== */

.revenda-mapa-full{
    position:relative;
    width:100%;
    min-height:100vh;
    background:#000;
    overflow:hidden;
    padding:120px 0 80px;
}

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

.revenda-mapa-header{
    position:relative;
    z-index:5;
    text-align:center;
    margin-bottom:50px;
    padding:0 30px;
}

.revenda-mapa-header span{
    display:block;
    color:#ff1d25;
    font-size:18px;
    font-weight:900;
    letter-spacing:5px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.revenda-mapa-header h2{
    color:#fff;
    font-size:82px;
    line-height:0.95;
    font-weight:900;
    margin:0 auto;
    max-width:1400px;
    letter-spacing:-4px;
}

.revenda-mapa-header p{
    margin-top:28px;
    color:#c8c8c8;
    font-size:24px;
    line-height:1.7;
    font-weight:500;
}

/* ===================================================== */
/* MAPA */
/* ===================================================== */

#mapaParaSvg{
    position:relative;
    z-index:2;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:visible;
    padding:0;
    margin:0;
}

#mapaParaSvg svg{
    width:92vw !important;
    max-width:1650px !important;
    height:auto !important;
    display:block;
    overflow:visible !important;

    filter:
    drop-shadow(0 0 80px rgba(255,0,0,.18))
    drop-shadow(0 0 120px rgba(255,0,0,.10));
}

/* ===================================================== */
/* REGIÕES */
/* ===================================================== */

#mapaParaSvg path{
    stroke:#ffffff !important;
    stroke-width:2.4px !important;
    cursor:pointer !important;
    transition:all .25s ease !important;
    transform-origin:center;
}

#mapaParaSvg path:hover{
    filter:
    brightness(1.18)
    drop-shadow(0 0 20px rgba(255,255,255,.95));

    stroke-width:3px !important;
}

/* ===================================================== */
/* CARD INFO */
/* ===================================================== */

#mapaInfo{
    position:fixed;
    left:40px;
    bottom:40px;
    z-index:999;

    background:rgba(0,0,0,.88);

    border:1px solid rgba(255,255,255,.12);

    border-radius:24px;

    padding:24px 30px;

    backdrop-filter:blur(12px);

    box-shadow:
    0 0 40px rgba(0,0,0,.45),
    0 0 30px rgba(255,0,0,.10);
}

#mapaInfo strong{
    display:block;
    color:#fff;
    font-size:36px;
    line-height:1;
    margin-bottom:12px;
    font-weight:900;
}

#mapaInfo span{
    display:block;
    color:#ff1d25;
    font-size:22px;
    font-weight:800;
}

/* ===================================================== */
/* ANIMAÇÃO REGIÕES ESTRATÉGICAS */
/* ===================================================== */

@keyframes pulsoRegiao{

    0%{
        transform:scale(1);
        filter:brightness(1);
    }

    50%{
        transform:scale(1.01);

        filter:
        brightness(1.18)
        drop-shadow(0 0 24px rgba(255,255,255,.85));
    }

    100%{
        transform:scale(1);
        filter:brightness(1);
    }
}

.regiao-pulsando{
    animation:pulsoRegiao 1.8s infinite ease-in-out;
}

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

@media(max-width:1200px){

    .revenda-mapa-header h2{
        font-size:64px;
    }

    .revenda-mapa-header p{
        font-size:21px;
    }

    #mapaParaSvg svg{
        width:110vw !important;
    }
}

@media(max-width:900px){

    .revenda-mapa-full{
        padding-top:100px;
    }

    .revenda-mapa-header{
        margin-bottom:30px;
    }

    .revenda-mapa-header span{
        font-size:14px;
        letter-spacing:3px;
    }

    .revenda-mapa-header h2{
        font-size:44px;
        letter-spacing:-2px;
    }

    .revenda-mapa-header p{
        font-size:17px;
        line-height:1.6;
        padding:0 10px;
    }

    #mapaParaSvg svg{
        width:145vw !important;
    }

    #mapaInfo{
        left:20px;
        right:20px;
        bottom:20px;
        padding:18px 20px;
    }

    #mapaInfo strong{
        font-size:24px;
    }

    #mapaInfo span{
        font-size:17px;
    }
}

@media(max-width:600px){

    #mapaParaSvg svg{
        width:180vw !important;
    }

    .revenda-mapa-header h2{
        font-size:38px;
    }
}

.mapa-cidades-titulo {
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  margin-top: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mapa-cidades {
  margin: 0;
  padding-left: 18px;
  max-height: 260px;
  overflow-y: auto;
}

.mapa-cidades li {
  color: #ddd;
  font-size: 15px;
  line-height: 1.55;
}