/* =========================================
   METAMIND TREINAMENTOS — style.css
   Paleta: Laranja #F5A623 | Roxo #7B2D8B | Cinza #8C8C8C
========================================= */

/* ---- Reset & Variables ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
.logo{
  max-width: 150px;
  border-radius: 20px;
}
.ana{
  display: block;
  width: 100%;
  max-width: 300px;
  align-items: center;
  border-radius: 25px;
}  

.video video {
    max-width: 300px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 20px;
    border: 2px solid;
}

:root {
  --orange: #F5A623;
  --orange-dark: #d4891a;
  --purple: #7B2D8B;
  --purple-dark: #5e2069;
  --purple-light: #9c4aad;
  --gray: #8C8C8C;
  --gray-light: #f8f7fc;
  --gray-mid: #ede9f5;
  --white: #ffffff;
  --dark: #1a1028;
  --text: #3a3050;
  --text-light: #6b6080;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 40px rgba(123,45,139,0.12);
  --shadow-lg: 0 20px 60px rgba(123,45,139,0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Rajdhani', sans-serif;
  --font-body: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Tipografia ---- */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; color: var(--dark); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; color: var(--dark); }
h3 { font-size: 1.25rem; font-weight: 600; }

.highlight { color: var(--orange); }
.highlight-light { color: var(--orange); }

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(245,166,35,0.12);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header p { color: var(--text-light); margin-top: 14px; font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }
.section-header.light .section-eyebrow { color: var(--orange); background: rgba(245,166,35,0.2); }

/* ---- Buttons ---- */
.btn-primary, .btn-outline, .btn-nav, .btn-cta, .btn-submit {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700;
  border-radius: 50px; cursor: pointer;
  transition: var(--transition); text-decoration: none; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), #f0b93b);
  color: var(--dark); padding: 14px 30px; font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(245,166,35,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(245,166,35,0.45); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 13px 28px; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-nav {
  background: var(--orange); color: var(--dark);
  padding: 10px 22px; font-size: 0.875rem;
}
.btn-nav:hover { background: var(--orange-dark); }

.btn-cta {
  background: var(--white); color: var(--purple);
  padding: 16px 36px; font-size: 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,0.25); }

.btn-submit {
  width: 100%; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: var(--white); padding: 16px;
  font-size: 1rem; border-radius: var(--radius-sm);
  box-shadow: 0 6px 24px rgba(123,45,139,0.35);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(123,45,139,0.45); }

