@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  color-scheme: light;
  --orange: #FF9800;
  --orange-h: #E88000;
  --orange-l: #FFF3E0;
  --white: #FFFFFF;
  --dark: #0D0D0D;
  --dark2: #1A1A1A;
  --dark3: #242424;
  --gray-xl: #F5F5F5;
  --gray-b: #E8E8E8;
  --gray-m: #888888;
  --gray-d: #454545;
  --black: #000000;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --radius: 12px;
  --trans: all 0.3s ease;
}

/* ESCALA TIPOGRÁFICA */
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); line-height: 1.2; }
h3 { font-size: 1.375rem; line-height: 1.3; }
p  { font-size: 1.0625rem; line-height: 1.75; }

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--gray-d);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 700; }

p { line-height: 1.7; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

.section { padding: 100px 0; }
.section-alt { background: var(--gray-xl); }
.section-dark { background: var(--dark); color: var(--white); }

.section-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.text-center { text-align: center; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(255,122,0,0.28);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-primary:hover::after { left: 160%; }
.btn-primary:hover,
.btn-primary:active {
  background: var(--orange-h);
  border-color: var(--orange-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,152,0,0.45);
}
.cta-laranja { -webkit-tap-highlight-color: transparent; }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark2); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 0, 0.25);
}
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--trans);
  height: 80px;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 80px;
  max-width: 100%;
  margin: 0 auto;
  gap: 24px;
  position: relative;
}
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: absolute;
  left: 24px;
}
.header-logo img { height: 60px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  justify-content: center;
}
.nav a {
  padding: 8px 12px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  transition: var(--trans);
  position: relative;
  white-space: nowrap;
}
.nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: var(--trans);
}
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { transform: translateX(-50%) scaleX(1); }
.header-cta {
  position: absolute;
  right: 24px;
  display: inline-flex;
  flex-shrink: 0;
  padding: 10px 16px !important;
  font-size: 0.8rem !important;
  gap: 4px !important;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0; right: 0;
  background: var(--dark2);
  padding: 20px 24px 28px;
  z-index: 1001;
  border-top: 1px solid rgba(255,255,255,0.07);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 0; }
.mobile-menu a {
  padding: 14px 16px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  transition: var(--trans);
  display: block;
}
.mobile-menu a:hover { background: var(--dark3); color: var(--orange); }
.mobile-menu a.active { background: rgba(255,122,0,0.12); color: var(--orange); }
.mobile-menu .btn { margin-top: 12px; justify-content: center; width: 100%; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0 80px;
  position: relative;
  overflow-x: hidden;
  background-image:
    linear-gradient(to right, rgba(13,13,13,0.72) 0%, rgba(13,13,13,0.55) 30%, rgba(13,13,13,0.15) 55%, transparent 75%),
    url('../assets/logos/fachada.png');
  background-size: cover;
  background-position: 85% center;
  background-repeat: no-repeat;
  background-color: transparent;
}
.hero-left-block {
  width: 100%;
  padding-left: max(32px, 5vw);
  padding-right: 24px;
}

.hero-glow {
  position: absolute;
  right: 25%; top: 20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,122,0,0.12) 0%, transparent 65%);
  z-index: 1;
  pointer-events: none;
}
.hero-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-left { max-width: 560px; }
.hero-content { max-width: 520px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,13,13,0.6);
  border: 1px solid rgba(255,122,0,0.6);
  color: var(--orange);
  padding: 10px 20px;
  border-radius: 99px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.hero-title {
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  text-shadow: 0 2px 8px rgba(0,0,0,1), 0 4px 24px rgba(0,0,0,0.9);
}
.hero-title span { color: var(--orange); text-shadow: 0 2px 8px rgba(0,0,0,0.9); }
.hero-sub {
  color: rgba(255,255,255,1);
  text-shadow: 0 1px 6px rgba(0,0,0,0.95), 0 2px 12px rgba(0,0,0,0.8);
  font-size: 1.15rem;
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 16px;
  border-radius: 10px;
  border-left: 3px solid var(--orange);
}
.hero-img-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-img-col::before {
  display: none;
}

.hero-photo {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  object-position: center bottom;
  display: block;
  position: relative;
  z-index: 1;
}
.hero-float-badge {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,13,13,0.92);
  border: 1px solid rgba(255,122,0,0.35);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
  backdrop-filter: blur(8px);
}
.hero-float-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}
.hero-float-item span.plus { color: var(--orange); font-size: 1rem; }

