/* =================================
   Reset e Variáveis Globais
   Anywhere Service Consultoria
   Atendimento: Alagoas e Pernambuco
================================= */

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

:root {
  /* Cores principais da marca */
  --primary-blue: #1e2635;
  --primary-orange: #f26c29;
  --primary-green: #4caf50;

  /* Cores de background e texto */
  --light-bg: #ffffff;
  --dark-text: #333333;
  --mid-text: #666666;
  --light-text: #ffffff;
  --border-color: #e5e5e5;

  /* Cores de acessibilidade com melhor contraste */
  --text-on-blue: #ffffff;
  --text-on-orange: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.9);

  /* Tamanhos mínimos para acessibilidade WCAG */
  --min-font-size: 0.75rem; /* 12px mínimo */
  --min-touch-target: 2.75rem; /* 44px mínimo */

  /* Focus styles para navegação por teclado */
  --focus-color: #0066cc;
  --focus-outline: 0.1875rem solid var(--focus-color);
  --focus-offset: 0.125rem;
}

/* =================================
   Animações
================================= */

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Respeitar preferências de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =================================
   Estilos Base - Mobile First (320px)
================================= */

html {
  font-size: 16px;
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-text);
  min-height: 100vh;
  display: flex;
  padding: 1.25rem 0;
  flex-direction: column;
  align-items: center;
  position: relative;
  line-height: 1.6;
  touch-action: manipulation;
}

