:root {
  --blue: #062b5f;
  --blue-2: #0b3c7c;
  --blue-3: #0e58a8;
  --yellow: #ffc400;
  --yellow-2: #ffdd57;
  --magenta: #e1007a;
  --black: #101828;
  --muted: #667085;
  --white: #ffffff;
  --bg: #f6f9ff;
  --line: rgba(6, 43, 95, .12);
  --shadow: 0 24px 60px rgba(6, 43, 95, .14);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 99;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 35px rgba(16, 24, 40, .08);
}
.topbar { background: var(--white); }
.topbar__inner {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
.brand {
  width: 168px;
  justify-self: center;
}
.brand img { width: 100%; height: auto; }
.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  color: var(--blue);
  font-size: 14px;
}
.topbar__phone {
  font-size: 20px;
  font-weight: 800;
}
.topbar__phone .whatsapp-icon {
  width: 38px;
  height: 38px;
}
.topbar__link:last-child { justify-self: end; }
.topbar__icon,
.whatsapp-icon {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 43, 95, .08);
  color: var(--blue);
}
.topbar__whats .whatsapp-icon {
  background: transparent;
  color: var(--white);
  overflow: hidden;
}
.whatsapp-icon--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Ajuste solicitado: telefone maior no cabeçalho */
.topbar__whats,
.topbar__phone {
  font-size: 24px !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em;
}
.topbar__whats .whatsapp-icon,
.topbar__phone .whatsapp-icon {
  width: 44px !important;
  height: 44px !important;
}

.main-nav {
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
  color: var(--white);
}
.main-nav__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}
.main-nav__label { color: rgba(255,255,255,.9); font-weight: 600; }
.main-nav__links { display: flex; gap: 20px; }
.main-nav__links a { font-weight: 700; opacity: .9; }
.main-nav__links a:hover { color: var(--yellow); opacity: 1; }

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('assets/img/hero-bg-mais-cores-v3.png') center center / cover no-repeat !important;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent !important;
  opacity: 0 !important;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 43, 95, .16) !important;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 56px;
  padding: 90px 0;
}
.hero__logo-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  min-height: 380px;
  display: grid;
  place-items: center;
  text-align: center;
  transform: rotate(-2deg);
  overflow: hidden;
}
.hero__logo-card span {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}
.hero__logo-card img { width: min(430px, 100%); margin: 0 auto; border-radius: 18px; }
.hero__image-card img { width: 100%; height: 100%; object-fit: cover; }
.hero__text { color: var(--white); justify-self: end; max-width: 640px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--magenta);
  background: rgba(225,0,122,.10);
  border: 1px solid rgba(225,0,122,.20);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero .eyebrow {
  color: var(--yellow);
  background: rgba(255,196,0,.13);
  border-color: rgba(255,196,0,.28);
}
h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.05;
  margin: 0;
  color: var(--blue);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(38px, 5.2vw, 74px);
  margin: 18px 0 20px;
  letter-spacing: -0.045em;
}
.hero p {
  font-size: 20px;
  color: rgba(255,255,255,.88);
  margin: 0 0 34px;
  max-width: 580px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 23px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 16px 35px rgba(37, 211, 102, .28);
}
.btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}
.btn--outline:hover { background: rgba(255,255,255,.16); }
.btn--primary {
  background: linear-gradient(90deg, var(--blue), var(--blue-3));
  color: var(--white);
  width: 100%;
}
.btn__icon {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  overflow: hidden;
}
.btn__icon--image { background: transparent; }
.btn__icon--image img { width: 100%; height: 100%; object-fit: contain; }

