/* ============================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ============================================ */

* {
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  width: 100%;
}

/* ============================================
   SCROLLBAR PERSONALIZADA - MINIMALISTA
   ============================================ */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6600 0%, #ff8533 100%);
    border-radius: 10px;
    border: 2px solid #f5f5f5;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8533 0%, #ffaa66 100%);
    border: 2px solid #ebebeb;
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, #e65c00 0%, #ff6600 100%);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #ff6600 #f5f5f5;
}

/* ============================================
   RESPONSIVIDADE - MOBILE
   ============================================ */

/* Scrollbar mais fina em dispositivos móveis */
@media screen and (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 8px;
        height: 8px;
    }

    ::-webkit-scrollbar-thumb {
        border: 1px solid #f5f5f5;
    }

    ::-webkit-scrollbar-thumb:hover {
        border: 1px solid #ebebeb;
    }
}

/* Scrollbar ainda mais fina em dispositivos muito pequenos */
@media screen and (max-width: 480px) {
    ::-webkit-scrollbar {
        width: 6px;
        height: 6px;
    }

    ::-webkit-scrollbar-thumb {
        border: 1px solid #f5f5f5;
    }
}

/* ============================================
   VERSÃO DARK (OPCIONAL)
   Descomente se quiser usar em seções escuras
   ============================================ */

/*
#pagina-inicial::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
}

#pagina-inicial::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff6600 0%, #ff8533 100%);
    border: 2px solid rgba(0, 0, 0, 0.3);
}

#pagina-inicial::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ff8533 0%, #ffaa66 100%);
    border: 2px solid rgba(0, 0, 0, 0.4);
}
*/

/* ============================================
   ANIMAÇÃO SUAVE AO ROLAR
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* Suaviza o scroll em dispositivos touch */
body {
    -webkit-overflow-scrolling: touch;
}

/* ============================================
   RESPONSIVIDADE 4K E ULTRA WIDE
   ============================================ */

@media screen and (min-width: 2560px) {
    ::-webkit-scrollbar {
        width: 16px;
        height: 16px;
    }

    ::-webkit-scrollbar-thumb {
        border: 3px solid #f5f5f5;
    }

    ::-webkit-scrollbar-thumb:hover {
        border: 3px solid #ebebeb;
    }
}

@media screen and (min-width: 3840px) {
    ::-webkit-scrollbar {
        width: 20px;
        height: 20px;
    }

    ::-webkit-scrollbar-thumb {
        border: 4px solid #f5f5f5;
    }

    ::-webkit-scrollbar-thumb:hover {
        border: 4px solid #ebebeb;
    }
}

.imagem-whatsapp {
  position: fixed;
  right: 1%;
  bottom: 26px;
  z-index: 10400;
  cursor: pointer;
  width: 3.9rem;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.5));
  transition: all 0.3s ease;
}

.imagem-whatsapp:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(37, 211, 102, 0.8));
}

#pagina-inicial {
  width: 100%;
  min-height: 100vh;
  background-color: #000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 10%;
  padding-top: 8vh;
  position: relative;
  overflow: hidden;
}

/* Camada de background com zoom responsivo */
#pagina-inicial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(../assets/mesa.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 0;
  transform-origin: center center;
  transform: scale(1);
}

.botao-inicio-wrapper {
  margin: 30px auto 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.secao-inicio {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

#text-secao-inicio {
  font-size: 2.3rem;
  font-weight: 600;
  color: white;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  animation: fadeInUp 1s ease-out;
  line-height: 1.4;
  margin: 0 0 30px 0;
}

#texto-destaque {
  border-bottom: solid 4px #ff6600;
}

/* ============================================
   ESTILOS PARA ANIMAÇÃO DE DIGITAÇÃO
   ============================================ */

.texto-animado-wrapper {
  display: inline-block;
  position: relative;
}

.texto-animado {
  display: inline-block;
  min-width: 10px;
}

.cursor {
  display: inline-block;
  margin-left: 3px;
  color: #ff6600;
  animation: blink 1s infinite;
  font-weight: 400;
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

/* ============================================ */

.botao-inicio-wrapper {
  margin: 30px auto 0;
  display: flex;
  justify-content: left;
  gap: 3vw;
  flex-wrap: wrap;
}

/* Botão Secundário - Transparente com borda */
.botao-inicio-secundario {
  padding: 16px 32px;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Botões Modernos da Tela Inicial */
.btn-inicio-moderno {
  position: relative;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}

/* Botão Principal - Laranja com Gradiente */
.btn-inicio-primario {
  background: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.35);
}

.btn-inicio-primario::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8533 0%, #ffaa66 100%);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
}

