:root {
  --green: #77b82a;
  --green-dark: #4d7f1c;
  --green-soft: #eff7e6;
  --brown: #7b4b40;
  --brown-dark: #4b2d27;
  --brown-soft: #f6efed;
  --ink: #202523;
  --muted: #68706c;
  --line: #dfe5df;
  --paper: #ffffff;
  --canvas: #f7f8f5;
  --shadow: 0 24px 70px rgba(37, 50, 41, 0.13);
  --shadow-soft: 0 14px 38px rgba(37, 50, 41, 0.09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(119, 184, 42, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--brown-dark);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--brown-dark);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 8vw, 7.5rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

.button-primary {
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 12px 30px rgba(77, 127, 28, 0.25);
}

.button-primary:hover {
  background: #3f6c16;
  box-shadow: 0 16px 35px rgba(77, 127, 28, 0.32);
}

.button-secondary {
  color: var(--brown-dark);
  border-color: rgba(75, 45, 39, 0.18);
  background: rgba(255, 255, 255, 0.75);
}

.button-secondary:hover {
  border-color: var(--brown);
  background: #fff;
}

.button-light {
  color: var(--brown-dark);
  background: #fff;
  box-shadow: 0 12px 30px rgba(45, 28, 24, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(75, 45, 39, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

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

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

.brand-mark {
  display: grid;
  width: 56px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  color: var(--brown-dark);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #4f5652;
  font-size: 0.9rem;
  font-weight: 760;
  transition: color 160ms ease, background-color 160ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--brown-dark);
  background: var(--brown-soft);
}

.main-nav .nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--green-dark);
}

.main-nav .nav-cta:hover {
  color: #fff;
  background: #3f6c16;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--brown-dark);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 735px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(119, 184, 42, 0.14), transparent 27%),
    radial-gradient(circle at 88% 30%, rgba(123, 75, 64, 0.12), transparent 25%),
    linear-gradient(135deg, #fbfcf9 0%, #f4f7ef 52%, #faf6f4 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(75, 45, 39, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(75, 45, 39, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 90%);
}

.hero-shape {
  position: absolute;
  z-index: -1;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(119, 184, 42, 0.2);
  border-radius: 78px;
  transform: rotate(45deg);
}

.hero-shape-one {
  top: -190px;
  right: 9%;
}

.hero-shape-two {
  bottom: -230px;
  left: 4%;
  border-color: rgba(123, 75, 64, 0.15);
}

.hero-grid {
  display: grid;
  min-height: 735px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 72px;
  padding-top: 72px;
  padding-bottom: 92px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: #535b57;
  font-size: clamp(1.14rem, 1.8vw, 1.42rem);
}

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

.hero-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-contact-row span {
  position: relative;
  padding-left: 17px;
}

.hero-contact-row span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  transform: translateY(-50%);
}

.hero-visual {
  position: relative;
  min-height: 480px;
}

.logo-card {
  position: absolute;
  inset: 30px 18px 30px 26px;
  display: grid;
  align-content: center;
  padding: 48px;
  overflow: hidden;
  border: 1px solid rgba(123, 75, 64, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.logo-card::before,
.logo-card::after {
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 48px;
  content: "";
  transform: rotate(45deg);
}

.logo-card::before {
  top: -115px;
  right: -80px;
  background: rgba(119, 184, 42, 0.15);
}

.logo-card::after {
  bottom: -115px;
  left: -80px;
  background: rgba(123, 75, 64, 0.12);
}

.logo-frame {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 250px;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
}

.logo-frame img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.logo-card-caption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.logo-card-caption p {
  margin: 0;
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.caption-line {
  width: 42px;
  height: 2px;
  background: var(--green);
}

.floating-tag {
  position: absolute;
  z-index: 3;
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  color: var(--brown-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  font-size: 0.82rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.tag-one {
  top: 0;
  left: 0;
}

.tag-two {
  right: 0;
  bottom: 7px;
}

.intro-section {
  position: relative;
  z-index: 2;
  margin-top: -42px;
}

.intro-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
  padding: 44px 48px;
  border: 1px solid rgba(123, 75, 64, 0.1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.intro-panel h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(1.9rem, 3.7vw, 3.2rem);
}

.intro-panel > p {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  align-items: end;
  gap: 40px;
  margin-bottom: 50px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--muted);
}

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-group {
  position: relative;
  display: flex;
  min-height: 440px;
  flex-direction: column;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(75, 45, 39, 0.1);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-group::before {
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(119, 184, 42, 0.2);
  border-radius: 46px;
  content: "";
  transform: rotate(45deg);
}

.service-group-fisicas::before {
  border-color: rgba(123, 75, 64, 0.18);
}

.service-group-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}

.service-number {
  color: rgba(75, 45, 39, 0.26);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 20px;
  color: var(--green-dark);
  background: var(--green-soft);
}

.service-group-fisicas .service-icon {
  color: var(--brown);
  background: var(--brown-soft);
}

.service-icon svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.service-list {
  display: grid;
  gap: 12px;
  margin: 8px 0 34px;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding: 15px 18px 15px 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #48504c;
  background: rgba(247, 248, 245, 0.7);
  font-weight: 680;
}

.service-list li::before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--green);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.service-group-fisicas .service-list li::before {
  border-color: var(--brown);
}

.text-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--brown-dark);
  font-weight: 850;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.specialties {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--brown-dark);
}

.specialties::before {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
}

.specialties .container {
  position: relative;
  z-index: 1;
}

.section-heading-light h2,
.section-heading-light .eyebrow {
  color: #fff;
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.67);
}

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

.specialty-card {
  grid-column: span 2;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.specialty-card:nth-child(4),
.specialty-card:nth-child(5) {
  grid-column: span 3;
}

.specialty-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
}

.specialty-card-accent {
  background: rgba(119, 184, 42, 0.14);
}

.specialty-index {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.specialty-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 34px 0 28px;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.specialty-symbol svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.specialty-card h3 {
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.specialty-card a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 72px;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.contact-cards {
  display: grid;
  gap: 14px;
}

.contact-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--canvas);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-card:hover {
  transform: translateX(4px);
  border-color: rgba(119, 184, 42, 0.65);
  box-shadow: var(--shadow-soft);
}

.contact-card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 17px;
  color: var(--green-dark);
  background: var(--green-soft);
}

.contact-card-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.contact-card span:nth-child(2) {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.contact-card small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: var(--brown-dark);
  font-size: 1rem;
}

.contact-card b {
  color: var(--green-dark);
  font-size: 1.1rem;
}

.contact-card-address {
  align-items: start;
}

.final-cta {
  padding: 0 0 80px;
  background: #fff;
}

.final-cta-inner {
  position: relative;
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  overflow: hidden;
  padding: 50px;
  border-radius: var(--radius-xl);
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), #6da923 58%, #8fc73e);
  box-shadow: 0 28px 70px rgba(77, 127, 28, 0.24);
}