/* STATS BAR */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-b);
  padding: 32px 0;
}
.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stats-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border-right: 1px solid var(--gray-b);
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.stats-bar-num {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.stats-bar-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--dark);
  margin-top: 2px;
}
.stats-bar-desc {
  font-size: 0.78rem;
  color: var(--gray-m);
  margin-top: 2px;
  line-height: 1.4;
}

/* SERVICES GRID */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 52px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.service-mini {
  text-align: center;
  padding: 28px 16px;
  border: 1px solid var(--gray-b);
  border-radius: 12px;
  transition: var(--trans);
  cursor: pointer;
  background: var(--white);
}
.service-mini:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,122,0,0.12);
}
.service-mini-icon {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: var(--orange-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
  color: var(--orange);
}
.service-mini:hover .service-mini-icon {
  background: var(--orange);
  color: var(--white);
}
.service-mini-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--dark);
  margin-bottom: 6px;
}
.service-mini-text {
  font-size: 0.75rem;
  color: var(--gray-m);
  line-height: 1.5;
}

/* WHY SECTION */
.why-dark {
  background: var(--dark);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.why-dark::after {
  content: '';
  position: absolute;
  right: -100px; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  opacity: 0.4;
}
.why-dark-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 52px;
}
.why-dark-header h2 { color: var(--white); white-space: nowrap; }
.why-dark-header p { color: rgba(255,255,255,0.45); font-size: 0.95rem; max-width: 480px; }
.why-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-col { text-align: center; }
.why-col-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,122,0,0.15);
  border: 1px solid rgba(255,122,0,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  transition: var(--trans);
}
.why-col:hover .why-col-icon {
  background: rgba(255,122,0,0.25);
  border-color: var(--orange);
}
.why-col-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 8px;
}
.why-col-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-section { padding: 80px 0; background: var(--white); }
.testimonials-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.testimonials-left h2 { color: var(--dark); margin-bottom: 16px; }
.testimonials-left p { color: var(--gray-m); margin-bottom: 28px; }
.client-logo { opacity: 0.7; transition: var(--trans); }
.client-logo:hover { opacity: 1; }
.company-logos { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.company-logos-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 8px;
}
.logos-row { display: flex; gap: 12px; flex-wrap: wrap; }
.logo-badge {
  background: var(--gray-xl);
  border: 1px solid var(--gray-b);
  border-radius: 8px;
  padding: 8px 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--dark);
}
.testimonials-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--gray-b);
  border-radius: 14px;
  padding: 32px;
  transition: var(--trans);
}
.t-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-color: var(--orange);
}
.t-quote { font-size: 2rem; color: var(--orange); line-height: 1; margin-bottom: 14px; }
.t-text { font-size: 0.9rem; color: var(--gray-d); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  min-width: 40px;
}
.t-avatar-img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  min-width: 40px;
}
.t-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.t-role { font-size: 0.78rem; color: var(--gray-m); }

