:root {
  --red: #d10000;
  --red-dark: #9b0000;
  --white: #ffffff;
  --black: #0a0a0a;
  --gray-dark: #111111;
  --gray-mid: #1c1c1c;
  --gray-light: #2a2a2a;
  --text-muted: #888888;
  --text-devlab: #73f44c;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAVBAR ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 90px; /* ajuste se quiser mais baixo */
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--red);
  transition: all 0.3s;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  gap: 4px;
  max-width: 320px;
}

.nav-logo-img {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.nav-logo-subtitle {
  margin: 0 0 0 8px;
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 15px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0;
}

.nav-logo-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  gap: 4px;
  max-width: 320px;
}

.nav-logo-img {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.nav-logo-subtitle-footer {
  margin: -10px 0 0 8px;
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 15px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 0;
}
.nav-logo .vb {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}

.nav-logo .vb span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.1s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: scale(1.04);
}
.nav-belt {
  position: fixed;
  display: flex;
  top: 90px; /* mesma altura da nav */
  left: 0;
  width: 100%;
  z-index: 999;
  background: transparent;
  pointer-events: none;
}

.nav-belt-img {
  position: relative;
  display: flex;
  width: 100%;
  height: 50px; /* ajuste como quiser */
  object-fit: cover;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 116px; /* 90 da nav + 26 da faixa */
}
/* #hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
} */

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 70% 50%,
      rgba(209, 0, 0, 0.15) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-slash {
  position: absolute;
  right: -5%;
  top: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(209, 0, 0, 0.08) 50%,
    transparent 100%
  );
  transform: skewX(-8deg);
  transform-origin: top right;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  padding: 0;
  max-width: 700px;
}

.hero-content-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-img {
  max-width: 100%;
  width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  margin-bottom: 1.5rem;
  animation: heroIn 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Belt color strip */
/* .hero-belt-strip {
  display: flex;
  gap: 0;
  height: 5px;
  margin-top: 1rem;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.hero-belt-strip span {
  flex: 1;
} */

.hero-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  animation: heroIn 0.9s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-title .accent {
  color: var(--red);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: heroIn 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroIn 0.9s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.btn-primary {
  background: var(--red);
  color: white;
  padding: 14px 36px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  display: inline-block;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(209, 0, 0, 0.4);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 14px 36px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
  position: absolute;
  right: 5%;
  bottom: 12%;
  display: flex;
  gap: 3rem;
  z-index: 2;
  animation: heroIn 0.9s 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.stat {
  text-align: center;
  border-left: 3px solid var(--red);
  padding-left: 1.2rem;
}

.stat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── SECTION COMMON ───────────────────────────────── */
section {
  padding: 100px 5%;
}

.section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.section-label::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -1px;
}

/* ─── MODALIDADES ──────────────────────────────────── */
#modalidades {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#modalidades::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.modal-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.card {
  background: var(--gray-mid);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    background 0.3s;
  cursor: pointer;
}

.card::before {
  content: "LUTE";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  background: #222;
  transform: translateY(-4px);
}
.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: block;
}

.card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--red);
  color: white;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 3px 10px;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

/* ─── SOBRE ───────────────────────────────────────── */
#sobre {
  background: var(--gray-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-visual {
  position: relative;
}
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.dot.active {
  background: var(--red);
}
.sobre-box {
  background: var(--gray-mid);
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  max-width: 420px;
}

.sobre-box::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: 50%;
  bottom: 50%;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--red);
}

.sobre-box::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: -3px;
  left: 50%;
  top: 50%;
  border-bottom: 3px solid var(--red);
  border-right: 3px solid var(--red);
}

.sobre-box-inner {
  background: linear-gradient(135deg, var(--gray-mid), var(--gray-light));
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(209, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  letter-spacing: -3px;
}

.sobre-box-inner::before {
  content: "";
  position: absolute;
  font-size: 14rem;
  color: rgba(209, 0, 0, 0.06);
  letter-spacing: -8px;
}

.sobre-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  padding: 1.5rem 2rem;
}