/* =========== NAVBAR =========== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26,16,40,0.97);
  backdrop-filter: blur(12px);
  padding: 0px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.logo {
  text-decoration: none; display: flex; align-items: baseline;
  gap: 0; flex-direction: column; line-height: 1;
}
.logo-meta { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--gray); letter-spacing: -1px; }
.logo-mind { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--purple); }
.logo .logo-meta, .logo .logo-mind { display: inline; }
.logo-sub {
  display: block; font-size: 0.55rem; letter-spacing: 0.2em;
  color: var(--orange); font-weight: 700; margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: var(--transition); }
.nav-links a:hover { color: var(--orange); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========== HERO =========== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(145deg, var(--dark) 0%, var(--purple-dark) 60%, #3a1250 100%);
  position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  background: rgba(245,166,35,0.08);
  animation: float 8s ease-in-out infinite;
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; animation-delay: 0s; }
.shape-2 { width: 300px; height: 300px; bottom: 100px; left: -80px; background: rgba(156,74,173,0.15); animation-delay: 3s; }
.shape-3 { width: 200px; height: 200px; top: 30%; right: 30%; background: rgba(245,166,35,0.05); animation-delay: 5s; }
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.04); } }

.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; position: relative; z-index: 1;
  padding: 60px 24px;
}

.hero-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 18px; opacity: 0; animation: fadeUp 0.6s 0.2s forwards;
}
.hero h1 { color: var(--white); margin-bottom: 18px; opacity: 0; animation: fadeUp 0.6s 0.35s forwards; }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 480px; margin-bottom: 32px; opacity: 0; animation: fadeUp 0.6s 0.5s forwards; }

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; opacity: 0; animation: fadeUp 0.6s 0.65s forwards; }

.hero-stats { display: flex; align-items: center; gap: 0; opacity: 0; animation: fadeUp 0.6s 0.8s forwards; }
.stat { text-align: center; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; color: var(--orange); }
.stat span { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--orange); }
.stat p { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 2px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }

/* Hero visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 420px; opacity: 0; animation: fadeIn 0.8s 0.5s forwards; }

.people-graphic {
  position: relative; width: 220px; height: 220px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; justify-content: center; align-items: center;
  border: 2px solid rgba(245,166,35,0.3);
}
.person {
  position: absolute; width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.p1 { background: var(--orange); color: var(--dark); top: 10px; left: 50%; transform: translateX(-50%); animation: pulse 3s 0s infinite; }
.p2 { background: var(--purple-light); color: var(--white); bottom: 20px; left: 15px; animation: pulse 3s 1s infinite; }
.p3 { background: var(--gray); color: var(--white); bottom: 20px; right: 15px; animation: pulse 3s 2s infinite; }
@keyframes pulse { 0%,100% { transform: scale(1) translateX(-50%); } 50% { transform: scale(1.1) translateX(-50%); } }
.p2, .p3 { transform: none; }
.p2:hover { transform: scale(1.1); }
.p3:hover { transform: scale(1.1); }
@keyframes pulseSide { 0%,100% { transform: scale(1); } 50% { transform: scale(1.1); } }
.p2 { animation: pulseSide 3s 1s infinite; }
.p3 { animation: pulseSide 3s 2s infinite; }
.person-glow {
  position: absolute; width: 100%; height: 100%; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { transform: scale(1); opacity:1; } 50% { transform: scale(1.2); opacity: 0.5; } }

.floating-card {
  position: absolute; background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm); padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 0.82rem; font-weight: 600;
  white-space: nowrap; animation: floatCard 4s ease-in-out infinite;
}
.floating-card i { color: var(--orange); font-size: 1.1rem; }
.card-1 { top: 20px; left: -20px; animation-delay: 0s; }
.card-2 { bottom: 80px; left: -40px; animation-delay: 1.5s; }
.card-3 { top: 60px; right: -30px; animation-delay: 3s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* =========== SOBRE =========== */
.sobre { padding: 100px 0; background: var(--gray-light); }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.sobre-visual { align-items: center;  display: block; flex-direction: column; gap: 18px; }
.sobre-box {
  padding: 26px 28px; border-radius: var(--radius);
  transition: var(--transition); cursor: default;
}
.sobre-box i { font-size: 1.4rem; margin-bottom: 10px; }
.sobre-box h3 { font-size: 1.05rem; margin-bottom: 6px; }
.sobre-box p { font-size: 0.9rem; color: var(--text-light); }
.main-box { background: var(--white); box-shadow: var(--shadow); }
.main-box i { color: var(--orange); }
.accent-box { background: var(--purple); color: var(--white); transform: translateX(20px); }
.accent-box h3 { color: var(--white); }
.accent-box p { color: rgba(255,255,255,0.8); }
.accent-box i { color: var(--orange); }
.alt-box { background: var(--white); box-shadow: var(--shadow); }
.alt-box i { color: var(--purple); }
.sobre-box:hover { transform: translateX(0) translateY(-4px); box-shadow: var(--shadow-lg); }
.sobre-text h2 { margin-bottom: 20px; }
.sobre-text p { color: var(--text-light); margin-bottom: 18px; }
.sobre-text .btn-primary { margin-top: 10px; }

/* =========== SERVIÇOS =========== */
.servicos { padding: 100px 0; background: var(--white); }
.servicos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.servico-card {
  position: relative; background: var(--gray-light);
  border-radius: var(--radius); padding: 34px 28px;
  border: 2px solid transparent;
  transition: var(--transition); cursor: default;
}
.servico-card:hover {
  border-color: var(--purple); background: var(--white);
  transform: translateY(-6px); box-shadow: var(--shadow-lg);
}
.servico-card.featured {
  background: var(--white); border-color: var(--orange);
  box-shadow: var(--shadow);
}
.badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--orange); color: var(--dark);
  font-size: 0.72rem; font-weight: 700; padding: 4px 14px;
  border-radius: 50px; letter-spacing: 0.05em;
}
.servico-icon {
  width: 58px; height: 58px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.4rem; margin-bottom: 18px;
}
.servico-card.featured .servico-icon {
  background: linear-gradient(135deg, var(--orange), #f0c060);
  color: var(--dark);
}
.servico-card h3 { margin-bottom: 10px; }
.servico-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }
.servico-card ul { list-style: none; margin-bottom: 22px; }
.servico-card ul li { font-size: 0.87rem; color: var(--text-light); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.servico-card ul li i { color: var(--orange); font-size: 0.75rem; }
.servico-link { font-size: 0.87rem; font-weight: 700; color: var(--purple); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.servico-link:hover { gap: 10px; color: var(--orange); }

/* =========== DIFERENCIAIS =========== */
.diferenciais {
  padding: 100px 0;
  background: linear-gradient(145deg, var(--purple-dark) 0%, var(--purple) 100%);
  position: relative; overflow: hidden;
}
.diferenciais-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.diferencial {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 34px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.diferencial:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.d-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: rgba(245,166,35,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.3rem; margin-bottom: 18px;
}
.diferencial h3 { color: var(--white); margin-bottom: 10px; font-size: 1.08rem; }
.diferencial p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }

/* =========== DEPOIMENTOS =========== */
.depoimentos { padding: 100px 0; background: var(--gray-light); }

.depo-slider { overflow: hidden; position: relative; }
.depo-track {
  display: flex; gap: 26px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.depo-card {
  min-width: calc(33.333% - 18px);
  background: var(--white); border-radius: var(--radius);
  padding: 34px 30px; box-shadow: var(--shadow);
  border: 2px solid transparent; transition: var(--transition);
  flex-shrink: 0;
}
.depo-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.depo-stars { color: var(--orange); margin-bottom: 16px; font-size: 0.9rem; display: flex; gap: 4px; }
.depo-card p { color: var(--text-light); font-style: italic; font-size: 0.95rem; margin-bottom: 20px; }
.depo-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--orange));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.8rem; font-weight: 700;
  flex-shrink: 0;
}
.depo-author strong { display: block; font-size: 0.92rem; color: var(--dark); }
.depo-author span { display: block; font-size: 0.8rem; color: var(--text-light); }

