:root {
  --primary: #006490;
  --primary-dark: #004e70;
  --primary-soft: #e6f3f9;
  --secondary: #00a8e8;
  --ink: #10212d;
  --muted: #4a6272;
  --surface: #f4f8fb;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 14px 30px rgba(16, 33, 45, 0.12);
  --container: 1180px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Topbar */
.topbar {
  background: var(--ink);
  color: #d6e5ef;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar__content {
  min-height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar__text {
  margin: 0;
  font-weight: 500;
}

.topbar__actions {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #d6e5ef;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.social-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.social-link__icon {
  width: 1rem;
  height: 1rem;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar__actions a {
  opacity: 0.8;
}

.topbar__actions a:hover {
  opacity: 1;
  color: var(--secondary);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 33, 45, 0.05);
  transition: var(--transition);
}

.navbar__content {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand__logo {
  width: clamp(7.5rem, 13vw, 10rem);
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.nav-links a {
  position: relative;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-5px) scale(1.02);
}

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--ink);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 33, 45, 0.9) 0%, rgba(16, 33, 45, 0.4) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 5rem 0;
  max-width: 800px;
}

.hero__kicker {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.9rem;
}

.hero h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.hero h1:hover {
  transform: translateY(-5px) scale(1.02);
}

.hero__lead {
  margin: 1.5rem 0 2.5rem;
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  cursor: pointer;
  transition: var(--transition);
}

.hero__lead:hover {
  transform: translateY(-5px) scale(1.02);
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 100, 144, 0.3);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 100, 144, 0.4);
}

.btn--ghost {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn--ghost:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--surface {
  background: var(--surface);
}

.section__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-inline: auto;
}

.section__header--left {
  text-align: left;
  margin-inline: 0;
}

.section__kicker {
  margin: 0 0 0.5rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.85rem;
}

.section h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
}

.section h2:hover {
  transform: translateY(-5px);
}

h3 {
  cursor: pointer;
  transition: var(--transition);
}

h3:hover {
  transform: translateY(-5px);
}

/* Client Block */
.client-carousel {
  margin: 2.5rem 0 3rem;
  overflow: hidden;
  position: relative;
}

.client-carousel::before,
.client-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 2;
  pointer-events: none;
}

.client-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.client-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--white) 0%, rgba(255, 255, 255, 0) 100%);
}

.client-carousel__track {
  display: flex;
  width: max-content;
  animation: client-scroll 28s linear infinite;
}

.client-carousel__group {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding-right: 1.75rem;
}

.client-block {
  margin-top: 2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.client-block h3 {
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  color: var(--primary);
}

.client-block p {
  margin: 0 0 2.5rem;
  color: var(--muted);
  max-width: 800px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
}

.client-logo {
  min-width: 320px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.client-logo:hover {
  transform: scale(1.04);
}

.client-logo img {
  max-height: 140px;
  width: auto;
}

@keyframes client-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Support Recurring */
.support-recurring {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

.support-recurring__content {
  text-align: left;
}

.support-recurring__lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.support-recurring__content p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.support-recurring__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 560px;
}

.support-recurring__visual img {
  width: 100%;
  height: 100%;
  max-height: 680px;
  object-fit: contain;
  object-position: right center;
  display: block;
}

.support-recurring__visual {
  background: linear-gradient(180deg, rgba(16, 33, 45, 0.04), rgba(16, 33, 45, 0));
  border-radius: var(--radius);
  padding: 1rem;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.service-card__img {
  height: 160px;
  overflow: hidden;
}

.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

.service-card:hover .service-card__img img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.25rem 1.4rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.service-card--highlight {
  border-top: 3px solid var(--secondary);
}

/* Service Icons */
.service-card__img {
  position: relative;
  background: linear-gradient(135deg, var(--primary-soft) 0%, rgba(230, 243, 249, 0.5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .service-card__img {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.service-icon {
  width: 85px;
  height: 85px;
  color: var(--primary);
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 100, 144, 0.15));
}

.service-card:hover .service-icon {
  color: var(--white);
  transform: scale(1.15) rotate(-5deg);
  filter: drop-shadow(0 4px 12px rgba(0, 100, 144, 0.3));
}

.service-card:nth-child(even):hover .service-icon {
  transform: scale(1.15) rotate(5deg);
}

.service-card__img img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 100, 144, 0.15));
}

.service-card:hover .service-card__img img {
  transform: scale(1.15) rotate(-5deg);
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 100, 144, 0.3));
}

.service-card:nth-child(even):hover .service-card__img img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(0, 100, 144, 0.3));
}

@media (min-width: 1025px) {
.service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Support Recurring */
.support-recurring {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: stretch;
  background: #eeeeee;
}

.support-recurring__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 3.5rem;
  background: #eeeeee;
  border-radius: var(--radius);
  box-shadow: none;
}

.support-recurring .section__header {
  margin-bottom: 1.75rem;
}

.support-recurring .section__header h2 {
  max-width: 24ch;
}

