html,
body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* ============================= */
/* RESET */
/* ============================= */

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

body {
  font-family: 'Manrope', sans-serif;
  background: #000;
  color: #0f172a;
}

/* ============================= */
/* NAVBAR */
/* ============================= */

.navbar {
  position: fixed;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.24);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.logo-img {
  height: 60px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.nav-logo-link:hover .logo-img {
  transform: scale(1.05);
}

.logo-divider {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 18px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-brand {
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.logo-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-right a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-right a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-right a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #3b82f6;
  width: 0;
  transition: width 0.25s ease;
}

.nav-right a:hover::after {
  width: calc(100% - 28px);
}

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

.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.65);
}

.hero-content {
  position: relative;
  color: white;
  max-width: 900px;
  padding: 0 24px;
  z-index: 3;
}

.hero-content h1,
.hero-content p,
.hero-content .btn-primary,
.hero-trust {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s forwards;
}

.hero-content h1 {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 800;
  animation-delay: 0.4s;
}

.hero-content p {
  font-size: 1.15rem;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.85);
  animation-delay: 0.8s;
}

.hero-content .btn-primary {
  animation-delay: 1.2s;
}

.hero-microcopy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  letter-spacing: 0.3px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s forwards;
  animation-delay: 1.5s;
}

.hero-trust {
  margin: 24px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  animation-delay: 1.7s;
}

.hero-trust span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.42);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.btn-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background: #2563eb;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-3px);
}

/* ============================= */
/* VITRINE DE SERVIÇOS */
/* ============================= */

.services-section {
  position: relative;
  margin-top: 0;
  padding: 120px 0 160px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.14), transparent 30%),
    linear-gradient(180deg, #030712 0%, #050914 52%, #0b1220 100%);
  isolation: isolate;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 48px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.48), transparent);
}

.services-section::after {
  content: '';
  position: absolute;
  top: 70px;
  left: 50%;
  z-index: -1;
  width: 520px;
  height: 180px;
  transform: translateX(-50%);
  background: rgba(37, 99, 235, 0.12);
  filter: blur(100px);
  pointer-events: none;
}

.services-showcase {
  position: relative;
  z-index: 4;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 0%, rgba(59, 130, 246, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(15, 25, 44, 0.96), rgba(7, 14, 29, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.services-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.showcase-heading,
.showcase-grid,
.showcase-footer {
  position: relative;
  z-index: 1;
}

.showcase-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  padding-bottom: 38px;
}

.showcase-tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: #60a5fa;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.showcase-heading h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: -1.5px;
}

.showcase-heading p {
  color: #b8c4d6;
  font-size: 0.98rem;
  line-height: 1.7;
}

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

.showcase-card {
  min-height: 238px;
  padding: 26px 22px;
  background: rgba(15, 27, 48, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 16px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
  background: rgba(24, 43, 74, 0.82);
  border-color: rgba(96, 165, 250, 0.3);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.showcase-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}

.showcase-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #60a5fa;
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.06));
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 14px;
}

.showcase-icon svg {
  width: 24px;
  height: 24px;
}

.showcase-number {
  color: rgba(203, 213, 225, 0.42);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.showcase-card h3 {
  margin-bottom: 11px;
  font-size: 1.03rem;
  line-height: 1.3;
}

.showcase-card p {
  color: #9eacbf;
  font-size: 0.86rem;
  line-height: 1.65;
}

.showcase-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.showcase-footer p {
  color: #9eacbf;
  font-size: 0.9rem;
}

.showcase-footer strong {
  color: #ffffff;
}

/* ============================= */
/* SERVICES INFO COMPACTO FINAL */
/* ============================= */

.services-info {
  margin-top: 55px;
  padding: 30px 40px 10px 40px;
  text-align: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

/* Texto principal */

.services-intro {
  font-size: 1.15rem;
  line-height: 1.6;
  font-weight: 500;
  color: #e5e7eb;
  max-width: 800px;
  margin: 0 auto 35px auto;
  /* antes era 50+ */
}

/* Grid */

.services-differentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  /* reduzido */
}

/* Blocos */

.differential-item {
  padding: 0;
}

.differential-icon {
  color: #3b82f6;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Separadores discretos */

.differential-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

/* Títulos */

.differential-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  /* menor */
  color: #ffffff;
}

/* Texto */

.differential-item p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #e5e7eb;
}