.btn-inicio-primario:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 102, 0, 0.5);
}

.btn-inicio-primario:hover::before {
  opacity: 1;
}

.btn-inicio-primario:active {
  transform: translateY(-2px) scale(0.98);
}

/* Botão Secundário - Glassmorphism */
.btn-inicio-secundario {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-inicio-secundario::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: -1;
  border-radius: 12px;
}

.btn-inicio-secundario:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
}

.btn-inicio-secundario:hover::before {
  opacity: 1;
}

.btn-inicio-secundario:active {
  transform: translateY(-2px) scale(0.98);
}

/* Ícones dos botões */
.btn-inicio-moderno i {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.btn-inicio-moderno:hover i {
  transform: scale(1.1);
}

/* Animação de entrada dos botões */
@keyframes btnFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-inicio-primario {
  animation: btnFadeIn 0.6s ease-out 0.3s backwards;
}

.btn-inicio-secundario {
  animation: btnFadeIn 0.6s ease-out 0.5s backwards;
}

.botao-inicio-secundario:hover {
  background: white;
  color: #ff6600;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.botao-inicio-secundario:active {
  transform: translateY(-1px);
}

.texto-inicio {
  text-align: left;
  max-width: 900px;
}

.texto-inicio p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.8;
  color: white;
  text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
  font-weight: 300;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.separador {
  width: 100%;
  height: 5px;
  background-color: #4b4b4b;
}

/* Responsivo - Desktops grandes (1600px+) */
@media screen and (min-width: 1600px) {
  #pagina-inicial::before {
    transform: scale(1);
  }

  .secao-inicio {
    padding: 80px 60px;
  }

  #text-secao-inicio {
    font-size: 3.5rem;
  }

  .texto-inicio p {
    font-size: 1.6rem;
  }
}

/* Responsivo - Desktops médios (1200px - 1599px) */
@media screen and (max-width: 1599px) {
  #pagina-inicial::before {
    transform: scale(1.05);
  }

  .secao-inicio {
    padding: 10% 50px;
  }

  #text-secao-inicio {
    font-size: 3.2rem;
  }

  .texto-inicio p {
    font-size: 1.35rem;
  }
}

/* Responsivo - Laptops pequenos (1024px - 1199px) */
@media screen and (max-width: 1199px) {
  #pagina-inicial::before {
    transform: scale(1.1);
  }

  .secao-inicio {
    padding: 27% 40px;
  }

  #text-secao-inicio {
    font-size: 2.8rem;
  }

  .texto-inicio p {
    font-size: 1.25rem;
  }
}

/* Responsivo - Tablets horizontal (900px - 1023px) */
@media screen and (max-width: 1023px) {
  #pagina-inicial::before {
    transform: scale(1.15);
  }

  .secao-inicio {
    padding: 25% 30px;
  }

  #text-secao-inicio {
    font-size: 2.5rem;
  }

  .texto-inicio p {
    font-size: 1.2rem;
  }
}

/* Responsivo - Tablets (768px - 899px) */
@media screen and (max-width: 899px) {
  #pagina-inicial::before {
    transform: scale(1);
  }

  .secao-inicio {
    padding: 30% 25px;
  }

  #text-secao-inicio {
    font-size: 2.3rem;
    margin-bottom: 25px;
  }

  .texto-inicio p {
    font-size: 1.15rem;
  }

  .botao-inicio-wrapper {
    margin-top: 25px;
  }
}

/* Responsivo - Tablets pequenos (600px - 767px) */
@media (max-width: 767px) {
  #pagina-inicial::before {
    transform: scale(1.1);
  }

  .secao-inicio {
    padding: 48% 20px;
  }

  .botao-inicio-secundario {
    padding: 12px 26px;
    font-size: 1.05rem;
  }

  #text-secao-inicio {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }

  .texto-inicio p {
    font-size: 1.12rem;
  }
}

/* ==========================================
   MOBILE - MODIFICAÇÕES COMEÇAM AQUI
   ========================================== */