/* Focus visível para navegação por teclado */
:focus-visible {
  outline: var(--focus-outline);
  outline-offset: var(--focus-offset);
  border-radius: 0.25rem;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Melhora CLS para imagens */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

img[width][height] {
  aspect-ratio: attr(width) / attr(height);
}

.container {
  max-width: calc(100% - 1rem);
  width: 100%;
  background-color: white;
  border-radius: 0.5rem;
  padding: 0 0 1rem 0;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  border: 0.0625rem solid var(--border-color);
  overflow: hidden;
  animation: fadeDown 1s ease forwards;
  margin: 0 auto;
}

/* =================================
   Header - Mobile First (320px)
================================= */

.header {
  background-color: var(--primary-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 1rem;
  color: white;
}

.header__logo {
  border: 0.1875rem solid #fff;
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  margin-right: 0;
  margin-bottom: 0.625rem;
  position: relative;
  background-image: url("../img/logo.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--primary-blue);
}

.header__icon {
  position: absolute;
  bottom: -0.375rem;
  right: -0.375rem;
  border-radius: 50%;
  border: 0.125rem solid white;
  width: 1.125rem;
  height: 1.125rem;
  background-color: var(--primary-green);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0.1875rem 0.5rem rgba(0, 0, 0, 0.2);
}

.header__icon-img {
  width: 0.75rem;
  height: 0.75rem;
  vertical-align: middle;
}

.header__title {
  color: var(--text-on-blue);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

.header__title-highlight {
  color: var(--primary-orange);
  font-size: 0.75rem;
  text-transform: capitalize;
}

.header__subtitle {
  color: var(--text-on-blue);
  font-size: 0.625rem;
  position: relative;
  margin: 0 0 0.375rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  font-weight: 500;
}

.header__subtitle::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("../icons/summer_travel_holidays_vacation_suitcase_luggage_icon_148873.svg");
  display: inline-block;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.header__description {
  color: var(--text-muted);
  font-size: 0.625rem;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0 0.5rem;
  line-height: 1.4;
}

.header__description strong {
  color: var(--text-on-blue);
  font-weight: 600;
}

.header__social {
  display: flex;
  margin-top: 0.875rem;
  gap: 0.375rem;
  justify-content: center;
  align-items: center;
}

.header__social a {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  padding: 0.25rem;
}

.header__social a:hover,
.header__social a:focus-visible {
  background-color: rgba(255, 255, 255, 0.1);
}

.header__social-icon {
  width: 1rem;
  height: 1rem;
  filter: brightness(0) invert(1);
  transition: all 0.2s ease;
  vertical-align: middle;
}

.header__social a:hover .header__social-icon {
  filter: brightness(1) invert(0.5) sepia(1) saturate(5) hue-rotate(-20deg);
  transform: translateY(-0.125rem);
}

/* =================================
   Serviços - Mobile First (320px)
================================= */

.services__list {
  display: flex;
  list-style-type: none;
  gap: 0.1875rem;
  color: var(--primary-green);
  padding: 0.875rem 0.25rem 0;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.services__item {
  background-color: rgba(76, 175, 80, 0.1);
  padding: 0.1875rem 0.3125rem;
  border-radius: 1.25rem;
  font-size: 0.625rem;
  font-weight: 500;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-height: 1.75rem;
  display: flex;
  align-items: center;
}

.services__item:hover,
.services__item:focus-within {
  background-color: rgba(76, 175, 80, 0.2);
  transform: translateY(-1px);
}

/* =================================
   Cards de Consultoria - Mobile First (320px)
================================= */

.consulting__list {
  list-style: none;
}

.consulting__card {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: 0.5rem 0.75rem;
  border: 0.0625rem solid var(--border-color);
  border-radius: 0.625rem;
  padding: 0.75rem 0.875rem;
  transition: all 0.3s ease;
  font-weight: normal;
  font-size: 0.75rem;
  position: relative;
  overflow: hidden;
  min-height: 3rem;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

.consulting__icon {
  width: 0.875rem;
  height: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto 0;
  flex-shrink: 0;
}

.consulting__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}

.consulting__contact-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.consulting__card--contact {
  justify-content: space-between;
  background-color: rgba(102, 102, 102, 0.1);
  margin-top: 1rem;
  cursor: default;
}

.consulting__whatsapp-btn {
  padding: 0.5rem 0.75rem;
  padding-left: 1.5rem;
  border-radius: 0.3125rem;
  background-color: var(--primary-green);
  border: none;
  font-size: 0.625rem;
  position: relative;
  transition: background-color 0.3s ease;
  cursor: pointer;
  min-height: 2rem;
  display: flex;
  align-items: center;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  color: var(--text-on-orange);
  font-weight: 500;
}

.consulting__whatsapp-btn:hover,
.consulting__whatsapp-btn:focus-visible {
  background-color: rgb(64, 150, 67);
  transform: translateY(-1px);
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.15);
}

.consulting__whatsapp-btn::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-image: url("../icons/message-circle-2.svg");
  background-size: cover;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0.375rem;
  transform: translateY(-50%);
}

.consulting__phone-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.consulting__phone-link:hover,
.consulting__phone-link:focus-visible {
  color: var(--primary-green);
  text-decoration: underline;
}

.consulting__card--orange {
  background-color: var(--primary-orange);
  border: 0.0625rem solid var(--primary-orange);
  color: var(--text-on-orange);
}

.consulting__card--green {
  background-color: var(--light-bg);
  border: 0.0625rem solid var(--border-color);
  color: var(--dark-text);
}

.consulting__card--orange::before,
.consulting__card--green::before {
  content: "";
  position: absolute;
  width: 0.1875rem;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}

.consulting__card--orange::before {
  background-color: var(--light-bg);
}

.consulting__card--green::before {
  background-color: var(--primary-green);
}

.consulting__card--orange:hover,
.consulting__card--green:hover,
.consulting__card--orange:focus-visible,
.consulting__card--green:focus-visible {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.08);
}

.consulting__card--orange:hover,
.consulting__card--orange:focus-visible {
  background-color: #e05a1c;
}

.consulting__card--green:hover,
.consulting__card--green:focus-visible {
  border-color: rgba(76, 175, 80, 1);
  background-color: rgba(76, 175, 80, 0.1);
}

.consulting__card:hover::before,
.consulting__card:focus-visible::before {
  width: 0.3125rem;
}

.consulting__title {
  font-size: 0.75rem;
  font-weight: 500;
}

.consulting__title--contact {
  font-size: 0.625rem;
  color: var(--mid-text);
  font-weight: normal;
}

.consulting__subtitle {
  font-size: 0.625rem;
  font-weight: normal;
  color: var(--mid-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
}

.consulting__subtitle--contact {
  font-size: 0.75rem;
  color: var(--dark-text);
  font-weight: normal;
}

.consulting__subtitle--orange {
  font-weight: normal;
  font-size: 0.625rem;
  color: var(--text-muted);
}

/* =================================
   Footer - Mobile First (320px)
================================= */

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 0.875rem;
  position: relative;
  perspective: 800px;
  z-index: 0;
  padding: 0 1rem;
}

.footer img {
  display: none;
}

.footer__title {
  font-size: 0.625rem;
  color: var(--primary-orange);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.footer__title-highlight {
  color: var(--dark-text);
  text-transform: capitalize;
  font-size: 0.625rem;
  font-weight: bold;
}

.footer__copyright {
  font-size: 0.625rem;
  color: var(--mid-text);
  font-weight: normal;
  max-width: 100%;
  word-wrap: break-word;
  line-height: 1.4;
}

.footer__copyright strong {
  color: var(--dark-text);
  font-weight: 600;
}

/* =================================
   Media Queries - Progressive Enhancement
================================= */

/* 375px - iPhone SE, 8, X, 11 Pro */
@media (min-width: 23.4375rem) {
  body {
    padding: 1.5rem 0;
  }

  .container {
    border-radius: 0.625rem;
    padding: 0 0 1.125rem 0;
  }

  .header {
    padding: 1.125rem 1.125rem;
    justify-content: center;
  }

  .header__logo {
    width: 4.75rem;
    height: 4.75rem;
    margin-bottom: 0.6875rem;
  }

  .header__icon {
    width: 1.1875rem;
    height: 1.1875rem;
  }

  .header__icon-img {
    width: 0.8125rem;
    height: 0.8125rem;
  }

  .header__title,
  .header__title-highlight {
    font-size: 0.8125rem;
    margin-bottom: 0.4375rem;
  }

  .header__subtitle {
    font-size: 0.6875rem;
    margin-bottom: 0.4375rem;
    gap: 0.4375rem;
  }

  .header__subtitle::before {
    width: 0.8125rem;
    height: 0.8125rem;
  }

  .header__description {
    font-size: 0.6875rem;
    padding: 0 0.625rem;
  }

  .header__social {
    margin-top: 0.9375rem;
    gap: 0.4375rem;
  }

  .header__social a {
    width: 1.875rem;
    height: 1.875rem;
  }

  .header__social-icon {
    width: 1.125rem;
    height: 1.125rem;
  }

  .services__list {
    padding: 0.9375rem 0.3125rem 0;
    gap: 0.21875rem;
  }

  .services__item {
    padding: 0.21875rem 0.34375rem;
    font-size: 0.6875rem;
    min-height: 1.875rem;
  }

  .consulting__card {
    margin: 0.5625rem 0.875rem;
    padding: 0.8125rem 0.9375rem;
    font-size: 0.8125rem;
    gap: 0.6875rem;
  }

  .consulting__icon {
    width: 0.9375rem;
    height: 0.9375rem;
  }

  .consulting__title {
    font-size: 0.8125rem;
  }

  .consulting__title--contact {
    font-size: 0.6875rem;
  }

  .consulting__subtitle {
    font-size: 0.6875rem;
  }

  .consulting__subtitle--contact {
    font-size: 0.8125rem;
  }

  .consulting__subtitle--orange {
    font-size: 0.6875rem;
  }

  .consulting__card--contact {
    margin-top: 1.0625rem;
  }

  .consulting__whatsapp-btn {
    padding: 0.5625rem 0.8125rem;
    padding-left: 1.625rem;
    font-size: 0.6875rem;
    min-height: 2.125rem;
  }

  .consulting__whatsapp-btn::before {
    width: 0.8125rem;
    height: 0.8125rem;
    left: 0.4375rem;
  }

  .footer {
    margin-top: 0.9375rem;
  }

  .footer__title {
    font-size: 0.6875rem;
  }

  .footer__title-highlight,
  .footer__copyright {
    font-size: 0.6875rem;
  }
}

/* 393px - Pixel 7, 8 */
@media (min-width: 24.5625rem) {
  .header {
    padding: 1.1875rem 1.1875rem;
    justify-content: center;
  }

  .header__logo {
    width: 4.875rem;
    height: 4.875rem;
  }

  .header__icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .header__icon-img {
    width: 0.875rem;
    height: 0.875rem;
  }

  .header__title,
  .header__title-highlight {
    font-size: 0.875rem;
  }

  .header__subtitle {
    font-size: 0.71875rem;
  }

  .header__description {
    font-size: 0.71875rem;
  }

  .header__social a {
    width: 2rem;
    height: 2rem;
  }

  .header__social-icon {
    width: 1.1875rem;
    height: 1.1875rem;
  }

  .services__item {
    font-size: 0.71875rem;
  }

  .consulting__card {
    font-size: 0.84375rem;
  }

  .consulting__title {
    font-size: 0.84375rem;
  }
}

/* 400px */
@media (min-width: 25rem) {
  body {
    padding: 1.75rem 0;
  }

  .container {
    padding: 0 0 1.25rem 0;
  }

  .header {
    padding: 1.25rem 1.25rem;
    justify-content: center;
  }

  .header__logo {
    width: 5rem;
    height: 5rem;
    margin-bottom: 0.75rem;
  }

  .header__icon {
    width: 1.3125rem;
    height: 1.3125rem;
  }

  .header__icon-img {
    width: 0.9375rem;
    height: 0.9375rem;
  }

  .header__title,
  .header__title-highlight {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }

  .header__subtitle {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    gap: 0.5rem;
  }

  .header__subtitle::before {
    width: 0.875rem;
    height: 0.875rem;
  }

  .header__description {
    font-size: 0.75rem;
    padding: 0 0.75rem;
  }

  .header__social {
    margin-top: 1rem;
    gap: 0.5rem;
  }

  .header__social a {
    width: 2.125rem;
    height: 2.125rem;
  }

  .header__social-icon {
    width: 1.25rem;
    height: 1.25rem;
  }

  .services__list {
    padding: 1rem 0.375rem 0;
    gap: 0.25rem;
  }

  .services__item {
    padding: 0.25rem 0.375rem;
    font-size: 0.75rem;
    min-height: 2rem;
  }

  .consulting__card {
    margin: 0.625rem 1rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    gap: 0.75rem;
    min-height: 3.25rem;
  }

  .consulting__icon {
    width: 1rem;
    height: 1rem;
  }

  .consulting__title {
    font-size: 0.875rem;
  }

  .consulting__title--contact {
    font-size: 0.71875rem;
  }

  .consulting__subtitle {
    font-size: 0.71875rem;
  }

  .consulting__subtitle--contact {
    font-size: 0.84375rem;
  }

  .consulting__subtitle--orange {
    font-size: 0.71875rem;
  }

  .consulting__card--contact {
    margin-top: 1.125rem;
  }

  .consulting__whatsapp-btn {
    padding: 0.625rem 0.875rem;
    padding-left: 1.75rem;
    font-size: 0.71875rem;
    min-height: 2.25rem;
  }

  .consulting__whatsapp-btn::before {
    width: 0.875rem;
    height: 0.875rem;
    left: 0.5rem;
  }

  .footer {
    margin-top: 1rem;
  }

  .footer__title {
    font-size: 0.75rem;
  }

  .footer__title-highlight,
  .footer__copyright {
    font-size: 0.71875rem;
  }
}

/* 414px - iPhone 11, XR, 12, 13, 14 */
@media (min-width: 25.875rem) {
  .header {
    padding: 1.3125rem 1.3125rem;
    justify-content: center;
  }

  .header__icon {
    width: 1.375rem;
    height: 1.375rem;
  }

  .header__icon-img {
    width: 1rem;
    height: 1rem;
  }

  .header__title,
  .header__title-highlight {
    font-size: 1rem;
  }

  .header__subtitle {
    font-size: 0.8125rem;
  }

  .header__subtitle::before {
    width: 0.9375rem;
    height: 0.9375rem;
  }

  .header__description {
    font-size: 0.78125rem;
  }

  .header__social {
    gap: 0.5625rem;
  }

  .header__social a {
    width: 2.25rem;
    height: 2.25rem;
  }

  .header__social-icon {
    width: 1.3125rem;
    height: 1.3125rem;
  }

  .services__item {
    font-size: 0.78125rem;
  }

  .consulting__card {
    font-size: 0.90625rem;
  }

  .consulting__icon {
    width: 1.0625rem;
    height: 1.0625rem;
  }

  .consulting__title {
    font-size: 0.90625rem;
  }

  .consulting__subtitle {
    font-size: 0.75rem;
  }

  .footer__copyright {
    font-size: 0.75rem;
  }
}

/* 430px */
@media (min-width: 26.875rem) {
  .header {
    padding: 1.375rem 1.375rem;
    justify-content: center;
  }

  .header__logo {
    width: 5.125rem;
    height: 5.125rem;
  }

  .header__title,
  .header__title-highlight {
    font-size: 1.0625rem;
  }

  .header__subtitle {
    font-size: 0.84375rem;
  }

  .header__description {
    font-size: 0.8125rem;
  }

  .header__social {
    gap: 0.625rem;
  }

  .header__social-icon {
    width: 1.375rem;
    height: 1.375rem;
  }

  .services__list {
    padding: 1.125rem 0.4375rem 0;
    gap: 0.28125rem;
  }

  .services__item {
    padding: 0.28125rem 0.40625rem;
    font-size: 0.8125rem;
  }

  .consulting__card {
    margin: 0.6875rem 1.125rem;
    padding: 0.9375rem 1.0625rem;
    font-size: 0.9375rem;
  }

  .consulting__icon {
    width: 1.125rem;
    height: 1.125rem;
  }

  .consulting__title {
    font-size: 0.9375rem;
  }

  .consulting__title--contact {
    font-size: 0.75rem;
  }

  .consulting__subtitle {
    font-size: 0.78125rem;
  }

  .consulting__card--contact {
    margin-top: 1.25rem;
  }

  .footer__title {
    font-size: 0.8125rem;
  }

  .footer__title-highlight,
  .footer__copyright {
    font-size: 0.75rem;
  }
}

/* 440px */
@media (min-width: 27.5rem) {
  body {
    padding: 2rem 0;
  }

  .container {
    border-radius: 0.6875rem;
    padding: 0 0 1.375rem 0;
  }

  .header {
    padding: 1.4375rem 1.4375rem;
    justify-content: center;
  }

  .header__logo {
    width: 5.25rem;
    height: 5.25rem;
  }

  .header__icon {
    width: 1.4375rem;
    height: 1.4375rem;
  }

  .header__icon-img {
    width: 1.0625rem;
    height: 1.0625rem;
  }

  .header__title,
  .header__title-highlight {
    font-size: 1.125rem;
  }

  .header__subtitle {
    font-size: 0.875rem;
  }

  .header__description {
    font-size: 0.84375rem;
  }

  .header__social {
    margin-top: 1.125rem;
    gap: 0.6875rem;
  }

  .header__social a {
    width: 2.375rem;
    height: 2.375rem;
  }

  .header__social-icon {
    width: 1.4375rem;
    height: 1.4375rem;
  }

  .services__list {
    padding: 1.1875rem 0.5rem 0;
    gap: 0.3125rem;
  }

  .services__item {
    padding: 0.3125rem 0.4375rem;
    font-size: 0.84375rem;
    min-height: 2.125rem;
  }

  .consulting__card {
    margin: 0.75rem 1.25rem;
    padding: 1rem 1.125rem;
    font-size: 0.96875rem;
    gap: 0.8125rem;
  }

  .consulting__icon {
    width: 1.1875rem;
    height: 1.1875rem;
  }

  .consulting__title {
    font-size: 0.96875rem;
  }

  .consulting__subtitle {
    font-size: 0.8125rem;
  }

  .consulting__subtitle--contact {
    font-size: 0.875rem;
  }

  .consulting__card--contact {
    margin-top: 1.375rem;
  }

  .consulting__whatsapp-btn {
    padding: 0.6875rem 0.9375rem;
    padding-left: 1.875rem;
    font-size: 0.75rem;
    min-height: 2.375rem;
  }

  .consulting__whatsapp-btn::before {
    width: 0.9375rem;
    height: 0.9375rem;
    left: 0.5625rem;
  }

  .footer {
    margin-top: 1.125rem;
  }

  .footer__title {
    font-size: 0.875rem;
  }

  .footer__title-highlight,
  .footer__copyright {
    font-size: 0.78125rem;
  }
}

/* 480px - Tablets e desktop */
@media (min-width: 30rem) {
  body {
    padding: 2.5rem 0;
  }

  .container {
    max-width: 32.5rem;
    width: 90%;
    border-radius: 0.75rem;
    padding: 0 0 1.875rem 0;
  }

  .header {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 1.5625rem 1.875rem;
    justify-content: center;
  }

  .header__logo {
    width: 5.625rem;
    height: 5.625rem;
    margin-right: 1.5625rem;
    margin-bottom: 0;
  }

  .header__icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .header__icon-img {
    width: 1.125rem;
    height: 1.125rem;
  }

  .header__title {
    font-size: 1.375rem;
    margin-bottom: 0.9375rem;
  }

  .header__title-highlight {
    font-size: 1.375rem;
  }

  .header__subtitle {
    font-size: 0.75rem;
    margin: 0 0 0.5rem 1.125rem;
    display: block;
    gap: 0;
    position: relative;
    padding-left: 0;
  }

  .header__subtitle::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -1.125rem;
  }

  .header__description {
    font-size: 0.75rem;
    padding: 0;
    opacity: 0.8;
  }

  .header__description strong {
    opacity: 1;
  }

  .header__social {
    gap: 0.9375rem;
    justify-content: flex-end;
    margin-top: 1.25rem;
  }

  .header__social a {
    width: auto;
    height: auto;
    min-width: auto;
    min-height: auto;
    padding: 0;
  }

  .header__social-icon {
    width: 1.5625rem;
    height: 1.5625rem;
  }

  .services__list {
    padding: 1.875rem 0.625rem 0;
    gap: 0.3rem;
    flex-wrap: nowrap;
  }

  .services__item {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    min-height: auto;
  }

  .consulting__card {
    margin: 0.9375rem 1.875rem;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    gap: 0.75rem;
    min-height: auto;
  }

  .consulting__icon {
    width: 1.5rem;
    height: 1.5rem;
  }

  .consulting__title {
    font-size: 0.9375rem;
  }

  .consulting__title--contact {
    font-size: 0.75rem;
  }

  .consulting__subtitle {
    font-size: 0.75rem;
  }

  .consulting__subtitle--contact {
    font-size: 0.875rem;
  }

  .consulting__subtitle--orange {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .consulting__card--contact {
    margin-top: 1.875rem;
  }

  .consulting__card--orange::before,
  .consulting__card--green::before {
    width: 0.25rem;
  }

  .consulting__card:hover::before,
  .consulting__card:focus-visible::before {
    width: 0.375rem;
  }

  .consulting__whatsapp-btn {
    padding: 0.5rem 1.25rem;
    padding-left: 1.75rem;
    font-size: 0.8125rem;
    min-height: auto;
  }

  .consulting__whatsapp-btn::before {
    width: 0.9375rem;
    height: 0.9375rem;
    left: 0.75rem;
  }

  .footer {
    margin-top: 2.1875rem;
  }

  .footer img {
    display: block;
    width: 75px;
    height: 75px;
    position: absolute;
    left: 20px;
    top: -20px;
    transform: rotateX(20deg) translateY(10%);
    z-index: -1;
    opacity: 0.3;
  }

  .footer__title {
    font-size: 0.9375rem;
  }

  .footer__title-highlight {
    font-size: 0.8125rem;
  }

  .footer__copyright {
    font-size: 0.8125rem;
  }

  .footer__copyright strong {
    color: var(--primary-orange);
  }
}

/* =================================
   Utilitários de Acessibilidade
================================= */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-blue);
  color: white;
  padding: 0.5rem;
  text-decoration: none;
  border-radius: 0 0 0.25rem 0.25rem;
}

.skip-link:focus {
  top: 0;
}

/* =================================
   Print Styles
================================= */

@media print {
  body {
    background: white;
    color: black;
    padding: 0;
  }

  .container {
    box-shadow: none;
    border: 1px solid #ccc;
    max-width: 100%;
  }

  .header__social,
  .consulting__whatsapp-btn,
  .footer img,
  .skip-link,
  .visually-hidden {
    display: none !important;
  }

  /* Mostrar URLs importantes */
  a[href^="http"]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }

  a[href^="mailto"]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    font-weight: normal;
  }

  a[href^="tel"]:after {
    content: "";
  }

  /* Adicionar informações de contato no rodapé */
  .footer:after {
    content: "Contato: +55 (82) 98701-2399 | clodoaldo@anywhereservice.com.br | Atendimento em Alagoas e Pernambuco";
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #ccc;
    font-size: 0.875rem;
  }

  /* Quebras de página apropriadas */
  .header {
    page-break-after: avoid;
  }

  .consulting__card {
    page-break-inside: avoid;
  }

  /* Forçar cores de impressão */
  .header {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    background-color: var(--primary-blue) !important;
  }

  .services__item {
    border: 1px solid var(--primary-green);
  }
}