.support-recurring__lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.support-recurring__content p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.support-recurring__visual {
  min-height: 700px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #eeeeee;
  box-shadow: none;
}

.support-recurring__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* About Section */
.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.about__intro {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 3rem;
}

.about__image {
  position: sticky;
  top: 120px;
}

.about__image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 90% center;
  zoom: 1.3;
}

.about__video {
  position: static;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about__video iframe {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 600px;
  border-radius: var(--radius);
}

.about__image-mobile {
  display: none;
  margin-bottom: 2rem;
}

.about__image-mobile img {
  border-radius: var(--radius);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pillars article {
  padding: 1.5rem;
  background: var(--surface);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.pillars article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 100, 144, 0.15);
}

.pillars h3 {
  margin: 0 0 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: var(--primary);
}

.pillars p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.bio {
  background: var(--ink);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.bio__image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.bio__image:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.bio__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bio__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bio h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin: 0 0 0.5rem;
}

.bio h4 {
  font-size: 1.75rem;
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

.bio h4:hover {
  transform: translateY(-5px);
}

.bio p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.bio p:hover {
  transform: translateY(-5px);
}

.bio p:last-child {
  margin-bottom: 0;
}

/* Contact */
.contact {
  background: #072030;
  color: var(--white);
  padding: 5rem 0;
}

.contact__content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.contact p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.contact-list strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.contact-list__instagram {
  margin-top: 1.5rem !important;
}

.contact-list__cta {
  margin-top: 1.5rem !important;
  flex-direction: row;
}

.contact-list__cta .btn {
  width: 100%;
}

.contact-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f09433 0%, #f56505 5%, #fd1d1d 45%, #833ab4 60%, #fd1d1d 90%);
  border-radius: 10px;
  color: var(--white);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(240, 148, 51, 0.3);
}

.contact-instagram-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(240, 148, 51, 0.5), 0 0 20px rgba(240, 148, 51, 0.3);
}

.contact-instagram-link__icon {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

/* Footer */
.footer {
  position: relative;
  background: #0a141a url("../assets/capas/capa 4.png") center center / cover no-repeat;
  color: rgba(255, 255, 255, 0.88);
  padding: 3rem 0;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 20, 26, 0.88) 0%, rgba(10, 20, 26, 0.72) 45%, rgba(10, 20, 26, 0.38) 100%);
  z-index: 0;
}

.footer__content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a:hover {
  color: var(--white);
}

/* Reduce spacing between demanda and recorrente sections */
#atendimentos-demanda {
  padding-bottom: 2rem !important;
}

#suporte-recorrente {
  padding-top: 2rem !important;
}

/* Estilização exclusiva para seção Suporte Recorrente */
#suporte-recorrente .support-recurring {
  grid-template-columns: 0.75fr 1.25fr;
  gap: 2.5rem;
}

#suporte-recorrente .support-recurring__visual {
  min-height: 950px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: visible;
  padding: 0;
}

