:root {
    --main-color: rgb(131, 77, 85);
    --black: #13131a;
    --bgnav: rgb(183, 110, 121);
    --bg: rgb(250, 245, 240);
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    text-decoration: none;
    transition: 0.2s linear;
    box-sizing: border-box;
}

body {
    background-color: var(--bg);
    font-family: sans-serif;
}

section {
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    border: var(--border);
    background-color: var(--bgnav);
}

.header section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
  position: relative;
}

.logo {
  flex: 1;
}

.navbar {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.navbar a {
  font-size: 1.8rem;
  color: #fff;
  padding: 0.5rem 1rem;
}

.navbar a:hover {
  color: var(--main-color);
  border-bottom: 0.1rem solid var(--main-color);
  padding-bottom: 0.5rem;
  font-size: 1.6rem;
}

.icons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}



.btn {
    background: var(--main-color);
    color: #fff;
    padding: 1rem 3rem;
    font-size: 1.7rem;
    cursor: pointer;
    margin-top: 1rem;
    display: inline-block;
    border-radius: 8px;
}

.btn:hover {
    letter-spacing: 0.1rem;
}

.home-container {
    background: url("../img/landingPagePRINCIPAL.png") center/cover no-repeat;
    min-height: 100vh;
    padding-top: 120px;
}

.home-container section {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 120px);
    /* altura total - altura do header */
    padding-top: 120px;
    /* empurra abaixo do header fixo */
}


.content {
    max-width: 65rem;
}

.content h3 {
    color: #000000;
    font-size: 5.4rem;
}

.content p {
    color: #000000;
    font-size: 2rem;
    font-weight: 100;
    line-height: 1.8;
    padding: 1rem 10rem 1rem 2rem;
    padding-right: 20%;
    font-family: 'Verdana';
}

.title {
    font-size: 5rem;
    color: var(--main-color);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.title span {
    color: #000000;
    text-transform: uppercase;
}

.about .row {
    display: flex;
    align-items: center;
    background-color: var(--bg);
    gap: 1.5rem;
}

.about .row .content {
    padding: 2rem;
}

.about .row .content h3 {
    font-size: 3rem;
    color: rgb(0, 0, 0);
}

.about .row .content p {
    font-size: 1.6rem;
    color: #000000;
    line-height: 1.8;
}

.box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 1.5rem;
}

.menu .box-container .box {
    text-align: center;
    border: var(--border);
    padding: 5rem;
    cursor: pointer;
}

.menu .box-container .box img {
    height: 38rem;
}

.menu .box-container .box h3 {
    color: #000000;
    font-size: 2rem;
    padding: 1rem 0;
}

.menu .box-container .box .price {
    color: #000000;
    font-size: 2.5rem;
    padding: 0.5rem 0;
}

.menu .box-container .box span {
    font-size: 1.5rem;
    text-decoration: line-through;
    font-weight: lighter;
}

.menu .box-container .box:hover {
    background-color: #fff;
}

.menu .box-container .box:hover>* {
    color: var(--black);
}

/* Estilo novo para o botão "Mais Modelos" */
.mais-modelos-container {
    text-align: center;
    margin-top: 1rem;
}

.mais-modelos-btn {
    background-color: var(--main-color);
    color: #fff;
    font-size: 2.8rem;
    padding: 1.5rem 4rem;
    border-radius: 8px;
    transition: 0.3s;
    width: 400px;
}

.mais-modelos-btn:hover {
    background-color: var(--black);
    letter-spacing: 0.1rem;
}

.carrossel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
}

.carrossel-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory;
}



.item {
  flex: 0 0 clamp(280px, 80%, 500px); /* Responsivo: mínimo 280px, ideal 80%, máximo 500px */
  height: auto; /* Deixa a altura automática */
  background-color: #d9c1db;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(18px, 3vw, 30px); /* Tamanho de texto responsivo */
  color: #fff;
  font-weight: bold;
  scroll-snap-align: start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
}


.item img {
    width: 60px;
    /* Tamanho padrão dos ícones */
    height: auto;
    margin-bottom: 20px;
    /* Espaço entre o ícone e o texto */
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}

/* Setas estilosas */
.seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    background: none;
    color: #444;
    border: none;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s ease;
    padding: 0 15px;
}

.seta:hover {
    color: #000;
}

.seta.esquerda {
    left: 0;
}

.seta.direita {
    right: 0;
}

.address {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    flex: 1 1 300px;
}

.footer-info h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: var(--bgnav);
}

.footer-info p {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.footer-info a {
    color: var(--main-color);
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-social {
    flex: 1 1 200px;
    text-align: center;
}

.footer-social h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--bgnav);
}

