/* ─── Fonts ─────────────────────────────────────────────────────────────── */
@font-face {
  font-family: "flsFont";
  src: url("public/fonts/FLSSans_Regular-s.p.10~_lsy23.t02.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "flsFont";
  src: url("public/fonts/FLSSans_Medium-s.p.0vtp7.r~j4nbb.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "flsFont";
  src: url("public/fonts/FLSSans_Demi-s.p.0oyft1yere6e..ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "flsFont";
  src: url("public/fonts/FLSSans_Bold-s.p.0pao.niifdr_2.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── Reset / Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-family: "flsFont", Arial, sans-serif;
  height: 100%;
}

body {
  font-family: "flsFont", Arial, sans-serif;
  overflow-x: clip;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main { flex: 1; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

/* ─── Animations ─────────────────────────────────────────────────────────── */
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-in { animation: fade-in 0.3s ease forwards; }

/* ─── CTA Primary ────────────────────────────────────────────────────────── */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 150ms, color 150ms, border-color 150ms;
}
.cta-primary:focus {
  outline: none;
  box-shadow: 0 0 0 4px #004fff33;
}

/* ─── Header ─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.hidden { transform: translateY(-100%); }

.header-bg-mobile {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 64px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.header-bg-desktop {
  position: absolute;
  inset: 0;
  background: #fff;
  display: none;
}

.header-inner {
  position: relative;
  display: flex;
  height: 64px;
  align-items: flex-start;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 64px;
  width: 80px;
  background: #fff;
}
.header-logo img { width: 48px; height: 48px; object-fit: contain; }

.header-nav { display: none; }

.header-actions {
  margin-left: auto;
  display: flex;
  height: 64px;
  align-items: center;
  gap: 16px;
  padding: 0 12px;
}

.webmail-link { display: none; }

.header-cta {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: #004fff;
  color: #fff;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 0.875rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 9999px;
  color: #002a54;
  transition: background-color 150ms;
}
.menu-toggle:hover { background: rgba(0,42,84,0.05); }
.menu-toggle svg { width: 28px; height: 28px; fill: #002a54; }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  overflow-y: auto;
  background: #fff;
  padding: 112px 24px 40px;
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f3f4f6;
  padding: 20px 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #002a54;
}
.mobile-menu a svg { width: 20px; height: 20px; fill: #002a54; }
.mobile-cta {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: #004fff;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 4px;
  border-bottom: none !important;
}
.mobile-cta svg { fill: #fff !important; }

/* Desktop header: xl breakpoint (1280px) */
@media (min-width: 1280px) {
  .header-bg-mobile { display: none; }
  .header-bg-desktop { display: block; }

  .header-inner { height: 112px; }
  .header-logo {
    height: 112px;
    width: 112px;
    border-radius: 0;
    box-shadow: none;
  }
  .header-logo img { width: 56px; height: 56px; }

  .header-nav {
    display: flex;
    align-self: stretch;
  }
  .header-nav > div { display: flex; height: 100%; }
  .header-nav a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #002a54;
    transition: color 150ms;
  }
  .header-nav a:hover { color: #3D4992; }

  .header-actions {
    height: 66px;
    gap: 24px;
    padding: 0 24px;
  }

  .webmail-link {
    display: flex;
    align-items: center;
    color: #002a54;
    transition: color 150ms;
  }
  .webmail-link:hover { color: #004fff; }
  .webmail-link svg { width: 20px; height: 20px; }

  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  min-height: 680px;
  width: 100%;
  align-items: center;
  overflow: hidden;
  background: #000;
}
@media (min-width: 768px) { .hero { min-height: 100vh; } }

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.20), rgba(0,0,0,0.45), rgba(0,0,0,0.70));
}
.hero-content {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  width: 100%;
  max-width: 1536px;
  padding: 112px 20px 176px;
}
@media (min-width: 640px) { .hero-content { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1280px) { .hero-content { padding-bottom: 128px; padding-top: 144px; } }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #3D4992;
  flex-shrink: 0;
}
.hero h1 {
  max-width: 42rem;
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
}
@media (min-width: 640px)  { .hero h1 { font-size: 2.25rem; } }
@media (min-width: 768px)  { .hero h1 { font-size: 3rem; } }
@media (min-width: 1280px) { .hero h1 { font-size: 3.75rem; } }

.hero p {
  margin-top: 20px;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.8);
}
@media (min-width: 640px) { .hero p { font-size: 1.125rem; } }
@media (min-width: 768px) { .hero p { font-size: 1.25rem; } }

.hero-divider {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  overflow: hidden;
  line-height: 0;
}
.hero-divider svg {
  display: block;
  height: 129px;
  width: 100%;
  fill: #004fff;
}
.hero-divider .layer-1 { opacity: 0.4; }
.hero-divider .layer-2 { opacity: 0.6; }

/* ─── Equipment / Areas ──────────────────────────────────────────────────── */
.areas {
  width: 100%;
  overflow: hidden;
  background: #004fff;
  padding: 80px 0;
}
@media (min-width: 768px) { .areas { padding: 96px 0; } }

.areas .container { margin: 0 auto; max-width: 1280px; padding: 0 20px; }
@media (min-width: 640px) { .areas .container { padding: 0 24px; } }

.areas h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}
@media (min-width: 768px) { .areas h2 { font-size: 2.25rem; } }

.areas-grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 768px) { .areas-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.area-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 1rem;
  background: rgba(255,255,255,0.1);
  padding: 24px;
  outline: 1px solid rgba(255,255,255,0.1);
}
.area-card-icon { width: 64px; height: 64px; object-fit: contain; }
.area-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.area-card p {
  flex-grow: 1;
  font-size: 0.9375rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.8);
}

