:root {
  --color-brand: #244f6d;
  --color-brand-dark: #1a3f5a;
  --color-brand-accent: #0797b7;
  --color-white: #ffffff;
  --color-surface: #f5f7f8;
  --color-border: #e3e7ea;
  --color-muted: #6d747a;
  --color-text: #1f2933;
  --color-success: #2e7d5b;
  --shadow-soft: 0 18px 50px rgba(31, 41, 51, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--color-white);
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h2,
h3 {
  margin-top: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(227, 231, 234, 0.72);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 10px 28px rgba(31, 41, 51, 0.06);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 186px;
  min-width: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a {
  color: #37424c;
}

.main-nav a:hover {
  color: var(--color-brand);
}

.main-nav a[aria-current="page"] {
  color: var(--color-brand);
  font-weight: 800;
}

.nav-cta,
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.2;
}

.nav-cta {
  padding: 0 18px;
  color: var(--color-white) !important;
  background: var(--color-brand);
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--color-brand-dark);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: var(--color-brand);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.section {
  padding: 88px 0;
}

.section-tight {
  padding: 64px 0;
}

.alt {
  background: var(--color-surface);
}

.hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(245, 247, 248, 0.98) 0%, rgba(245, 247, 248, 0.92) 43%, rgba(245, 247, 248, 0.42) 76%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    url("assets/hero-condominio.png") center right / cover no-repeat;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.62fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  text-align: left;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-brand-accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  color: var(--color-brand);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-title {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--color-brand);
  line-height: 1.12;
  letter-spacing: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.hero-title span {
  display: block;
  color: var(--color-brand-accent);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3.8vw, 3rem);
}

h3 {
  margin-bottom: 10px;
  color: var(--color-brand-dark);
  line-height: 1.25;
  font-size: 1.08rem;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 32px;
  color: #4a5560;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.btn {
  padding: 14px 22px;
}

.btn-primary {
  color: var(--color-white);
  background: var(--color-brand);
}

.btn-secondary {
  color: var(--color-brand);
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-brand);
}

.btn-secondary.light {
  color: var(--color-white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-diagnostic {
  align-self: end;
  max-width: 430px;
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow-soft);
}

.diagnostic-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(227, 231, 234, 0.84);
}

.diagnostic-header span,
.diagnostic-score span,
.diagnostic-footer small {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.diagnostic-header strong,
.diagnostic-score strong {
  display: block;
  color: var(--color-brand);
  line-height: 1.25;
}

.diagnostic-score {
  margin-bottom: 18px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--color-white);
  background: var(--color-brand);
}

.diagnostic-score span,
.diagnostic-score strong {
  color: var(--color-white);
}

.diagnostic-score span {
  opacity: 0.78;
}

.diagnostic-list {
  display: grid;
  gap: 12px;
}

.diagnostic-list p {
  display: flex;
  gap: 10px;
  margin: 0;
  color: #3d4852;
  font-size: 0.93rem;
  line-height: 1.45;
}

.diagnostic-list span {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-brand-accent);
}

.diagnostic-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(227, 231, 234, 0.84);
}