.sobre-float .num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.sobre-float .txt {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.sobre-text .section-label {
  margin-bottom: 1.2rem;
}

.sobre-text .section-title {
  margin-bottom: 1.5rem;
}

.sobre-para {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.sobre-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feat-icon {
  width: 8px;
  height: 8px;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 6px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.feat-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
/* ─── FILIAIS ────────────────────────────────────── */
#filiais {
  background: var(--black);
}
.filiais-header {
  border-top: 1px solid rgba(255, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.filiais-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filial-item {
  background: var(--black);
  padding: 35px 48px;
  border-radius: 12px;
}

.filial-logo {
  width: 180px;
  height: 130px;
  object-fit: contain;
  display: flex;
}

.filial-name-location {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: center;
}

/* ─── HORÁRIOS ────────────────────────────────────── */
#horarios {
  background: var(--gray-dark);
}

.horarios-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.schedule-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--gray-mid);
  color: var(--text-muted);
  border: none;
  padding: 10px 22px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--red);
  color: var(--white);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-light);
}

.schedule-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.95rem;
  vertical-align: middle;
}

.schedule-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.time-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.mod-tag {
  display: inline-block;
  background: rgba(209, 0, 0, 0.15);
  color: var(--red);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid rgba(209, 0, 0, 0.3);
}

.level-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── PLANOS ──────────────────────────────────────── */
#planos {
  background: var(--black);
}

.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 4rem;
}

.plano-card {
  background: var(--gray-mid);
  padding: 3rem 2.5rem;
  position: relative;
  transition: transform 0.3s;
}

.plano-card.featured {
  background: var(--red);
  transform: scale(1.02);
  z-index: 2;
}

.plano-card:not(.featured):hover {
  transform: translateY(-6px);
}

.plano-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.plano-card.featured .plano-label {
  color: rgba(255, 255, 255, 0.7);
}

.plano-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.plano-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 2.5rem;
}

.plano-currency {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  opacity: 0.7;
}

.plano-val {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
}