/* Responsivo - Celulares grandes (481px - 599px) */
@media screen and (max-width: 599px) {
  #pagina-inicial {
    align-items: center;
    padding: 0 5%;
  }

  #pagina-inicial::before {
    transform: scale(1.3);
  }

  .secao-inicio {
    padding: 5% 20px;
    min-height: 95vh;
    justify-content: center;
    max-width: 100%;
    width: 100%;
  }

  .texto-inicio {
    text-align: left;
    max-width: 100%;
    width: 100%;
  }

  .botao-inicio-secundario {
    padding: 14px 18px;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  #text-secao-inicio {
    font-size: 1.95rem;
    margin-bottom: 28px;
    line-height: 1.3;
    text-align: left;
    word-wrap: break-word;
  }

  .texto-inicio p {
    font-size: 1.1rem;
    line-height: 1.75;
    word-wrap: break-word;
  }

  .botao-inicio-wrapper {
    margin-top: 30px;
    justify-content: left;
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* Responsivo - 550px+ (ajuste de fontes e altura) */
@media screen and (min-width: 550px) and (max-width: 599px) {
  #pagina-inicial {
    padding: 0 6%;
  }

  #pagina-inicial::before {
    transform: scale(1.15);
  }

  .secao-inicio {
    padding: 5% 22px;
    min-height: 95vh;
    width: 100%;
  }

  .texto-inicio {
    width: 100%;
  }

  #text-secao-inicio {
    font-size: 2.1rem;
    margin-bottom: 30px;
    text-align: left;
  }

  .texto-inicio p {
    font-size: 1.15rem;
    line-height: 1.8;
  }

  .botao-inicio-secundario {
    padding: 15px 24px;
    font-size: 1rem;
    white-space: nowrap;
  }
}

/* Responsivo - Celulares médios (391px - 480px) */
@media screen and (max-width: 480px) {
  #pagina-inicial {
    align-items: center;
    padding: 0 4%;
  }

  #pagina-inicial::before {
    transform: scale(1.3);
  }

  .secao-inicio {
    padding: 5% 18px;
    min-height: 92vh;
    justify-content: center;
    width: 100%;
  }

  .texto-inicio {
    text-align: left;
    width: 100%;
  }

  #text-secao-inicio {
    font-size: 1.6rem;
    margin-bottom: 26px;
    line-height: 1.3;
    text-align: left;
    word-wrap: break-word;
  }

  .texto-inicio p {
    font-size: 1rem;
    line-height: 1.7;
    word-wrap: break-word;
  }

  .botao-inicio-secundario {
    padding: 12px 16px;
    font-size: 0.88rem;
    gap: 6px;
    white-space: nowrap;
  }

  .botao-inicio-wrapper {
    margin-top: 28px;
    justify-content: left;
    gap: 10px;
    flex-wrap: wrap;
  }
}

/* Responsivo - Celulares pequenos (321px - 390px) */
@media screen and (max-width: 390px) {
  #pagina-inicial {
    align-items: center;
    padding: 0 3%;
  }

  #pagina-inicial::before {
    transform: scale(1.35);
  }

  .secao-inicio {
    padding: 5% 15px;
    min-height: 90vh;
    justify-content: center;
    width: 100%;
  }

  .texto-inicio {
    text-align: left;
    width: 100%;
  }

  #text-secao-inicio {
    font-size: 1.2rem;
    margin-bottom: 24px;
    line-height: 1.3;
    text-align: left;
    word-wrap: break-word;
  }

  .texto-inicio p {
    font-size: 0.85rem;
    line-height: 1.65;
    word-wrap: break-word;
  }

  .botao-inicio-secundario {
    padding: 11px 14px;
    font-size: 0.82rem;
    gap: 5px;
    white-space: nowrap;
  }

  .botao-inicio-wrapper {
    margin-top: 26px;
    justify-content: left;
    gap: 8px;
    flex-wrap: wrap;
  }
}