/* CTA DUPLO */
.cta-dual {
  background: var(--dark2);
  border-radius: 20px;
  padding: 52px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  margin: 0 0 80px;
}
.cta-dual-left h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 8px; }
.cta-dual-left p { color: rgba(255,255,255,0.55); font-size: 0.95rem; }
.cta-dual-icon {
  width: 64px; height: 64px;
  background: rgba(255,122,0,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.cta-dual-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* FOOTER */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo img { height: 38px; filter: brightness(0) invert(1); margin-bottom: 14px; }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.82rem; font-weight: 700;
  transition: var(--trans);
}
.social-link:hover { background: var(--orange); color: var(--white); }
.footer-social .social-link:nth-child(1):hover { background: #E1306C; color: var(--white); }
.footer-social .social-link:nth-child(2):hover { background: #0077B5; color: var(--white); }
.footer-social .social-link:nth-child(3):hover { background: #1877F2; color: var(--white); }
.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: var(--trans); }
.footer-links a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem; line-height: 1.5;
}
.footer-contact-item .ic { color: var(--orange); min-width: 16px; margin-top: 2px; }
.footer-sub-heading {
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin: 14px 0 8px;
}
.footer-info-card { width: 100%; box-sizing: border-box; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* FORMS */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 0.82rem;
  color: var(--dark); margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-b);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem; color: var(--gray-d);
  background: var(--white);
  transition: var(--trans);
  outline: none;
}
.form-control:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,122,0,0.1);
}
.form-control.error { border-color: #E74C3C; }
.form-error { color: #E74C3C; font-size: 0.78rem; margin-top: 3px; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* HERO INNER PAGES */
.hero-inner {
  padding: 150px 0 70px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.hero-inner::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,122,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner h1 { color: var(--white); }
.hero-inner .hero-sub { color: rgba(255,255,255,0.6); }

/* CONTACT / SOBRE LAYOUTS */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-box { background: var(--gray-xl); border-radius: var(--radius); padding: 36px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-info-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--orange); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem;
}
.contact-info-text h4 { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--dark); margin-bottom: 3px; font-size: 0.9rem; }
.contact-info-text p, .contact-info-text a { color: var(--gray-d); font-size: 0.85rem; line-height: 1.6; display: block; }
.contact-info-text a:hover { color: var(--orange); }
.map-container { border-radius: var(--radius); overflow: hidden; height: 300px; margin-top: 40px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* SOBRE */
.sobre-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { text-align: center; padding: 32px 18px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-b); transition: var(--trans); }
.value-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 14px; }
.value-title { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-text { color: var(--gray-m); font-size: 0.85rem; line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.team-card { text-align: center; padding: 24px 16px; border: 1px solid var(--gray-b); border-radius: var(--radius); transition: var(--trans); }
.team-card:hover { border-color: var(--orange); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.5rem; margin: 0 auto 12px; }
.team-name { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--dark); }
.team-role { color: var(--orange); font-size: 0.82rem; margin-top: 3px; }
.team-spec { color: var(--gray-m); font-size: 0.78rem; margin-top: 5px; line-height: 1.5; }

/* ACCORDION */
.accordion-item { border: 1px solid var(--gray-b); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.accordion-header { width: 100%; padding: 18px 22px; background: var(--white); border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--dark); text-align: left; transition: var(--trans); }
.accordion-header:hover { background: var(--gray-xl); }
.accordion-icon { font-size: 1.1rem; color: var(--orange); transition: var(--trans); }
.accordion-header.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { display: none; padding: 0 22px 18px; color: var(--gray-d); font-size: 0.9rem; line-height: 1.7; }
.accordion-body.open { display: block; }

/* DASHBOARD */
.dashboard-page { background: var(--gray-xl); min-height: 100vh; padding-top: 68px; }
.login-wrapper { min-height: calc(100vh - 68px); display: flex; align-items: center; justify-content: center; padding: 40px 24px; background: var(--dark); }
.login-card { background: var(--dark2); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 48px; width: 100%; max-width: 440px; }
.login-logo { text-align: center; margin-bottom: 28px; }
.login-logo img { height: 44px; margin: 0 auto; }
.login-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--white); text-align: center; margin-bottom: 6px; }
.login-sub { text-align: center; color: rgba(255,255,255,0.4); font-size: 0.88rem; margin-bottom: 28px; }
.login-card .form-label { color: rgba(255,255,255,0.7); }
.login-card .form-control { background: var(--dark3); border-color: rgba(255,255,255,0.1); color: var(--white); }
.login-card .form-control::placeholder { color: rgba(255,255,255,0.25); }
.login-card .form-control:focus { border-color: var(--orange); }
.dashboard-layout { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 68px); }
.sidebar { background: var(--dark); padding: 28px 16px; border-right: 1px solid rgba(255,255,255,0.07); }
.sidebar-logo img { height: 34px; filter: brightness(0) invert(1); margin-bottom: 28px; }
.sidebar-nav a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 8px; font-family: 'Poppins', sans-serif; font-weight: 500; font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--trans); margin-bottom: 2px; }
.sidebar-nav a:hover, .sidebar-nav a.active { background: rgba(255,122,0,0.12); color: var(--orange); }
.dashboard-main { padding: 36px; background: var(--gray-xl); }
.dash-welcome h2 { font-size: 1.5rem; color: var(--dark); margin-bottom: 4px; }
.dash-welcome p { color: var(--gray-m); margin-bottom: 28px; }
.dash-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.dash-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.dash-card-title { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--dark); margin-bottom: 16px; font-size: 0.95rem; border-bottom: 2px solid var(--orange-l); padding-bottom: 10px; }
.doc-item { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid var(--gray-b); }
.doc-item:last-child { border-bottom: none; }
.doc-name { font-weight: 500; font-size: 0.88rem; color: var(--dark); }
.doc-date { font-size: 0.78rem; color: var(--gray-m); }
.doc-actions { display: flex; gap: 6px; }
.doc-btn { padding: 5px 12px; border-radius: 6px; font-size: 0.78rem; font-weight: 600; cursor: pointer; border: none; transition: var(--trans); }
.doc-btn-primary { background: var(--orange); color: var(--white); }
.doc-btn-outline { background: transparent; border: 1px solid var(--gray-b); color: var(--gray-d); }