.section { padding: 92px 0; }
.section-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 48px;
}
.section-heading h2,
.map-card h2,
.form-card h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  margin: 16px 0 14px;
  letter-spacing: -.035em;
}
.section-heading p,
.map-card p,
.form-card p { color: var(--muted); margin: 0; font-size: 17px; }
.services { background: var(--white); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(6, 43, 95, .08);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.service-card__image {
  height: 245px;
  background: linear-gradient(135deg, #eef6ff, #fff7d6);
  display: block;
  overflow: hidden;
}
.service-card__image img { height: 100%; width: 100%; object-fit: cover; }
.service-card__content { padding: 26px; }
.service-card__tag {
  display: inline-flex;
  background: rgba(255,196,0,.18);
  color: #7a5b00;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .06em;
}
.service-card__tag--magenta {
  background: rgba(225,0,122,.10);
  color: var(--magenta);
}
.service-card h3 { font-size: 27px; margin: 17px 0 10px; }
.service-card p { color: var(--muted); margin: 0; }

.trust-band {
  padding: 44px 0;
  background:
    linear-gradient(90deg, rgba(6,43,95,.96), rgba(11,60,124,.96)),
    radial-gradient(circle at 15% 40%, rgba(255,196,0,.5), transparent 28%);
  color: var(--white);
}
.trust-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-item {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 24px;
}
.trust-item strong {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--yellow);
  font-size: 28px;
  margin-bottom: 5px;
}
.trust-item span { color: rgba(255,255,255,.84); }

.clients {
  background: linear-gradient(180deg, var(--bg), var(--white));
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
.client-logo {
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(6, 43, 95, .08);
}
.client-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.contact {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,196,0,.20), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(225,0,122,.16), transparent 32%),
    linear-gradient(135deg, var(--blue), var(--blue-2)) !important;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: start;
}
.map-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.map-card__header { margin-bottom: 22px; }
.map-wrapper {
  border-radius: 22px;
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--line);
  background: #eaf1fb;
}
.map-wrapper iframe {
  border: 0;
  width: 100%;
  height: 100%;
}
.map-link {
  margin-top: 16px;
  display: inline-flex;
  font-weight: 900;
  color: var(--blue);
  border-bottom: 3px solid var(--yellow);
}
.contact-form {
  margin-top: 24px;
  display: grid;
  gap: 15px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
  color: var(--blue);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(6,43,95,.20);
  background: #fbfdff;
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--black);
  font: inherit;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue-3);
  box-shadow: 0 0 0 4px rgba(14, 88, 168, .12);
}
.form-card__whatsapp {
  margin-top: 22px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(37, 211, 102, .10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-card__whatsapp span { color: var(--muted); font-weight: 700; }
.form-card__whatsapp a { color: #128c48; font-weight: 900; }

.footer {
  background:
    radial-gradient(circle at 8% 18%, rgba(255,196,0,.18), transparent 20%),
    radial-gradient(circle at 95% 40%, rgba(225,0,122,.20), transparent 20%),
    var(--blue);
  color: var(--white);
}
.footer__grid {
  padding: 36px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 30px;
}
.footer__logo { width: 190px; margin-bottom: 12px; background: #fff; border-radius: 16px; padding: 8px; }
.footer h3 { color: var(--yellow); font-size: 18px; margin-bottom: 12px; }
.footer p { color: rgba(255,255,255,.82); margin: 0 0 8px; line-height: 1.45; }
.footer a:hover { color: var(--yellow); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 12px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}
.footer__bottom a { color: var(--yellow); font-weight: 900; }

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 29px;
  box-shadow: 0 14px 32px rgba(37, 211, 102, .38);
  transition: transform .2s ease;
  overflow: hidden;
}
.floating-whatsapp img { width: 100%; height: 100%; object-fit: contain; }
.floating-whatsapp:hover { transform: scale(1.06); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .12s; }
.reveal-delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .topbar__inner { grid-template-columns: 1fr; padding: 8px 0; gap: 8px; text-align: center; }
  .topbar__link, .topbar__link:last-child { justify-self: center; }
  .brand { order: -1; width: 150px; }
  .main-nav__inner { justify-content: center; flex-direction: column; padding: 10px 0; gap: 8px; }
  .hero { min-height: auto; }
  .hero__content { grid-template-columns: 1fr; gap: 34px; padding: 64px 0; }
  .hero__text { justify-self: start; max-width: none; }
  .hero__logo-card { min-height: 260px; transform: none; }
  .cards-grid, .contact__grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .trust-band__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .main-nav__links { gap: 12px; font-size: 13px; }
  .topbar__link { font-size: 13px; }
  .topbar__phone, .topbar__whats { font-size: 19px !important; }
  .hero h1 { font-size: 38px; }
  .hero p { font-size: 17px; }
  .btn { width: 100%; }
  .section { padding: 68px 0; }
  .section-heading { margin-bottom: 34px; }
  .clients-grid { grid-template-columns: 1fr; }
  .map-wrapper { height: 340px; }
  .map-card, .form-card { padding: 20px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .floating-whatsapp { width: 56px; height: 56px; right: 16px; bottom: 16px; }
}