.depo-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.depo-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--purple); background: transparent;
  color: var(--purple); cursor: pointer; font-size: 0.9rem;
  transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.depo-btn:hover { background: var(--purple); color: var(--white); }
.depo-dots { display: flex; gap: 8px; }
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gray-mid); cursor: pointer; transition: var(--transition);
}
.dot.active { background: var(--purple); transform: scale(1.3); }

/* =========== CTA =========== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.s1 { width: 350px; height: 350px; top: -150px; right: -80px; }
.s2 { width: 220px; height: 220px; bottom: -80px; left: 5%; }
.cta-content { position: relative; z-index: 1; }
.cta-section h2 { color: var(--dark); margin-bottom: 14px; }
.cta-section p { color: rgba(26,16,40,0.75); margin-bottom: 32px; font-size: 1.05rem; }

/* =========== CONTATO =========== */
.contato { padding: 100px 0; background: var(--white); }
.contato-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start; }
.contato-info h2 { margin-bottom: 16px; }
.contato-info > p { color: var(--text-light); margin-bottom: 32px; }

.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 16px; }
.c-icon {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--gray-mid); display: flex; align-items: center;
  justify-content: center; color: var(--purple); font-size: 1rem; flex-shrink: 0;
}
.contact-item strong { display: block; font-size: 0.8rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-item span { font-size: 0.95rem; color: var(--dark); font-weight: 600; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-mid); color: var(--purple);
  font-size: 1rem; transition: var(--transition); text-decoration: none;
}
.social-links a:hover { background: var(--purple); color: var(--white); transform: translateY(-3px); }

/* Form */
.contato-form {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
input, select, textarea {
  width: 100%; padding: 12px 16px;
  border: 2px solid transparent; border-radius: var(--radius-sm);
  background: var(--white); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); transition: var(--transition); outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(123,45,139,0.08); }
select { appearance: none; cursor: pointer; }
textarea { resize: vertical; }

.form-success {
  display: none; align-items: center; gap: 12px;
  margin-top: 16px; padding: 16px;
  background: rgba(123,45,139,0.08); border-radius: var(--radius-sm);
  color: var(--purple);
}
.form-success.show { display: flex; }
.form-success i { font-size: 1.4rem; }
.form-success p { font-size: 0.9rem; font-weight: 600; }

/* =========== FOOTER =========== */
.footer { background: var(--dark); padding: 60px 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.footer-links h4 { color: var(--white); font-family: var(--font-heading); font-size: 1rem; margin-bottom: 16px; }
.footer-links a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.88rem; margin-bottom: 8px; transition: var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-contact h4 { color: var(--white); font-family: var(--font-heading); font-size: 1rem; margin-bottom: 16px; }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contact p i { color: var(--orange); width: 14px; }
.footer-bottom { text-align: center; padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* =========== BACK TO TOP =========== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--purple); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(123,45,139,0.4);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: var(--transition);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--orange); transform: translateY(-3px); }

/* =========== SCROLL REVEAL =========== */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========== RESPONSIVE =========== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .contato-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--dark); flex-direction: column; align-items: flex-start;
    padding: 90px 30px 30px; gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 12px 0; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .btn-nav { margin-top: 16px; }
  .hamburger { display: flex; }
  .servicos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .depo-card { min-width: 100%; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .sobre-grid { grid-template-columns: 1fr; }
  .accent-box { transform: none; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .contato-form { padding: 24px; }
}