#suporte-recorrente .support-recurring__visual img {
  width: 130%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-recurring {
    grid-template-columns: 1fr;
  }

  .support-recurring__content {
    padding: 3rem;
  }

  .support-recurring__visual {
    min-height: 420px;
  }

  /* Ajustes responsivos específicos para Suporte Recorrente */
  #suporte-recorrente .support-recurring {
    grid-template-columns: 1fr;
  }

  #suporte-recorrente .support-recurring__visual {
    min-height: 600px;
  }
  
  .contact__content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .section {
    padding: 3rem 0;
  }

  .support-recurring {
    gap: 1.5rem;
  }

  .support-recurring__content {
    padding: 2rem;
  }

  .support-recurring__visual {
    min-height: 320px;
  }

  /* Ajustes responsivos específicos para Suporte Recorrente em telas pequenas */
  #suporte-recorrente .support-recurring__visual {
    min-height: 450px;
  }

  .service-card__img {
    height: 200px;
  }

  .service-card:nth-child(3n+2) {
    transform: none;
  }

  .service-card:nth-child(3n+2) .service-card__img {
    height: 200px;
  }

  .service-card h3 {
    font-size: 0.95rem;
  }

  .service-card p {
    font-size: 0.8rem;
  }

  .client-carousel {
    margin: 2rem 0 2.5rem;
  }

  .client-carousel::before,
  .client-carousel::after {
    width: 2rem;
  }

  .client-carousel__track {
    animation-duration: 20s;
  }

  .client-carousel__group {
    gap: 1rem;
    padding-right: 1rem;
  }

  .client-logo {
    min-width: 240px;
    width: 320px;
    height: 140px;
  }

  .client-logo img {
    max-height: 120px;
  }

  .brand__logo {
    width: clamp(7rem, 32vw, 9rem);
  }

  .topbar__content {
    gap: 0.75rem;
  }

  .topbar__actions {
    gap: 0.6rem;
  }

  .topbar__text {
    font-size: 0.8rem;
  }

  .social-link {
    width: 1.85rem;
    height: 1.85rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .nav-links.is-open {
    height: calc(100vh - 68px);
    padding: 2rem 0;
  }

  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
  }

  .nav-links.is-open li {
    opacity: 1;
    transform: translateY(0);
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .about {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    gap: 2rem;
  }

  .about::before {
    display: none;
  }

  .about__image {
    display: block;
    width: 100%;
    margin: 0;
  }

  .about__video iframe {
    height: 550px !important;
    max-width: 100%;
  }

  .about__image-mobile {
    display: none;
  }

  .about__info {
    max-width: none;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    box-shadow: none;
  }

  .about__intro {
    font-size: 1rem;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .pillars article {
    padding: 1.25rem;
  }

  .pillars h3 {
    font-size: 1rem;
  }

  .pillars p {
    font-size: 0.85rem;
  }

  .bio {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .bio__image {
    min-height: 280px;
    border-radius: 10px;
  }

  .bio h3 {
    margin-bottom: 0.3rem;
  }

  .bio h4 {
    font-size: 1.5rem;
  }

  .bio p {
    font-size: 0.9rem;
  }

  .section__header {
    margin-bottom: 2.5rem;
  }

  .section h2 {
    font-size: 1.75rem;
  }

  .contact {
    padding: 3rem 0;
  }

  .contact__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact h2 {
    font-size: 1.75rem;
  }

  .contact p {
    font-size: 1rem;
  }

  .contact-list {
    margin: 1.5rem 0 0;
  }

  .contact-list li {
    margin-bottom: 0.75rem;
  }

  .contact-instagram-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }

  .contact-instagram-link__icon {
    width: 20px;
    height: 20px;
  }

  .footer {
    padding: 2rem 0;
  }

  .footer__content {
    gap: 0.5rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .topbar {
    display: none;
  }

  .container {
    width: min(var(--container), calc(100% - 1.5rem));
  }

  .section {
    padding: 2.5rem 0;
  }

  .section__header {
    margin-bottom: 2rem;
  }

  .section__kicker {
    font-size: 0.75rem;
  }

  .section h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .hero {
    min-height: 65vh;
  }

  .hero__content {
    padding: 3rem 0;
  }

  .hero h1 {
    font-size: 1.0rem;
    line-height: 1.2;
  }

  .hero__lead {
    font-size: 0.95rem;
    margin: 1rem 0 1.5rem;
  }

  .hero__actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .topbar__text {
    font-size: 0.65rem;
  }

  .social-link {
    width: 1.6rem;
    height: 1.6rem;
  }

  .social-link__icon {
    width: 0.85rem;
    height: 0.85rem;
  }

  .brand__logo {
    width: 6.5rem;
  }

  .navbar__content {
    min-height: 60px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    border-radius: 8px;
  }

  .service-card__img {
    height: 160px;
  }

  .service-card h3 {
    font-size: 0.9rem;
  }

  .service-card p {
    font-size: 0.75rem;
    line-height: 1.4;
  }

  .service-card__body {
    padding: 1rem;
  }

  .client-carousel::before,
  .client-carousel::after {
    width: 1rem;
  }

  .client-carousel {
    margin: 1.5rem 0 2rem;
  }

  .client-carousel__group {
    gap: 0.75rem;
    padding-right: 0.75rem;
  }

  .client-logo {
    min-width: 180px;
    width: 240px;
    height: 120px;
  }

  .client-logo img {
    max-height: 100px;
  }

  .client-carousel__track {
    animation-duration: 18s;
  }

  .about__intro {
    font-size: 0.95rem;
    text-align: left;
    line-height: 1.6;
  }

  .about__info {
    width: 100%;
  }

  .section__header--left {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  .section__header--left h2 {
    text-align: left;
  }

  .section__header--left .section__kicker {
    text-align: left;
  }

  .about__image {
    display: block;
    width: 100%;
    margin-top: 2rem;
  }

  .about__video iframe {
    height: 500px !important;
    max-width: 100%;
  }

  .about__image-mobile {
    display: none;
  }

  .pillars {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .pillars article {
    padding: 1rem;
  }

  .pillars h3 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .pillars p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .bio {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 10px;
  }

  .bio__image {
    min-height: 240px;
  }

  .bio h3 {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }

  .bio h4 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem;
  }

  .bio p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .contact {
    padding: 2.5rem 0;
  }

  .contact__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .contact p {
    font-size: 0.95rem;
  }

  .section__kicker {
    margin-bottom: 0.3rem;
  }

  .contact-list {
    margin: 1rem 0 0;
  }

  .contact-list li {
    margin-bottom: 0.6rem;
  }

  .contact-list strong {
    font-size: 0.75rem;
  }

  .contact-list__instagram {
    margin-top: 1rem !important;
  }

  .contact-list__cta {
    margin-top: 1rem !important;
  }

  .contact-instagram-link {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
    gap: 0.5rem;
  }

  .contact-instagram-link__icon {
    width: 18px;
    height: 18px;
  }

  .footer {
    padding: 1.5rem 0;
  }

  .footer__content {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-carousel__track {
    animation: none;
  }
}