/* Responsivo - Celulares muito pequenos (até 350px) */
@media screen and (max-width: 350px) {
  #pagina-inicial {
    align-items: center;
  }

  #pagina-inicial::before {
    transform: scale(1.4);
  }

  .secao-inicio {
    padding: 5% 10px;
    min-height: 88vh;
    justify-content: center;
  }

  .texto-inicio {
    text-align: center;
  }

  #text-secao-inicio {
    font-size: 1.3rem;
    margin-bottom: 22px;
    line-height: 1.3;
  }

  .texto-inicio p {
    font-size: 0.92rem;
    line-height: 1.6;
    text-align: left;
  }

  .botao-inicio-secundario {
    padding: 11px 14px;
    font-size: 0.8rem;
    gap: 5px;
    border-radius: 5px;
    width: 150px;
    justify-content: center;
    border-width: 1.5px;
  }

  .botao-inicio-wrapper {
    margin-top: 24px;
    justify-content: center;
    gap: 10px;
  }
}

/* ==========================================
   RESPONSIVIDADE PÁGINA INICIAL - ABAIXO DE 300PX
   ========================================== */

@media screen and (max-width: 300px) {
  #pagina-inicial {
    padding: 0 3%;
    padding-top: 5vh;
    min-height: 100vh;
    align-items: center;
  }

  #pagina-inicial::before {
    transform: scale(1.45);
  }

  .secao-inicio {
    padding: 5% 8px;
    max-width: 100%;
    min-height: 85vh;
    justify-content: center;
  }

  .texto-inicio {
    text-align: center;
    max-width: 100%;
  }

  #text-secao-inicio {
    font-size: 1.35rem;
    margin-bottom: 20px;
    line-height: 1.25;
    word-break: keep-all;
  }

  #text-secao-inicio br {
    display: none;
  }

  #texto-destaque {
    border-bottom: solid 3px #ff6600;
    display: inline-block;
    padding-bottom: 1px;
  }

  .texto-inicio p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0;
  }

  #paragraph-incio br {
    display: none;
  }

  .botao-inicio-wrapper {
    margin-top: 22px;
    justify-content: center;
    gap: 8px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .botao-inicio-secundario {
    padding: 11px 14px;
    font-size: 0.8rem;
    gap: 5px;
    border-radius: 5px;
    width: 100%;
    justify-content: center;
    border-width: 1.5px;
  }

  .botao-inicio-secundario i {
    font-size: 0.8rem;
  }

  .botao-inicio-secundario:hover {
    transform: translateY(-2px);
  }

  .botao-inicio-secundario:active {
    transform: translateY(0);
  }
}

@media screen and (max-width: 240px) {
  #pagina-inicial {
    padding: 0 2%;
    padding-top: 4vh;
    align-items: center;
  }

  #pagina-inicial::before {
    transform: scale(1.5);
  }

  .secao-inicio {
    padding: 5% 5px;
    min-height: 82vh;
    justify-content: center;
  }

  .texto-inicio {
    text-align: center;
  }

  #text-secao-inicio {
    font-size: 1.2rem;
    margin-bottom: 18px;
    line-height: 1.2;
  }

  #texto-destaque {
    border-bottom-width: 2px;
  }

  .texto-inicio p {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 0;
  }

  .botao-inicio-wrapper {
    margin-top: 20px;
    gap: 6px;
  }

  .botao-inicio-secundario {
    padding: 10px 12px;
    font-size: 0.75rem;
    gap: 4px;
    border-radius: 4px;
  }

  .botao-inicio-secundario i {
    font-size: 0.75rem;
  }
}

/* ==========================================
   RESPONSIVIDADE 4K (2560px+)
   ========================================== */