/* ─── ServicesPromo / Quem somos ─────────────────────────────────────────── */
.quem-somos { background: #e3e5e4; width: 100%; }

.quem-somos-wave {
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}
.quem-somos-wave svg { display: block; width: 100%; height: 46px; fill: #e3e5e4; }

.quem-somos-inner {
  margin: 0 auto;
  display: grid;
  max-width: 1280px;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
}
@media (min-width: 640px) { .quem-somos-inner { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 768px) {
  .quem-somos-inner {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.quem-somos-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.quem-somos-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quem-somos-text { display: flex; flex-direction: column; gap: 24px; }
.quem-somos-text h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #002a54;
  line-height: 1.2;
}
@media (min-width: 768px) { .quem-somos-text h2 { font-size: 2.25rem; } }

.quem-somos-text p {
  font-size: 0.9375rem;
  line-height: 1.625;
  color: #4a4a4a;
}
@media (min-width: 640px) { .quem-somos-text p { font-size: 1rem; } }

.quem-somos-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #004fff;
  font-weight: 600;
}
.quem-somos-link:hover { text-decoration: underline; }
.quem-somos-link svg { width: 16px; height: 16px; fill: currentColor; }

/* ─── Contact Banner ─────────────────────────────────────────────────────── */
.contact-banner-wrapper { width: 100%; background: #e3e5e4; }
.contact-banner-curve { height: 54px; line-height: 0; }
.contact-banner-curve svg { display: block; height: 54px; width: 100%; fill: #002a54; }

.contact-banner {
  background: #002a54;
  padding: 64px 20px;
}
@media (min-width: 640px) { .contact-banner { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 768px) { .contact-banner { padding-top: 80px; padding-bottom: 80px; } }

.contact-banner-inner {
  margin: 0 auto;
  max-width: 1280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact-banner-inner { flex-direction: row; align-items: center; }
}

.contact-banner-text {
  max-width: 42rem;
  border-left: 2px solid #1683ff;
  padding-left: 24px;
}
.contact-banner-text .eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #61a8ff;
}
.contact-banner-text h2 {
  margin-top: 12px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 640px) { .contact-banner-text h2 { font-size: 1.875rem; } }
@media (min-width: 768px) { .contact-banner-text h2 { font-size: 2.25rem; } }

.contact-banner-text p {
  margin-top: 16px;
  max-width: 36rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.7);
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #004fff;
  padding: 16px 24px;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
  transition: transform 150ms;
  flex-shrink: 0;
}
.banner-cta:hover { transform: translateY(-2px); }
.banner-cta svg { width: 16px; height: 16px; fill: currentColor; }
@media (min-width: 640px) { .banner-cta { width: auto; } }

/* ─── Cases / Tabs ───────────────────────────────────────────────────────── */
.cases { width: 100%; background: #fff; }

.cases-divider { height: 54px; background: #002a54; line-height: 0; }
.cases-divider svg { display: block; height: 54px; width: 100%; fill: #fff; }

.cases-inner {
  margin: 0 auto;
  max-width: 1280px;
  padding: 80px 20px;
}
@media (min-width: 640px) { .cases-inner { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 768px) { .cases-inner { padding-top: 96px; padding-bottom: 96px; } }

.cases-header { margin-bottom: 40px; max-width: 42rem; }
.cases-eyebrow {
  margin-bottom: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #004fff;
}
.cases-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #002a54;
}
@media (min-width: 768px) { .cases-header h2 { font-size: 2.25rem; } }
.cases-header p { margin-top: 16px; line-height: 1.625; color: #4a4a4a; }

.cases-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  margin-bottom: 40px;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  scrollbar-width: none;
}
.cases-tabs::-webkit-scrollbar { display: none; }
@media (min-width: 640px) {
  .cases-tabs { margin-left: 0; margin-right: 0; padding-left: 0; padding-right: 0; }
}

.tab-btn {
  flex-shrink: 0;
  border-radius: 9999px;
  border: 1px solid rgba(0,42,84,0.1);
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  background: #f4f5f5;
  color: #4a4a4a;
  min-height: 44px;
  transition: background-color 150ms, color 150ms, border-color 150ms;
  white-space: nowrap;
}
.tab-btn:hover { border-color: rgba(0,79,255,0.3); color: #004fff; }
.tab-btn.active { background: #004fff; color: #fff; border-color: #004fff; }

.case-article {
  display: grid;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) { .case-article { grid-template-columns: 1fr 1fr; gap: 64px; } }

.case-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem;
  background: #f4f5f5;
}
@media (min-width: 768px) { .case-image { aspect-ratio: 1/1; } }
.case-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 40px;
}
@media (min-width: 768px) { .case-image img { padding: 64px; } }

.case-body { display: flex; flex-direction: column; }
.case-location {
  font-size: 0.875rem;
  font-weight: 600;
  color: #004fff;
}
.case-body h3 {
  margin-top: 12px;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: #002a54;
}
@media (min-width: 768px) { .case-body h3 { font-size: 2.25rem; } }
.case-body > p {
  margin-top: 20px;
  line-height: 1.625;
  color: #4a4a4a;
}
.case-details {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  font-size: 0.875rem;
  color: #4a4a4a;
}
.case-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.case-dot {
  margin-top: 8px;
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 9999px;
  background: #004fff;
}
.case-cta {
  margin-top: 32px;
  display: inline-block;
  border-radius: 6px;
  background: #004fff;
  padding: 12px 24px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  transition: background-color 150ms;
  align-self: flex-start;
  width: 100%;
}
@media (min-width: 640px) { .case-cta { width: auto; } }
.case-cta:hover { background: #003dcc; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: #fff; color: #fff; }

.footer-curve { height: 54px; line-height: 0; }
.footer-curve svg { display: block; height: 54px; width: 100%; fill: #001b33; }

.footer-body { background: #001b33; }
.footer-inner {
  margin: 0 auto;
  max-width: 1280px;
  padding: 56px 20px;
}
@media (min-width: 640px) { .footer-inner { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 768px) { .footer-inner { padding-top: 64px; padding-bottom: 64px; } }

.footer-grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1.35fr; gap: 48px; }
}

.footer-brand h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1683ff;
}
.footer-brand p {
  margin-top: 24px;
  max-width: 36rem;
  line-height: 1.625;
  color: rgba(255,255,255,0.85);
}
.footer-socials {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  color: rgba(255,255,255,0.6);
}
.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  transition: background-color 150ms, color 150ms;
}
.footer-socials a:hover { background: rgba(255,255,255,0.05); color: #1683ff; }
.footer-socials svg { width: 24px; height: 24px; fill: currentColor; }
.footer-socials .instagram-icon { fill: none; stroke: currentColor; stroke-width: 2; }

.footer-links h2 { font-size: 1.125rem; font-weight: 600; }
.footer-links ul { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.85);
  transition: color 150ms;
}
.footer-links a:hover { color: #1683ff; }

.footer-contact h2 { font-size: 1.125rem; font-weight: 600; }
.footer-contact address {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-style: normal;
  color: rgba(255,255,255,0.85);
}
.footer-contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 44px;
}
.footer-contact-row svg {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #1683ff;
}
.footer-contact-row a {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  transition: color 150ms;
  color: rgba(255,255,255,0.85);
}
.footer-contact-row a:hover { color: #1683ff; }
.footer-contact-row a svg { margin-top: 0; }

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.5);
  padding-top: 32px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}

/* ─── Page Hero (Sobre / Contatos) ───────────────────────────────────────── */
.page-hero {
  background: #002a54;
  padding: 128px 20px 64px;
  color: #fff;
}
@media (min-width: 640px)  { .page-hero { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 768px)  { .page-hero { padding-top: 192px; padding-bottom: 96px; } }

.page-hero .container { margin: 0 auto; max-width: 1280px; }
.page-hero .eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.page-hero h1 {
  max-width: 48rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 640px)  { .page-hero h1 { font-size: 2.25rem; } }
@media (min-width: 768px)  { .page-hero h1 { font-size: 3.75rem; } }
.page-hero p {
  margin-top: 24px;
  max-width: 42rem;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.8);
}

.page-hero.centered { text-align: center; }
.page-hero.centered h1, .page-hero.centered p { margin-left: auto; margin-right: auto; }

/* ─── Sobre page ─────────────────────────────────────────────────────────── */
.sobre-main { background: #f4f5f5; color: #002a54; }

.sobre-quem {
  margin: 0 auto;
  display: grid;
  max-width: 1280px;
  gap: 40px;
  padding: 80px 20px;
}
@media (min-width: 640px) { .sobre-quem { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 768px) {
  .sobre-quem { grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; padding-top: 96px; padding-bottom: 96px; }
}

.sobre-quem-text h2 { font-size: 1.875rem; font-weight: 700; }
@media (min-width: 768px) { .sobre-quem-text h2 { font-size: 2.25rem; } }
.sobre-quem-text-body {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  line-height: 1.625;
  color: #4a4a4a;
}
.sobre-stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(0,42,84,0.15);
  padding-top: 32px;
}
.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #004fff;
}
@media (min-width: 768px) { .stat-number { font-size: 1.875rem; } }
.stat-label { margin-top: 4px; font-size: 0.875rem; color: #4a4a4a; }

.sobre-quem-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 0.5rem;
}
.sobre-quem-img img { width: 100%; height: 100%; object-fit: cover; }

.sobre-equipe {
  background: #002a54;
  padding: 80px 20px;
  color: #fff;
}
@media (min-width: 640px) { .sobre-equipe { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 768px) { .sobre-equipe { padding-top: 96px; padding-bottom: 96px; } }

.sobre-equipe-inner { margin: 0 auto; max-width: 1280px; }
.sobre-equipe-header { margin-bottom: 40px; max-width: 42rem; }
.sobre-equipe-header .eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.sobre-equipe-header h2 { font-size: 1.875rem; font-weight: 700; }
@media (min-width: 768px) { .sobre-equipe-header h2 { font-size: 2.25rem; } }
.sobre-equipe-header p { margin-top: 16px; line-height: 1.625; color: rgba(255,255,255,0.7); }
.swipe-hint {
  display: block;
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #61a8ff;
}
@media (min-width: 640px) { .swipe-hint { display: none; } }

.team-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.team-grid::-webkit-scrollbar { display: none; }
@media (min-width: 640px) {
  .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-left: 0; margin-right: 0;
    padding-left: 0; padding-right: 0;
    padding-bottom: 0;
    overflow-x: visible;
  }
}

.team-figure {
  position: relative;
  aspect-ratio: 4/5;
  width: 84vw;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 1rem;
}
@media (min-width: 640px) {
  .team-figure { width: auto; }
  .team-figure.wide { grid-column: span 2; aspect-ratio: 1280/660; }
  .team-figure.portrait { aspect-ratio: 3/4; }
}
.team-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms;
}
.team-figure:hover img { transform: scale(1.02); }
.team-figure figcaption {
  position: absolute;
  inset-x: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 64px 24px 20px;
  font-weight: 600;
  color: #fff;
}

.sobre-filosofia {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}
@media (min-width: 640px) { .sobre-filosofia { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 768px) { .sobre-filosofia { padding-top: 96px; padding-bottom: 96px; } }
.sobre-filosofia-inner { margin: 0 auto; max-width: 56rem; }
.sobre-filosofia h2 { font-size: 1.5rem; font-weight: 700; color: #002a54; }
@media (min-width: 640px) { .sobre-filosofia h2 { font-size: 1.875rem; } }
.sobre-filosofia p { margin-top: 24px; line-height: 1.625; color: #4a4a4a; }
.sobre-filosofia a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-weight: 600;
  color: #004fff;
}
.sobre-filosofia a:hover { text-decoration: underline; }
.sobre-filosofia a svg { width: 16px; height: 16px; fill: currentColor; }

/* ─── Contatos page ──────────────────────────────────────────────────────── */
.contatos-main { background: #f4f5f5; }

.contatos-body {
  margin: 0 auto;
  display: grid;
  max-width: 1280px;
  gap: 56px;
  padding: 80px 20px;
}
@media (min-width: 640px) { .contatos-body { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 1024px) { .contatos-body { grid-template-columns: 1fr 1fr; padding-top: 96px; padding-bottom: 96px; } }

/* Contact form */
.contact-form-section h2 { font-size: 1.875rem; font-weight: 700; color: #002a54; }
.contact-form-section > p { margin-top: 12px; color: #4a4a4a; }

.contact-form { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; gap: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #002a54;
}
.form-field input,
.form-field textarea {
  min-height: 48px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(0,42,84,0.2);
  background: #fff;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: #1f2937;
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: #004fff;
  box-shadow: 0 0 0 2px rgba(0,79,255,0.15);
}
.form-field textarea { min-height: auto; resize: vertical; }

.form-submit {
  width: 100%;
  border-radius: 6px;
  background: #004fff;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 150ms;
  border: none;
}
.form-submit:hover { background: #003dcc; }
.form-submit:disabled { opacity: 0.6; cursor: wait; }

.form-status { min-height: 24px; font-size: 0.875rem; }
.form-status.success { color: #15803d; }
.form-status.error { color: #b91c1c; }

/* Map */
.map-section h2 { font-size: 1.875rem; font-weight: 700; color: #002a54; }
.map-frame {
  margin-top: 32px;
  height: 384px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

.map-address {
  margin-top: 24px;
  border-radius: 12px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.map-address h3 { font-size: 1.125rem; font-weight: 600; color: #002a54; }
.map-address p { margin-top: 12px; line-height: 1.625; color: #4a4a4a; }
.map-address address { margin-top: 20px; font-style: normal; line-height: 1.625; color: #4a4a4a; }
.map-address strong { color: #002a54; }
