/* =========================================================
   HEADER - MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .site-header__nav {
    height: 64px;

    padding: 0 20px;
  }

  /* Logo */

  .site-header__logo img {
    height: 38px;
  }

  .site-header__name {
    display: none;
  }

  /* Esconde menu desktop */

  .site-header__menu {
    display: none;
  }

  .site-header__button {
    display: none;
  }

  /* Botão hamburger */

  .site-header__mobile-button {
    display: block;
  }

  /* Menu */

  .site-header__mobile-menu {
    display: none;

    padding: 12px 20px 20px;

    border-top: 1px solid rgba(203, 213, 225, 0.5);

    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .site-header__mobile-menu.is-open {
    display: flex;

    flex-direction: column;

    gap: 4px;
  }

  .site-header__mobile-menu a {
    display: block;

    padding: 12px 8px;

    color: #64748b;

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;
  }

  .site-header__mobile-menu a:hover {
    color: #172033;
  }

  /* Botão orçamento */

  .site-header__mobile-menu .site-header__mobile-button-link {
    margin-top: 8px;

    padding: 13px 18px;

    border-radius: 999px;

    background: #172033;

    color: #fff;

    text-align: center;

    font-weight: 600;
  }
}

@media (max-width: 768px) {
  .depoimentos {
    padding: 60px 20px;
  }

  .depoimentos h2 {
    font-size: 32px;
    margin-bottom: 35px;
  }

  .depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .depoimento-card {
    padding: 25px;
  }
}

/* ========================================
   RESPONSIVO - NOSSO PROCESSO
======================================== */