@media screen and (min-width: 2560px) {

  /* Header responsivo para 4K */
  .header-total {
    padding: 25px 8%;
  }

  .logo h1 {
    font-size: 2.2rem;
  }

  .nav-header a {
    font-size: 1.3rem;
  }

  .botao-cardapio {
    padding: 16px 32px;
    font-size: 1.2rem;
  }

  /* Página inicial responsiva para 4K - MAIOR LARGURA */
  #pagina-inicial {
    padding: 0 8%;
    padding-top: 12vh;
  }

  #pagina-inicial::before {
    transform: scale(1);
  }

  /* AUMENTANDO A LARGURA DO TEXTO */
  .texto-inicio {
    max-width: 1200px;
    width: 100%;
  }

  #text-secao-inicio {
    font-size: 4.2rem;
    margin-bottom: 40px;
    line-height: 1.2;
  }

  .texto-inicio p {
    font-size: 1.8rem;
    line-height: 2;
    max-width: 1000px;
  }

  .botao-inicio-secundario {
    padding: 22px 40px;
    font-size: 1.4rem;
    border-radius: 12px;
  }

  .botao-inicio-wrapper {
    margin-top: 50px;
    gap: 4vw;
  }

  /* Sobre responsivo para 4K */
  .sobre-container-sobre {
    padding: 120px 8%;
  }

  .sobre-content-sobre {
    max-width: 1800px;
    margin: 0 auto;
  }

  .sobre-title-sobre {
    font-size: 3.5rem;
  }

  .sobre-paragraph-sobre {
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 900px;
  }

  .box-title-sobre {
    font-size: 1.8rem;
  }

  .box-text-sobre {
    font-size: 1.3rem;
    max-width: 500px;
  }

  /* Contato responsivo para 4K */
  .contato-conteiner-contato {
    padding: 100px 8%;
  }

  .conhecer-section-contato {
    max-width: 1800px;
    margin: 0 auto;
  }

  .conhecer-title-contato {
    font-size: 3rem;
  }

  .conhecer-header-contato h3 {
    font-size: 1.8rem;
  }

  .horario-item-contato {
    font-size: 1.3rem;
    padding: 18px 0;
  }

  .iframe-mapa-contato {
    height: 400px;
  }

  .btn-rotas-contato {
    padding: 18px 32px;
    font-size: 1.3rem;
  }

  /* Footer responsivo para 4K */
  .footer-container-footer {
    padding: 60px 8%;
    max-width: 1800px;
    margin: 0 auto;
  }

  .logo-title-footer {
    font-size: 2.2rem;
  }

  .section-title-footer {
    font-size: 1.5rem;
  }

  .navigation-links-footer,
  .contact-info-footer {
    font-size: 1.2rem;
  }

  .copyright-text-footer {
    font-size: 1.1rem;
  }

  .social-icon-footer {
    width: 45px;
    height: 45px;
  }

  /* WhatsApp button para 4K */
  .imagem-whatsapp {
    width: 5rem;
    right: 2%;
    bottom: 40px;
  }
}

/* ==========================================
   RESPONSIVIDADE ULTRA WIDE (3840px+)
   ========================================== */

@media screen and (min-width: 3840px) {
  #pagina-inicial {
    padding: 0 12%;
    padding-top: 15vh;
  }

  /* AUMENTO MAIOR PARA ULTRA WIDE */
  .secao-inicio {
    max-width: 2200px;
  }

  .texto-inicio {
    max-width: 1500px;
  }

  #text-secao-inicio {
    font-size: 5.2rem;
    margin-bottom: 50px;
  }

  .texto-inicio p {
    font-size: 2.2rem;
    line-height: 2.2;
    max-width: 1300px;
  }

  .botao-inicio-secundario {
    padding: 28px 50px;
    font-size: 1.8rem;
  }

  .header-total,
  .sobre-container-sobre,
  .contato-conteiner-contato,
  .footer-container-footer {
    padding-left: 12%;
    padding-right: 12%;
    max-width: 2200px;
    margin: 0 auto;
  }

  .sobre-content-sobre,
  .conhecer-section-contato {
    max-width: 2200px;
  }

  .sobre-paragraph-sobre {
    max-width: 1100px;
    font-size: 1.6rem;
  }

  .box-text-sobre {
    max-width: 600px;
    font-size: 1.4rem;
  }

  .imagem-whatsapp {
    width: 6rem;
    right: 3%;
    bottom: 50px;
  }
}

/* ==========================================
   RESPONSIVIDADE 2K (2048px - 2559px)
   ========================================== */

@media screen and (min-width: 2048px) and (max-width: 2559px) {
  #pagina-inicial {
    padding: 0 8%;
    padding-top: 10vh;
  }

  /* AUMENTO INTERMEDIÁRIO PARA 2K */
  .secao-inicio {
    max-width: 1600px;
  }

  .texto-inicio {
    max-width: 1000px;
  }

  #text-secao-inicio {
    font-size: 3.8rem;
  }

  .texto-inicio p {
    font-size: 1.6rem;
    max-width: 900px;
  }

  .botao-inicio-secundario {
    padding: 20px 36px;
    font-size: 1.3rem;
  }

  .header-total,
  .sobre-container-sobre,
  .contato-conteiner-contato,
  .footer-container-footer {
    padding-left: 6%;
    padding-right: 6%;
    max-width: 1600px;
    margin: 0 auto;
  }
}