.diagnostic-footer a {
  color: var(--color-brand);
  font-weight: 800;
  white-space: nowrap;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.split > p,
.choose p {
  color: #4a5560;
  font-size: 1.05rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.with-action {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--color-brand);
  font-weight: 800;
  white-space: nowrap;
}

.cards {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.plan-card,
.service-grid article {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.card {
  padding: 24px;
}

.card p,
.plan-card p,
.service-grid p {
  margin-bottom: 0;
  color: #53606a;
}

.card-icon {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 999px;
  color: var(--color-brand);
  background: rgba(7, 151, 183, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
}

.plan-card {
  min-height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border-color: rgba(7, 151, 183, 0.45);
  box-shadow: 0 18px 40px rgba(7, 151, 183, 0.12);
}

.plan-card ul {
  margin: 22px 0;
  padding-left: 18px;
  color: #4c5963;
}

.plan-card li + li {
  margin-top: 8px;
}

.plan-message {
  margin: 0 0 18px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  color: var(--color-brand-dark) !important;
  font-weight: 800;
  line-height: 1.35;
}

.plan-card a {
  margin-top: auto;
  color: var(--color-brand);
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-border);
}

.service-grid article {
  padding: 24px;
  border: 0;
  border-radius: 0;
}

.sindicatura-offer {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 48%, rgba(245, 247, 248, 0.68) 100%),
    url("assets/hero-condominio.png") center right / cover no-repeat;
}

.sindicatura-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 52px;
  align-items: center;
}

.sindicatura-grid > div:first-child p:not(.eyebrow) {
  max-width: 670px;
  margin-bottom: 28px;
  color: #4a5560;
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(227, 231, 234, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.feature-list p {
  display: flex;
  gap: 12px;
  margin: 0;
  color: #3d4852;
  line-height: 1.45;
}

.feature-list span {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-brand-accent);
}

.choose {
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.check-list span {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-success);
}

.sindicos {
  padding-top: 0;
}

.sindicos-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 42px;
  border-radius: var(--radius);
  color: var(--color-white);
  background: var(--color-brand);
}

.sindicos-box h2,
.sindicos-box .eyebrow {
  color: var(--color-white);
}

.sindicos-box p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.sindicos-box .btn-primary {
  color: var(--color-brand);
  background: var(--color-white);
  white-space: nowrap;
}

.sindicos-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.btn-outline-light {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: transparent;
  white-space: nowrap;
}

.btn-outline-light:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
}

.final-cta {
  color: var(--color-white);
  background:
    linear-gradient(rgba(26, 63, 90, 0.9), rgba(26, 63, 90, 0.9)),
    url("assets/hero-condominio.png") center / cover no-repeat;
}

.final-cta-inner {
  max-width: 760px;
  text-align: center;
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--color-white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.final-cta .hero-actions {
  justify-content: center;
}

.final-cta .btn-primary {
  color: var(--color-brand);
  background: var(--color-white);
}

.page-hero {
  padding: 84px 0 70px;
  background:
    linear-gradient(90deg, rgba(245, 247, 248, 0.98) 0%, rgba(245, 247, 248, 0.9) 58%, rgba(245, 247, 248, 0.62) 100%),
    url("assets/hero-condominio.png") center right / cover no-repeat;
}

.page-hero-inner {
  max-width: none;
  text-align: left;
}

.page-hero-inner > h2,
.page-hero p:not(.eyebrow) {
  max-width: 760px;
}

.page-hero p:not(.eyebrow) {
  color: #4a5560;
  font-size: 1.12rem;
}

.legal-hero {
  padding-bottom: 58px;
}

.legal-updated {
  display: inline-flex;
  margin: 8px 0 0;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-brand-dark) !important;
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem !important;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.legal-summary h3 {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.legal-summary a {
  padding: 7px 0;
  color: #4a5560;
  font-size: 0.92rem;
  font-weight: 700;
}

.legal-summary a:hover {
  color: var(--color-brand);
}

.legal-content {
  max-width: 820px;
}

.legal-content > p:first-child {
  color: var(--color-brand-dark);
  font-size: 1.08rem;
  font-weight: 700;
}

.legal-content section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--color-border);
  scroll-margin-top: 104px;
}

.legal-content p,
.legal-content li {
  color: #4a5560;
}