.final-cta-inner::before,
.final-cta-inner::after {
  position: absolute;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 55px;
  content: "";
  transform: rotate(45deg);
}

.final-cta-inner::before {
  top: -120px;
  right: 14%;
}

.final-cta-inner::after {
  right: -80px;
  bottom: -130px;
}

.final-cta-inner > * {
  position: relative;
  z-index: 1;
}

.final-cta .eyebrow,
.final-cta h2 {
  color: #fff;
}

.final-cta h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.site-footer {
  padding: 35px 0;
  color: rgba(255,255,255,.72);
  background: #251713;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 72px;
  height: 52px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.footer-brand div {
  display: grid;
  gap: 1px;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand span {
  font-size: 0.78rem;
}

.footer-data {
  display: grid;
  gap: 3px;
  text-align: right;
  font-size: 0.86rem;
}

.footer-data a:hover {
  color: #fff;
}

.copyright {
  margin: 0;
  font-size: 0.82rem;
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 3px solid rgba(255,255,255,.88);
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 35px rgba(18, 117, 55, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(18, 117, 55, 0.4);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.reveal {
  opacity: 1;
  transform: none;
  animation: page-enter 520ms ease both;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

  .main-nav {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 5px;
    max-height: calc(100vh - 98px);
    padding: 18px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 13px 15px;
    border-radius: 13px;
  }

  .main-nav .nav-cta {
    margin: 6px 0 0;
    text-align: center;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 80px;
  }

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

  .hero-visual {
    width: min(100%, 620px);
    min-height: 440px;
    margin-inline: auto;
  }

  .intro-panel,
  .section-heading,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-panel,
  .section-heading {
    gap: 24px;
  }

  .contact-grid {
    gap: 48px;
  }

  .contact-copy {
    position: static;
  }

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

  .specialty-card,
  .specialty-card:nth-child(4),
  .specialty-card:nth-child(5) {
    grid-column: auto;
  }

  .specialty-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .brand-copy small {
    display: none;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 62px;
    padding-bottom: 102px;
  }

  h1 {
    font-size: clamp(3.25rem, 16vw, 5.25rem);
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-contact-row {
    display: grid;
    gap: 8px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .logo-card {
    inset: 18px 8px 18px 8px;
    padding: 26px;
  }

  .logo-frame {
    min-height: 210px;
  }

  .floating-tag {
    padding: 10px 13px;
    font-size: 0.72rem;
  }

  .tag-one {
    left: -2px;
  }

  .tag-two {
    right: -2px;
  }

  .intro-panel {
    padding: 30px 24px;
  }

  .service-columns,
  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .service-group {
    min-height: auto;
    padding: 28px 24px;
  }

  .specialty-card,
  .specialty-card:last-child {
    grid-column: auto;
  }

  .specialty-card {
    min-height: 260px;
  }

  .contact-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contact-card b {
    display: none;
  }

  .final-cta {
    padding-bottom: 56px;
  }

  .final-cta-inner {
    display: grid;
    padding: 38px 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-data {
    text-align: left;
  }

  .copyright {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 420px) {
  .brand-mark {
    width: 49px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .hero-visual {
    min-height: 325px;
  }

  .logo-card {
    padding: 21px;
  }

  .logo-frame {
    min-height: 185px;
  }

  .logo-card-caption p {
    font-size: 0.7rem;
  }

  .contact-card {
    padding: 17px;
  }

  .contact-card-icon {
    width: 48px;
    height: 48px;
  }
}