.footer-social .share a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-social .share a:hover {
    transform: scale(1.2);
}

.footer-copy {
    max-width: 1200px;
    margin: 20px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    text-align: center;
    font-size: 1.2rem;
    color: #bbb;
}


.whatsapp-retangular {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-retangular img.whatsapp-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0);
    /* Garante que fique preto mesmo se a imagem for cinza */
}

.whatsapp-retangular:hover {
    background-color: #1ebe5d;
    transform: scale(1.05);
}

/* ===== MEDIA QUERIES COMPLETOS ===== */

@media (max-width: 1024px) {
  .content h3 {
    font-size: 3.5rem;
  }

  .content p {
    font-size: 1.6rem;
    padding: 1rem;
  }

  .menu .box-container .box img {
    height: 30rem;
  }

  .menu .box-container .box {
    padding: 3rem;
  }

  .about .row {
    flex-direction: column;
  }

  .about .row .image img {
    width: 100%;
    height: auto;
  }

  .carrossel-container {
    gap: 16px;
    padding: 18px;
  }

  .item {
    flex: 0 0 85%;
    font-size: 2.2rem;
    padding: 18px;
  }

  .item img {
    width: 55px;
    margin-bottom: 15px;
  }

  .seta {
    font-size: 40px;
    padding: 0 12px;
  }
}

@media (max-width: 768px) {
  :root {
    font-size: 9px;
  }

  .header section {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1rem;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }

  .logo img {
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .navbar {
    position: static;
    transform: none;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    gap: 1rem;
  }

  .navbar a {
    font-size: 1.6rem;
    padding: 0.3rem 0.8rem;
  }

  .icons {
    width: 100%;
    justify-content: center;
    display: flex;
    margin-top: 0.5rem;
    gap: 1rem;
  }

  .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .content h3 {
    font-size: 3rem;
    text-align: center;
  }

  .content p {
    font-size: 1.4rem;
    padding: 1rem;
    text-align: center;
  }

  .btn {
    margin-left: 0;
    margin-right: 0;
  }

  .box-container {
    grid-template-columns: repeat(2, 1fr); /* 2 colunas em tablets */
  }

  .mais-modelos-container {
    display: flex;
    justify-content: center;
  }

  .mais-modelos-btn {
    width: 90%;
    max-width: 300px;
  }

  .about .row .image img {
    max-height: 250px;
    object-fit: cover;
  }

  iframe {
    width: 100% !important;
    height: 300px !important;
  }

  .carrossel-container {
    gap: 15px;
    padding: 15px;
  }

  .item {
    flex: 0 0 90%;
    font-size: 1.8rem;
    padding: 16px;
  }

  .item img {
    width: 50px;
    margin-bottom: 12px;
  }

  .seta {
    font-size: 35px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  :root {
    font-size: 8.5px;
  }

  .content h3 {
    font-size: 2.4rem;
  }

  .btn {
    font-size: 1.5rem;
    padding: 0.8rem 2rem;

    /* CENTRALIZAÇÃO DO BOTÃO */
    display: block;
    margin: 1rem auto 0 auto;
  }

  .menu .box-container .box {
    padding: 2rem;
  }

  .menu .box-container .box img {
    height: 20rem;
  }

  .review .box-container .box p {
    font-size: 1.4rem;
  }

  .review .box-container .box h3 {
    font-size: 1.6rem;
  }

  .whatsapp-retangular {
    font-size: 14px;
    padding: 10px;
    gap: 6px;
  }

  .whatsapp-retangular img.whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  .item {
    flex: 0 0 95%;
    font-size: 1.6rem;
    padding: 12px;
  }

  .item img {
    width: 40px;
    margin-bottom: 10px;
  }

  .seta {
    font-size: 30px;
    padding: 0 8px;
  }

  .about .row .image img {
    max-height: 200px;
  }

  .box-container {
    grid-template-columns: 1fr; /* 1 coluna em celulares pequenos */
  }

  /* DIMINUI ALTURA DO HOME-CONTAINER NO CELULAR */
  .home-container {
    min-height: 60vh;
    padding-top: 80px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 10px 10px;
  }

  .footer-container {
    gap: 0.5rem;
    padding: 0;
  }

  .footer-info h2,
  .footer-social h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }

  .footer-info p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .footer-copy {
    font-size: 1rem;
    padding-top: 4px;
  }

  .footer-social {
    margin-bottom: 0.5rem;
  }

  .footer-info,
  .footer-social {
    padding: 0;
  }
}