@media (max-width: 991px) {
  .processo {
    padding: 70px 0;
  }

  .processo-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .processo-imagem {
    order: -1;
  }

  .processo-imagem img {
    min-height: auto;
    height: 420px;
  }

  .processo-header {
    margin-bottom: 40px;
  }

  .processo-titulo {
    font-size: 2rem;
  }

  .processo-subtitulo {
    font-size: 1rem;
  }

  .processo-etapa {
    gap: 18px;
  }

  .processo-numero {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .processo-container {
    padding: 0 18px;
  }

  .processo {
    padding: 56px 0;
  }

  .processo-titulo {
    font-size: 1.75rem;
  }

  .processo-imagem img {
    height: 300px;
    border-radius: 22px;
  }

  .processo-etapa-titulo {
    font-size: 1.1rem;
  }

  .processo-etapa-descricao {
    font-size: 0.95rem;
  }
}

/* =========================================================
   SERVIÇOS - RESPONSIVO
   ========================================================= */

@media (max-width: 1024px) {
  .servicos {
    padding: 80px 24px;
  }

  .servicos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .servicos__titulo {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .servicos {
    padding: 70px 20px;
  }

  .servicos__header {
    margin-bottom: 40px;
  }

  .servicos__titulo {
    font-size: 34px;
    letter-spacing: -1px;
  }

  .servicos__subtitulo {
    font-size: 16px;
    line-height: 1.6;
  }

  .servicos__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .servico-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .servico-card__icone {
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
  }

  .servico-card__titulo {
    font-size: 20px;
  }

  .servico-card__descricao {
    font-size: 15px;
  }
}

@media (max-width: 1024px) {
  .beneficios__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .beneficios {
    padding: 56px 0 64px;
  }

  .beneficios__container {
    padding: 0 20px;
  }

  .beneficios__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* =========================================================
   TRABALHOS REALIZADOS - MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .trabalhos-realizados {
    padding: 60px 0;
  }

  .trabalhos-realizados__container {
    padding: 0 20px;
  }

  /* Cabeçalho */

  .trabalhos-realizados__header {
    margin-bottom: 32px;
  }

  .trabalhos-realizados__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .trabalhos-realizados__description {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Grid */

  .trabalhos-realizados__grid {
    display: grid;

    grid-template-columns: 1fr;
    grid-template-rows: auto;

    gap: 16px;
  }

  /* Todos os cards */

  .trabalho-card {
    grid-column: auto !important;
    grid-row: auto !important;

    height: 280px;
  }

  /* Primeiro card maior */

  .trabalho-card:nth-child(1) {
    height: 360px;
  }

  /* Imagem */

  .trabalho-card__image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
  }

  .trabalho-card__image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  /* Conteúdo */

  .trabalho-card__content {
    padding: 20px;
    padding-top: 60px;
  }

  .trabalho-card__type {
    font-size: 12px;
  }

  .trabalho-card__title {
    font-size: 18px;
  }
}

/* =========================================================
   banner - MOBILE
   ========================================================= */

@media (max-width: 767px) {
  .banner {
    padding: 110px 0 70px;
  }

  .banner__container {
    display: flex;
    flex-direction: column;

    gap: 48px;

    padding: 0 20px;
  }

  /* =====================================================
       CONTEÚDO
       ===================================================== */

  .banner__content {
    width: 100%;
  }

  .banner__badge {
    font-size: 11px;
    padding: 6px 13px;
  }

  .banner__badge svg {
    width: 14px;
    height: 14px;
  }

  /* Título */

  .banner__title {
    max-width: 100%;

    margin-top: 22px;

    font-size: 40px;
    line-height: 1.08;
  }

  .banner__highlight::after {
    bottom: 2px;
    height: 9px;
  }

  /* Descrição */

  .banner__description {
    max-width: 100%;

    margin-top: 20px;

    font-size: 16px;
    line-height: 1.65;
  }

  /* =====================================================
       BOTÕES
       ===================================================== */

  .banner__buttons {
    flex-direction: column;

    width: 100%;

    margin-top: 28px;
  }

  .banner__button {
    width: 100%;

    padding: 14px 22px;

    font-size: 15px;
  }

  /* =====================================================
       BENEFÍCIOS
       ===================================================== */

  .banner__benefits {
    flex-direction: column;

    gap: 12px;

    margin-top: 32px;
  }

  .banner__benefit {
    font-size: 14px;
  }

  /* =====================================================
       IMAGEM
       ===================================================== */

  .banner__visual {
    width: 100%;
  }

  .banner__glow {
    inset: -15px;

    border-radius: 30px;

    filter: blur(30px);
  }

  .banner__image {
    border-radius: 24px;
  }

  .banner__image img {
    width: 100%;
    height: auto;

    aspect-ratio: 4 / 3;

    object-fit: cover;
  }

  /* =====================================================
       CARD CLIENTES
       ===================================================== */

  .banner__customers {
    left: 16px;
    bottom: -20px;

    padding: 13px 14px;

    border-radius: 14px;

    gap: 10px;
  }

  .banner__stars {
    gap: 1px;
  }

  .banner__stars svg {
    width: 14px;
    height: 14px;
  }

  .banner__customer-text strong {
    font-size: 13px;
  }

  .banner__customer-text span {
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding: 48px 0 20px;
  }

  .site-footer__container {
    padding: 0 20px;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 36px;
  }

  .site-footer__brand {
    max-width: 100%;
  }

  .site-footer__links {
    gap: 50px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .antes-depois {
    padding: 60px 0;
  }

  .antes-depois__container {
    padding: 0 20px;
  }

  .antes-depois__header {
    margin-bottom: 32px;
  }

  .antes-depois__title {
    font-size: 32px;
    line-height: 1.2;
  }

  .antes-depois__description {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.6;
  }

  .antes-depois__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .antes-depois__compare {
    height: 280px;
    border-radius: 20px;
  }

  .antes-depois__handle {
    width: 46px;
    height: 46px;
  }

  .antes-depois__handle span {
    font-size: 20px;
  }

  .antes-depois__label {
    top: 12px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .antes-depois__label--before {
    left: 12px;
  }

  .antes-depois__label--after {
    right: 12px;
  }

  .antes-depois__name {
    margin-top: 12px;
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .contato__box {
    padding: 15px;
  }

  .contato__title {
    font-size: 32px;
  }

  .contato__button {
    width: 100%;
    font-size: 14px;
  }
}