.plano-per {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plano-card.featured .plano-per {
  color: rgba(255, 255, 255, 0.6);
}

.plano-feats {
  list-style: none;
  margin-bottom: 2.5rem;
}

.plano-feats li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plano-card.featured .plano-feats li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.plano-feats li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plano-card.featured .plano-feats li::before {
  background: rgba(0, 0, 0, 0.3);
}

.btn-plano {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.plano-card:not(.featured) .btn-plano {
  background: var(--red);
  color: white;
}

.plano-card:not(.featured) .btn-plano:hover {
  background: var(--red-dark);
  box-shadow: 0 0 20px rgba(209, 0, 0, 0.4);
}

.plano-card.featured .btn-plano {
  background: white;
  color: var(--red);
}

.plano-card.featured .btn-plano:hover {
  background: #f0f0f0;
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffd700;
  color: #000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  white-space: nowrap;
}

/* ─── CONTATO ─────────────────────────────────────── */
.contato-localizacao {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.endereco-link {
  font-size: 0.95rem;
  color: var(--white);
  text-decoration: none;
}

.endereco-link:hover {
  color: var(--red);
}

.map-embed {
  width: 100%;
  max-width: 520px;
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-mid);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 260px;
}
#contato {
  background: var(--gray-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contato-info .section-title {
  margin-bottom: 1.5rem;
}

.contato-para {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contato-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contato-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contato-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(209, 0, 0, 0.1);
  border: 1px solid rgba(209, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contato-item-text strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contato-item-text span,
.contato-item-text a {
  font-size: 0.95rem;
  color: var(--white);
  text-decoration: none;
}

.contato-item-text a:hover {
  color: var(--red);
}

/* FORM */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--gray-mid);
  border: 1px solid var(--gray-light);
  color: var(--white);
  padding: 12px 16px;
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--red);
  background: rgba(209, 0, 0, 0.05);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-select option {
  background: var(--gray-mid);
}

.form-submit {
  background: var(--red);
  color: white;
  border: none;
  padding: 16px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  margin-top: 0.5rem;
}

.form-submit:hover {
  background: var(--red-dark);
  box-shadow: 0 0 30px rgba(209, 0, 0, 0.4);
  transform: scale(1.02);
}

.form-success {
  display: none;
  background: rgba(0, 180, 0, 0.1);
  border: 1px solid rgba(0, 180, 0, 0.3);
  padding: 16px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #4dff7c;
}
.form-error {
  display: none;
  background: rgba(209, 0, 0, 0.1);
  border: 1px solid rgba(209, 0, 0, 0.3);
  padding: 16px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 1px;
  color: #ff8f8f;
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: #050505;
  padding: 0.5rem 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid var(--gray-light);
}

.footer-logo-img {
  width: 140px;
  height: auto;
  display: block;
  margin-bottom: 1px;
}
.nav-logo-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-decoration: none;
  gap: 4px;
  max-width: 320px;
}

/* .nav-logo-img {
  display: block;
  max-height: 52px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
} */
.nav-logo-subtitle-footer {
  margin: -80px 0 0 -10px;
  display: flex;
  position: absolute;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 15px;
  color: var(--text-muted);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0;
}

.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.footer-dev {
  font-size: 0.85rem;
  color: var(--white);
}

.footer-dev a {
  color: var(--text-devlab);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-dev a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.footer-dev {
  font-size: 1rem;
  color: var(--text-devlab);
}

.footer-dev-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-devlab);
  text-decoration: none;
  font-weight: 600;
}

.footer-dev-link:hover {
  color: var(--text-devlab);
}

.footer-dev-logo {
  width: 120px;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}

.social-btn {
  width: 40px;
  height: 40px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn:hover {
  transform: scale(1.08);
}

.social-icon {
  width: 28px;
  height: 28px;
  display: block;
}

.social-icon-wpp {
  width: 30px;
  height: 30px;
  display: block;
}
/* ─── FLOATING WHATSAPP ───────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #25d366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.2s;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.7);
  }
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 2rem 5%;
    border-bottom: 2px solid var(--red);
    gap: 1.5rem;
  }

  #sobre,
  #contato {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-stats {
    position: static;
    padding: 3rem 5% 0;
    flex-wrap: wrap;
    gap: 2rem;
  }
  #hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .horarios-header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .sobre-float {
    right: 0;
    bottom: -15px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  section {
    padding: 70px 5%;
  }
  .plano-card.featured {
    transform: none;
  }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.hero-logo {
  width: min(100%, 520px);
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-content-visual {
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual-img {
    width: min(100%, 220px);
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-stats {
    right: auto;
    bottom: auto;
    width: 100%;
  }

  .footer-logo-img {
    width: 90px;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 0 16px;
  }

  .hero-title {
    margin-bottom: 1rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }

  .btn-primary,
  .btn-outline,
  .btn-plano,
  .form-submit {
    width: 100%;
    text-align: center;
  }

  .hero-btns {
    width: 100%;
    flex-direction: column;
  }

  .footer-socials {
    margin: 0;
    justify-content: center;
    width: 100%;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-dev {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  .footer-dev a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
  }

  .footer-dev a:hover {
    color: var(--red);
  }
  @media (max-width: 700px) {
    .filiais-header {
      border-top: 1px solid rgba(255, 0, 0, 0.04);
      display: grid;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      gap: 3rem;
    }
    .filial-item {
      background: var(--black);
      padding: 35px 48px;
      border-radius: 12px;
      display: contents;
    }
    .filiais-logos {
      display: flow;
      align-items: center;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }
    footer {
      flex-direction: column;
      text-align: center;
    }

    .footer-center {
      order: 2;
    }

    .footer-socials {
      order: 3;
      justify-content: center;
    }

    .footer-logo {
      order: 1;
    }
    .footer-logo-img {
      width: 120px;
      height: auto;
      display: flex;
      margin: 0 0 -40px -10px;
      padding: auto;
    }
    .nav-logo-subtitle-footer {
      margin: -20px 0 0 -40px;
      display: flex;
      position: absolute;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 0.72rem;
      letter-spacing: 15px;
      color: var(--text-muted);
      font-weight: 400;
      text-transform: uppercase;
      line-height: 0;
    }
  }
}