/* SERVICE CARDS (servicos.html) */
.service-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-b); padding: 32px; transition: var(--trans); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); border-color: var(--orange); }
.service-icon { width: 60px; height: 60px; background: var(--orange-l); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 18px; }
.service-title { color: var(--dark); margin-bottom: 10px; }
.service-list { display: flex; flex-direction: column; gap: 7px; margin: 12px 0; }
.service-list li { display: flex; align-items: center; gap: 8px; color: var(--gray-d); font-size: 0.88rem; }
.service-list li::before { content: '✓'; color: var(--orange); font-weight: 700; }
.service-target { font-size: 0.8rem; color: var(--gray-m); margin-bottom: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* CASE CARDS */
.case-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-b); overflow: hidden; transition: var(--trans); }
.case-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.case-header { background: var(--dark); padding: 22px 26px; }
.case-header h3 { color: var(--white); font-size: 1rem; }
.case-header p { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-top: 4px; }
.case-body { padding: 26px; }
.case-section-label { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 7px; }
.case-section p { font-size: 0.88rem; color: var(--gray-d); }
.case-section { margin-bottom: 16px; }
.case-result { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--gray-d); margin-bottom: 5px; }
.case-quote { border-top: 1px solid var(--gray-b); margin-top: 18px; padding-top: 16px; font-style: italic; color: var(--gray-m); font-size: 0.85rem; }

/* ANIMATIONS */
/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  border-top: 3px solid var(--orange);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  z-index: 9998;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-text {
  flex: 1;
  min-width: 240px;
}
.cookie-banner-text strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 4px;
}
.cookie-banner-text p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}
.cookie-banner-text a {
  color: var(--orange);
  text-decoration: none;
}
.cookie-banner-text a:hover { text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn-accept {
  padding: 10px 20px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--orange-h); }
.cookie-btn-essential {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-essential:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
@media (max-width: 600px) {
  .cookie-banner { padding: 16px 20px; gap: 16px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn-accept, .cookie-btn-essential { flex: 1; text-align: center; }
}

.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* Keyframes */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,152,0,0.25); }
  50%       { box-shadow: 0 4px 32px rgba(255,152,0,0.55); }
}
@keyframes growLine {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Hero entrance — staggered on load */
.hero-title  { animation: fadeUp 0.75s ease both; animation-delay: 0.05s; }
.hero-title + p { animation: fadeInLeft 0.65s ease both; animation-delay: 0.25s; }
.hero-sub    { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }
.hero-actions { animation: fadeUp 0.7s ease both; animation-delay: 0.58s; }

/* Orange border-left line on hero sub grows in */
.hero-content > p[style*="border-left"] {
  animation: fadeInLeft 0.65s ease both;
  animation-delay: 0.25s;
}

/* Hero badge float */
.hero-badge { animation: float 4s ease-in-out infinite; }

/* Section label slide-in */
.section-label { animation: fadeInLeft 0.55s ease both; }

/* CTA button pulse glow */
.btn-primary { animation: pulseGlow 3s ease-in-out infinite; }
.btn-primary:hover { animation: none; }
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--dark); color: var(--white); padding: 14px 22px; border-radius: 10px; font-size: 0.88rem; z-index: 9999; transform: translateY(100px); opacity: 0; transition: var(--trans); border-left: 3px solid var(--orange); }
.toast.show { transform: none; opacity: 1; }
.toast.success { border-left-color: #27AE60; }
.toast.error { border-left-color: #E74C3C; }

/* Footer privacy link */
.footer-privacy-link { color: rgba(255,255,255,0.35); text-decoration: none; font-size: 0.78rem; transition: color 0.2s; }
.footer-privacy-link:hover { color: var(--orange); }

/* Footer info card — moldura discreta nos itens de contato */
.footer-info-card {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 12px;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.5;
  text-decoration: none; transition: all 0.25s ease; margin-bottom: 10px;
}
a.footer-info-card:hover,
.footer-popup-card:hover,
.footer-addr-card:hover { background: rgba(255,152,0,0.08); border-color: rgba(255,152,0,0.5); color: var(--orange); }
a.footer-info-card:hover .ic,
.footer-popup-card:hover .ic,
.footer-addr-card:hover .ic { color: var(--orange); }

/* Address action buttons (footer + sobre.html) */
.addr-action-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 8px;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6); font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600; text-decoration: none;
  cursor: pointer; transition: all 0.25s ease;
}
.addr-action-btn:hover { background: rgba(255,152,0,0.08); border-color: rgba(255,152,0,0.5); color: var(--orange); }