/* ============================= */
/* SERVICES CTA */
/* ============================= */

.services-cta {
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.btn-services {
  padding: 16px 42px;
  border-radius: 8px;
  background: #1d4ed8;
  /* azul sólido */
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-services:hover {
  background: #2563eb;
  transform: translateY(-2px);
}

/* ============================= */
/* ABOUT SECTION PREMIUM */
/* ============================= */

.about-section {
  position: relative;
  background: linear-gradient(
    180deg,
    #0b1220 0%,
    #0f172a 70%,
    #1c283d 85%,
    #2e3d56 95%,
    #f4f6f9 100%
  );
  padding: 140px 20px 180px 20px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.about-tag {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: white;
  font-weight: 600;
}

.about-left h2 {
  font-size: 2.4rem;
  margin: 20px 0 30px 0;
  color: white;
  line-height: 1.3;
}

.about-line {
  width: 60px;
  height: 3px;
  background: #2563eb;
}

.about-container p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 25px;
}

.about-right {
  display: flex;
  flex-direction: column;
}

.about-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 20px;
}

.about-highlight {
  font-weight: 600;
  color: white;
  font-size: 1.05rem;
  border-left: 3px solid #2563eb;
  padding-left: 16px;
  margin-top: 10px;
}

/* RESPONSIVO */

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* ============================= */
/* PARTNERS SECTION */
/* ============================= */

.partners-section {
  padding: 140px 20px;
  background: #f4f6f9;
  text-align: center;
}

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

.partners-tag {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #2563eb;
  font-weight: 600;
}

.partners-header h2 {
  font-size: 2.6rem;
  margin: 20px 0;
  color: #0f172a;
}

.partners-header p {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

/* Grid de logos dos parceiros */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 28px 36px;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.partner-item:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(37, 99, 235, 0.15);
  transform: translateY(-4px);
}

.partner-logo {
  max-width: 200px;
  max-height: 90px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(15%) opacity(0.9);
  transition: filter 0.3s ease;
}

.partner-logo:hover {
  filter: grayscale(0%) opacity(1);
}

/* ============================= */
/* CONTACT */
/* ============================= */

.contact-section {
  padding: 120px 0;
  /* antes 160px */
  background: #f4f6f9;
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  /* centraliza */
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  /* melhor proporção */
  gap: 80px;
  /* antes 100px */
  align-items: start;
}

/* LADO ESQUERDO */

.contact-info h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: #0f172a;
}

.contact-info p {
  margin-bottom: 14px;
  color: #475569;
  line-height: 1.6;
}

.contact-info a {
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #2563eb;
}

/* FORM */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: flex;
  gap: 25px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #334155;
}

.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 1px solid #cbd5e1;
  padding: 10px 0;
  background: transparent;
  font-size: 0.95rem;
  transition: 0.3s;
  color: #0f172a;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom: 1px solid #2563eb;
}

/* TEXTAREA */

.form-group textarea {
  min-height: 140px;
  resize: none;
}

/* BOTÃO */

.btn-submit {
  margin-top: 10px;
  padding: 14px 30px;
  width: fit-content;
  /* não ocupa 100% */
  background: #0f172a;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-submit:hover {
  background: #1e293b;
}

.btn-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.privacy-note {
  margin-top: -10px;
  max-width: 520px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: #64748b;
}

.privacy-note a {
  color: #2563eb;
  text-decoration: none;
}

.privacy-note a:hover {
  text-decoration: underline;
}

