:root {
  --ink: #102733;
  --ink-soft: #2e4a59;
  --brand: #0b6e8a;
  --brand-strong: #044f69;
  --accent: #dca851;
  --surface: #f5f2ec;
  --surface-strong: #ece5db;
  --white: #ffffff;
  --success: #1f8a58;
  --error: #cc3a3a;
  --shadow: 0 24px 70px rgba(16, 39, 51, 0.17);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
}

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

body {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: radial-gradient(circle at 20% 10%, #f7f4ed, #f1ece4 55%, #eee7dc);
}

.container {
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

p {
  color: var(--ink-soft);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(245, 242, 236, 0.82);
  border-bottom: 1px solid rgba(16, 39, 51, 0.08);
}

.site-header nav {
  min-height: 64px;
  padding: 0.42rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-logo {
  display: block;
}

.brand-logo-horizontal {
  width: clamp(176px, 18vw, 224px);
  height: auto;
  max-width: 48vw;
}

.brand-logo-symbol {
  width: 33px;
  display: none;
}

.brand-text-mobile {
  display: none;
  font-size: 0.82rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.header-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.header-cta {
  text-decoration: none;
  background: var(--ink);
  color: var(--white);
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  overflow: clip;
  padding-top: 6.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(65% 55% at 92% 10%, rgba(220, 168, 81, 0.26), transparent 70%),
    radial-gradient(50% 45% at 7% 28%, rgba(11, 110, 138, 0.21), transparent 78%),
    linear-gradient(145deg, #0d3344 0%, #0f4f63 45%, #177289 100%);
}

.hero-watermark {
  position: absolute;
  right: -100px;
  bottom: -110px;
  width: min(520px, 46vw);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-grid {
  display: block;
  text-align: center;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #f5e4bb;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin-top: 1.35rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.05rem, 4.9vw, 3.7rem);
}

.hero-subtitle {
  margin-top: 1.35rem;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.07rem;
}

.hero-actions {
  margin-top: 2.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 0.85rem;
  width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.cta-button,
.cta-secondary {
  width: 100%;
  max-width: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  min-height: 56px;
  padding: 0.86rem 1.4rem;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button {
  background: var(--accent);
  color: #2c2010;
  box-shadow: 0 10px 24px rgba(220, 168, 81, 0.37);
  width: 100%;
  max-width: 340px;
}

.cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.cta-tertiary {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(8, 28, 38, 0.25);
}

.cta-insurance {
  border-color: rgba(110, 210, 160, 0.55);
  background: rgba(110, 210, 160, 0.07);
  font-size: 0.88rem;
}

.cta-button:hover,
.cta-secondary:hover {
  transform: translateY(-2px);
}

.hero-metrics {
  margin-top: 2.7rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric {
  min-height: 118px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.05rem;
  text-align: center;
}

.metric strong {
  display: block;
  font-size: 1rem;
}

.metric span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
}

.section h2 {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.45rem);
}

.section-intro {
  text-align: center;
  margin: 0.9rem auto 2.6rem;
  max-width: 620px;
  font-size: 1.02rem;
}

.diferenciais {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.56));
}

.quem-somos {
  background:
    radial-gradient(50% 70% at 0% 50%, rgba(220, 168, 81, 0.2), transparent 75%),
    radial-gradient(35% 55% at 100% 0%, rgba(11, 110, 138, 0.18), transparent 78%),
    linear-gradient(160deg, #f9f5ef 0%, #f4ede3 50%, #efe6d8 100%);
}

.quem-somos-shell {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(16, 39, 51, 0.11);
  padding: clamp(1.4rem, 3vw, 2.6rem);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(2px);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 288px;
  gap: 2.8rem;
  align-items: center;
}

.quem-somos-photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quem-somos-photo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow:
    0 2px 0 4px rgba(220, 168, 81, 0.22),
    0 20px 56px rgba(16, 39, 51, 0.18);
  border: 1px solid rgba(16, 39, 51, 0.06);
}

.quem-somos-photo-caption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
}

.quem-somos-head .eyebrow {
  background: rgba(16, 39, 51, 0.07);
  border: 1px solid rgba(16, 39, 51, 0.18);
  color: var(--ink);
}

.quem-somos-head h2 {
  text-align: left;
  margin-top: 1rem;
  max-width: 740px;
}

.quem-somos p {
  margin-top: 1rem;
  font-size: 1.03rem;
}

.quem-somos a {
  color: var(--brand-strong);
  font-weight: 700;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.14em;
}

.quem-somos-social {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.quem-somos-social a {
  text-decoration: none;
  border: 1px solid rgba(4, 79, 105, 0.3);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  background: rgba(11, 110, 138, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.quem-somos-social a:hover {
  transform: translateY(-2px);
  background: rgba(11, 110, 138, 0.16);
}

.cards,
.depoimentos {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  position: relative;
  padding: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(16, 39, 51, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(16, 39, 51, 0.2);
}

.icon-badge {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 1.1rem;
  background: rgba(11, 110, 138, 0.12);
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
}

.prova-social {
  background: var(--surface);
}

.brand-trust {
  margin: 0 auto 1rem;
  max-width: 560px;
  text-align: center;
}

.trust-logo {
  width: min(270px, 78%);
}

.brand-trust p {
  margin-top: 0.35rem;
  font-size: 0.92rem;
}

.depoimento {
  position: relative;
  padding: 2rem 1.8rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(16, 39, 51, 0.07);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.depoimento:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(16, 39, 51, 0.18);
}

.estrelas {
  color: #c98f35;
  letter-spacing: 0.2em;
  margin-bottom: 0.7rem;
}

.depoimento p {
  color: #223b48;
}

.depoimento cite {
  display: block;
  margin-top: 0.9rem;
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
}

.google-reviews-card {
  margin: 2rem auto 0;
  max-width: 760px;
  text-align: center;
  border-radius: 22px;
  padding: 1.5rem 1.2rem;
  background: linear-gradient(145deg, #ffffff, #f7f1e7);
  border: 1px solid rgba(16, 39, 51, 0.11);
  box-shadow: var(--shadow);
}

.google-reviews-kicker {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

.google-reviews-card h3 {
  margin-top: 0.4rem;
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
}

.google-reviews-card p {
  margin-top: 0.55rem;
}

.google-reviews-cta {
  margin-top: 1rem;
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-weight: 700;
  color: #173348;
  background: #f3c35b;
  box-shadow: 0 10px 24px rgba(220, 168, 81, 0.34);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.google-reviews-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(220, 168, 81, 0.4);
}

.formulario {
  background: linear-gradient(180deg, #f4efe7 0%, #f8f5f0 100%);
}

#leadForm {
  max-width: 610px;
  margin: 0 auto;
  border-radius: 26px;
  padding: 2rem;
  border: 1px solid rgba(16, 39, 51, 0.1);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-brand {
  text-align: center;
  margin-bottom: 1.4rem;
}

.form-brand-logo {
  width: min(240px, 70%);
}

.form-group {
  margin-bottom: 1.1rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-group label {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%;
  border: 1px solid #c9d8df;
  border-radius: var(--radius-sm);
  padding: 0.85rem 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(11, 110, 138, 0.14);
}

.checkbox {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.55rem;
}

.checkbox label {
  font-size: 0.93rem;
  color: var(--ink-soft);
}

.checkbox a {
  color: var(--brand-strong);
  font-weight: 600;
}

#submitBtn {
  width: 100%;
  margin-top: 0.6rem;
  border: none;
  border-radius: 999px;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#submitBtn:hover:not(:disabled) {
  transform: translateY(-1px);
}

#submitBtn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.88rem;
  color: var(--error);
  line-height: 1.35;
  white-space: normal;
  word-break: normal;
}

.checkbox .error {
  grid-column: 2 / -1;
  margin-top: 0.2rem;
}

.success-message,
.error-message {
  max-width: 610px;
  margin: 1rem auto 0;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  color: var(--white);
  text-align: center;
}

.success-message {
  background: var(--success);
}

.error-message {
  background: var(--error);
}

.privacidade {
  padding: 7rem 0 4.5rem;
}

.privacidade h1 {
  text-align: center;
  margin-bottom: 2.4rem;
}

.privacidade section {
  margin-bottom: 1.45rem;
}

.privacidade h2 {
  font-size: 1.2rem;
  color: var(--brand-strong);
  margin-bottom: 0.45rem;
}

.privacidade ul {
  margin-left: 1.1rem;
}

.data-atualizacao {
  margin-top: 2rem;
  color: #5b7280;
  font-style: italic;
}

footer {
  background: #102733;
  color: var(--white);
  padding: 2.5rem 0 1.3rem;
}

footer .container {
  position: relative;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  padding-right: 132px;
}

.footer-logo {
  width: min(228px, 68vw);
}

.links {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.8rem;
  text-align: center;
  padding-right: 132px;
}

.copyright p {
  color: rgba(255, 255, 255, 0.84);
}

.footer-cadastur {
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 112px;
  margin: 0;
  padding: 0.26rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-cadastur-title {
  margin: 0 0 0.18rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.52rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-cadastur img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 900px) {
  .cards,
  .depoimentos {
    grid-template-columns: 1fr;
  }

  .quem-somos-shell {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .quem-somos-photo-wrap {
    position: static;
    max-width: 260px;
    margin: 0 auto;
    order: -1;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 20ch;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .header-link {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1120px, calc(100% - 1.4rem));
  }

  .site-header nav {
    min-height: 58px;
    padding: 0.36rem 0;
  }

  .brand-logo-horizontal {
    display: none;
  }

  .brand-logo-symbol {
    width: 28px;
  }

  .brand-logo-symbol,
  .brand-text-mobile {
    display: block;
  }

  .brand-text-mobile {
    font-size: 0.76rem;
  }

  .header-cta {
    font-size: 0.74rem;
    padding: 0.52rem 0.74rem;
  }

  .section {
    padding: 4.4rem 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  .hero-actions-row {
    flex-direction: column;
    gap: 0.65rem;
  }

  .cta-button,
  .cta-secondary {
    width: 100%;
    max-width: none;
    min-height: 52px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .metric {
    min-height: auto;
  }

  .quem-somos-shell {
    border-radius: 18px;
    padding: 1.2rem;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .quem-somos-photo-wrap {
    position: static;
    max-width: 220px;
    margin: 0 auto;
    order: -1;
  }

  .quem-somos p {
    font-size: 0.98rem;
  }

  #leadForm {
    padding: 1.2rem;
    border-radius: 18px;
  }

  .footer-content {
    align-items: flex-start;
    flex-direction: column;
    padding-right: 0;
  }

  .copyright {
    padding-right: 0;
  }

  .footer-cadastur {
    width: 96px;
    right: 0.2rem;
    bottom: 0.2rem;
  }

  .footer-cadastur-title {
    font-size: 0.5rem;
  }
}