/* DESKTOP STYLES - FORCE NAVIGATION VISIBLE */
@media(min-width:921px){
  .nav { display: flex !important; visibility: visible !important; opacity: 1 !important; width: auto !important; height: auto !important; position: relative !important; }
  .nav a { display: inline-flex !important; visibility: visible !important; opacity: 1 !important; }
  .header-cta { display: inline-flex !important; visibility: visible !important; opacity: 1 !important; }
  .hamburger { display: none !important; visibility: hidden !important; }
  .mobile-menu { display: none !important; visibility: hidden !important; }
}

/* RESPONSIVE */
@media(max-width:1100px) {
  .hero-inner-grid { grid-template-columns: 1fr; }
  .hero-img-col { display: none; }
  .why-cols { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .stats-bar-grid { grid-template-columns: 1fr; }
  .stats-bar-item:nth-child(2) { border-right: none; }
  .services-header { grid-template-columns: 1fr; }
}
@media(max-width:920px) {
  .nav, .header-cta { display: none !important; }
  .hamburger { display: flex; position: absolute; right: 24px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-cards { grid-template-columns: 1fr; }
  .testimonials-right { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .sobre-layout { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-dual { grid-template-columns: 1fr; padding: 36px 28px; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .why-cols { grid-template-columns: 1fr 1fr; }
  .why-dark-header { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .service-mini { padding: 20px 12px; }
  .service-mini-title { font-size: 0.78rem; }
  .stats-bar-item { padding: 16px 18px; }
  /* Inline grid overrides — col-responsive usado com style="" nos HTMLs */
  .col-responsive { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media(max-width:900px) {
  .why-cols { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .why-cols { grid-template-columns: 1fr; }
  /* Footer WA buttons em coluna em telas muito pequenas */
  .footer-grid > div:last-child > div:first-child + div { flex-direction: column; }
  .whatsapp-btn-style { padding: 8px 12px; }
  .wa-number { font-size: 1.1rem !important; }
  /* Cards de contato do footer */
  .footer-info-card { font-size: 0.8rem; padding: 9px 12px; }
  /* Seção hero menor */
  .hero-inner { padding: 110px 0 50px; }
  /* Botões ação menores */
  .hero-actions .btn { font-size: 0.82rem; padding: 12px 16px; }
}

/* WHATSAPP BUTTON STYLE */
.whatsapp-btn-style {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #25D366 !important;
  padding: 16px 24px;
  border-radius: 16px;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.25s ease;
  box-shadow: none;
  margin-bottom: 12px;
  width: 100%;
  max-width: 300px;
  border: 1.5px solid rgba(37, 211, 102, 0.35);
}

.whatsapp-btn-style:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.15);
}

.whatsapp-btn-style:active {
  transform: scale(0.97);
  background: rgba(37, 211, 102, 0.14);
}

.wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.wa-header .wa-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.wa-header .wa-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.wa-header span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.wa-number {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Responsive adjust */
@media (max-width: 768px) {
  .whatsapp-btn-style { padding: 12px 20px; }
  .wa-number { font-size: 1.15rem; }
}

/* CREDIBILIDADE BAR */
.credibilidade-bar {
  background: var(--gray-xl);
  padding: 40px 0;
  border-top: 1px solid var(--gray-b);
  border-bottom: 1px solid var(--gray-b);
}
.credibilidade-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.credibilidade-item {
  padding: 0 32px;
  border-right: 1px solid var(--gray-b);
}
.credibilidade-item:last-child { border-right: none; }
.credibilidade-numero {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.credibilidade-label {
  font-size: 0.82rem;
  color: var(--gray-m);
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.credibilidade-sub {
  font-size: 0.78rem;
  color: var(--gray-m);
  display: block;
  margin-top: 2px;
}

/* SERVICE CARDS NUMERADOS */
.service-card-num {
  background: rgba(13,13,13,0.04);
  border: 1px solid rgba(0,0,0,0.08);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--trans);
  position: relative;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.service-card-num {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.service-card-num:hover {
  background: rgba(255,122,0,0.04);
  border-color: rgba(255,152,0,0.25);
  border-top-color: var(--orange);
  box-shadow: 0 12px 40px rgba(255,122,0,0.18);
  transform: translateY(-7px);
}
.service-card-num-index {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}
.service-card-num h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-card-num p {
  font-size: 0.9rem;
  color: var(--gray-m);
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-card-num-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--white);
  background: var(--orange);
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--trans);
}
.service-card-num-link:hover {
  background: var(--orange-h);
  transform: translateX(3px);
  text-decoration: none;
}
.service-card-num-link:hover { text-decoration: underline; }

/* BLOCKQUOTE DRA. LENE */
.blockquote-lene {
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  margin: 28px 0;
  background: var(--gray-xl);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.blockquote-lene p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.7;
  margin: 0 0 10px;
}
.blockquote-lene cite {
  font-size: 0.82rem;
  color: var(--gray-m);
  font-style: normal;
  font-family: 'Poppins', sans-serif;
}

/* CTA FINAL LARANJA */
.cta-laranja {
  background: var(--orange);
  padding: 80px 0;
  text-align: center;
}
.cta-laranja h2 {
  color: #fff;
  margin-bottom: 12px;
}
.cta-laranja p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.btn-white {
  background: #fff;
  color: var(--orange);
  border-color: #fff;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.btn-white:hover,
.btn-white:active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  box-shadow: 0 8px 24px rgba(255,152,0,0.35);
  transform: translateY(-2px);
}

/* WHY COLS COM SVG */
.why-svg-col {
  text-align: center;
  padding: 0 16px;
}
.why-svg-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,122,0,0.12);
  border-radius: 50%;
  border: 1px solid rgba(255,122,0,0.25);
}
.why-svg-col-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-svg-col-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.why-svg-accent {
  width: 32px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto 24px;
  border-radius: 2px;
}
/* RESPONSIVO NOVOS COMPONENTES */
@media(max-width: 768px) {
  .credibilidade-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .credibilidade-item { border-right: none; border-bottom: 1px solid var(--gray-b); padding-bottom: 24px; }
  .credibilidade-item:last-child { border-bottom: none; }
}

/* ===================================
   RESPONSIVO MOBILE — max-width 768px
   =================================== */
@media (max-width: 768px) {

  /* Hero */
  .hero { padding: 100px 0 60px; min-height: 100svh; }
  .hero-left-block { padding-left: 24px; padding-right: 24px; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-trust { flex-direction: column; gap: 8px; }

  /* Section spacing */
  .section { padding: 60px 0; }
  .cta-laranja { padding: 56px 0; }
  .cta-laranja h2 { font-size: 1.5rem; }

  /* Credibilidade */
  .credibilidade-grid { grid-template-columns: 1fr 1fr !important; gap: 20px; }
  .credibilidade-item { border-right: none !important; border-bottom: 1px solid var(--gray-b); padding-bottom: 20px; }
  .credibilidade-item:last-child { border-bottom: none; padding-bottom: 0; }

  /* Service cards numerados */
  .grid-3 { grid-template-columns: 1fr !important; }
  .grid-2 { grid-template-columns: 1fr !important; }

  /* Why SVG cols */
  .why-cols { grid-template-columns: 1fr 1fr !important; }
  .why-dark-header { grid-template-columns: 1fr !important; }

  /* Benefit cards */
  .benefits-grid { grid-template-columns: 1fr 1fr !important; }

  /* Contact layout */
  .contact-layout { grid-template-columns: 1fr !important; }
  .contact-info-box { margin-bottom: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Agendamento card */
  .agendamento-card-grid { grid-template-columns: 1fr !important; }

  /* Candidatura */
  .form-grid { grid-template-columns: 1fr !important; }

  /* Grids de conteúdo responsivos */
  .col-responsive { grid-template-columns: 1fr !important; }

  /* Process grid */
  .process-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Steps grid */
  .steps-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 920px) {
  .process-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 480px) {
  /* Why cols */
  .why-cols { grid-template-columns: 1fr !important; }
  .benefits-grid { grid-template-columns: 1fr !important; }

  /* Credibilidade números menores */
  .credibilidade-numero { font-size: 2rem; }

  /* Botões em coluna */
  .hero-actions .btn { font-size: 0.85rem; padding: 12px 20px; }

  /* Section label menor */
  h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  /* Process grid */
  .process-grid { grid-template-columns: 1fr !important; }
}