/* ============================= */
/* REVEAL ANIMATION PREMIUM */
/* ============================= */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================= */
/* REVEAL RIGHT TO LEFT */
/* ============================= */

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 1024px) {
  .services-section {
    padding-top: 90px;
  }

  .services-showcase {
    padding: 38px;
  }

  .showcase-heading {
    gap: 35px;
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 68px 0 110px;
  }

  .services-showcase {
    width: calc(100% - 28px);
    padding: 30px 22px;
    border-radius: 16px;
  }

  .showcase-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .showcase-heading h2 {
    font-size: 2rem;
  }

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

  .showcase-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .showcase-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .showcase-footer .btn-services {
    width: 100%;
    text-align: center;
  }

  .services-differentials {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .differential-item:not(:last-child) {
    border-right: none;
  }
}

/* ============================= */
/* MAP */
/* ============================= */

.map-section {
  padding-top: 160px;
  background: #f4f6f9;
}

.map-header {
  text-align: center;
  margin-bottom: 60px;
}

.map-header h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.map-full {
  width: 100%;
  height: 500px;
}

.map-full iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.footer {
  background: linear-gradient(180deg, #0f172a 0%, #0b1324 100%);
  color: #cbd5e1;
  padding: 90px 0 40px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/* MARCA */

.footer-brand img {
  width: 80px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 300px;
}

/* TÍTULOS */

.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

/* LISTAS */

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: #94a3b8;
}

.footer-column ul li a {
  text-decoration: none;
  color: #94a3b8;
  transition: 0.3s ease;
}

.footer-column a[href^="tel"],
.footer-column a[href^="mailto"] {
  color: #94a3b8;
}

.footer-column ul li a:hover {
  color: #3b82f6;
}

/* LINHA FINAL */

.footer-bottom {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 25px 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.7;
}

.footer-copy {
  margin-top: 6px;
  font-size: 0.8rem;
  color: #475569;
}

.form-feedback {
  margin-top: 20px;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 0.9rem;
  animation: fadeIn 0.3s ease;
}

.form-feedback.success {
  background: #dcfce7;
  color: #166534;
}

.form-feedback.error {
  background: #fee2e2;
  color: #991b1b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

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

/* ============================= */
/* MOBILE */
/* ============================= */

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .partner-item {
    height: 120px;
    padding: 20px 24px;
  }

  .partner-logo {
    max-width: 160px;
    max-height: 70px;
  }
}

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

/* ============================= */
/* NAVBAR MOBILE DEFINITIVA */
/* ============================= */

@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
    z-index: 3001;
    position: absolute;
    right: 16px;
  }

  .nav-wrapper {
    justify-content: space-between;
    position: relative;
    padding: 0 56px 0 0;
  }

  .navbar {
    z-index: 3000;
    padding: 0 16px;
  }

  .nav-right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #0f172a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transition: right 0.4s ease;
    z-index: 2000;
  }

  .nav-right.active {
    right: 0;
  }

  .nav-right a {
    font-size: 1.2rem;
  }

}

/* ============================= */
/* HERO MOBILE */
/* ============================= */

@media (max-width: 900px) {
  .hero-video {
    height: auto;
    min-height: 85vh;
    padding: 120px 20px 80px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .logo-brand {
    font-size: 1.05rem;
    letter-spacing: 3px;
  }

  .logo-sub {
    font-size: 0.58rem;
    letter-spacing: 2px;
  }

  .logo-divider {
    margin: 0 12px;
    height: 30px;
  }

}

/* ============================= */
/* ABOUT MOBILE */
/* ============================= */

@media (max-width: 900px) {

  .about-section {
    padding: 100px 20px;
  }

  .about-left h2 {
    font-size: 1.9rem;
  }

  .about-container {
    gap: 40px;
  }
}

/* ============================= */
/* CONTACT MOBILE */
/* ============================= */

@media (max-width: 900px) {

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }

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

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

@media (max-width: 900px) {

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}

/* ============================= */
/* MENU MOBILE */
/* ============================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle:hover span,
.menu-toggle:focus-visible span {
  background: #60a5fa;
}

.menu-toggle:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 6px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

@media (max-width: 900px) {
  .services-section {
    margin-top: 0 !important;
  }

  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 900px) {

  .navbar {
    background: #0f172a !important;
  }

}

@media (max-width: 900px) {

  .menu-toggle {
    display: flex !important;
  }

  .nav-right {
    display: flex;
  }

}