.legal-content ul {
  margin: 14px 0 20px;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-contact {
  padding: 28px;
  border: 1px solid rgba(7, 151, 183, 0.28) !important;
  border-radius: var(--radius);
  background: var(--color-surface);
}

.legal-contact address {
  display: grid;
  gap: 8px;
  color: #4a5560;
  font-style: normal;
}

.legal-contact a {
  color: var(--color-brand);
  font-weight: 800;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-card {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.content-card p {
  margin-bottom: 0;
  color: #53606a;
}

.detail-band {
  color: var(--color-white);
  background: var(--color-brand);
}

.detail-band-grid {
  align-items: center;
}

.detail-band h2,
.detail-band .eyebrow {
  color: var(--color-white);
}

.detail-band p {
  color: rgba(255, 255, 255, 0.84);
}

.detail-band-copy {
  display: grid;
  gap: 18px;
}

.detail-band-copy p {
  margin-bottom: 0;
}

.detail-image {
  width: min(100%, 430px);
  margin: 0 0 0 auto;
}

.detail-image img {
  width: 100%;
  display: block;
  height: clamp(320px, 34vw, 430px);
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(13, 37, 53, 0.28);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 44px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
}

.contact-panel p {
  color: #4a5560;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--color-brand-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font: inherit;
  background: var(--color-white);
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #4a5560;
  font-size: 0.9rem;
  font-weight: 600;
}

.consent-field input {
  width: auto;
  min-height: 0;
  margin-top: 4px;
  flex: 0 0 auto;
}

.consent-field a {
  color: var(--color-brand);
  font-weight: 800;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-success {
  color: #0d5132;
  background: #dff3e8;
}

.form-status.is-error {
  color: #842029;
  background: #f8d7da;
}

.site-footer {
  padding: 56px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #132f42;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

.footer-brand {
  width: 210px;
  max-width: 100%;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--color-white);
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.site-footer .footer-social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #132f42;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus-visible {
  color: var(--color-brand);
  background: var(--color-white);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--color-white);
  font-size: 0.92rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.copyright-bar {
  color: rgba(255, 255, 255, 0.52);
  background: #0d2535;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.copyright-inner p {
  margin: 0;
  font-size: 0.8rem;
}

.copyright-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.anexa-credit {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.anexa-credit img {
  display: block;
  width: 100%;
  height: auto;
}

.back-to-top {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  font-weight: 800;
}

.back-to-top:hover {
  background: var(--color-brand-accent);
  border-color: var(--color-brand-accent);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(380px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(227, 231, 234, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-copy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--color-brand-dark);
  line-height: 1.25;
}

.cookie-banner-copy p {
  margin-bottom: 14px;
  color: #4a5560;
  font-size: 0.9rem;
  line-height: 1.45;
}

.cookie-banner-copy a {
  color: var(--color-brand);
  font-weight: 800;
}

.cookie-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-btn {
  min-height: 38px;
  padding: 10px 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
}

.cookie-btn-primary {
  color: var(--color-white);
  background: var(--color-brand);
}

.cookie-btn-primary:hover {
  background: var(--color-brand-dark);
}

.cookie-btn-secondary {
  color: var(--color-brand);
  background: var(--color-white);
  border-color: var(--color-border);
}

.cookie-btn-secondary:hover {
  border-color: var(--color-brand);
}

@media (max-width: 1023px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
  }

  .main-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .hero-grid,
  .split,
  .sindicatura-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero-diagnostic {
    max-width: 520px;
    margin-right: auto;
    margin-left: 0;
  }

  .detail-image {
    width: min(100%, 520px);
    margin-left: 0;
  }

  .detail-image img {
    height: 360px;
  }

  .grid-4,
  .content-grid,
  .contact-layout,
  .legal-layout,
  .service-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-summary {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    width: 146px;
  }

  .section {
    padding: 58px 0;
  }

  .section-tight {
    padding: 44px 0;
  }

  .hero {
    min-height: 0;
    padding-top: 54px;
    background:
      linear-gradient(180deg, rgba(245, 247, 248, 0.98) 0%, rgba(245, 247, 248, 0.94) 54%, rgba(245, 247, 248, 0.7) 100%),
      url("assets/hero-condominio.png") center right / cover no-repeat;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .hero-actions,
  .sindicos-box,
  .sindicos-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-diagnostic {
    width: 100%;
    padding: 20px;
  }

  .grid-3,
  .grid-4,
  .content-grid,
  .contact-layout,
  .legal-layout,
  .form-grid,
  .service-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.with-action {
    display: block;
  }

  .text-link {
    display: inline-flex;
    margin-top: 8px;
  }

  .sindicos-box {
    padding: 28px;
  }

  .final-cta-inner {
    text-align: left;
  }

  .final-cta .hero-actions {
    justify-content: stretch;
  }

  .detail-image img {
    height: 320px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
  }

  .cookie-banner-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .cookie-btn {
    width: 100%;
  }
}
