header {
    width: 100%;
    padding: 28px 8%;
    position: sticky;
    top: 0;
    background-color: var(--color-primary-1);
    z-index: 3;
}

#navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#nav_logo {
    font-size: 24px;
    color: var(--color-primary-6);
}

#nav_list {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav-item a {
    text-decoration: none;
    color: #1d1d1dad;
    font-weight: 600;
}

.nav-item.active a {
    color: black!important;
    border-bottom: 3px solid var(black);
}

#mobile_btn {
    display: none;
}

#mobile_menu {
    display: none;
}

@media screen and (max-width: 1170px) {
    #nav_list,
    #navbar .btn-default {
        display: none;
    }

    #mobile_btn {
        display: block;
        border: none;
        background-color: transparent;
        font-size: 1.5rem;
        cursor: pointer;
    }

    #mobile_menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 12px 0px;
    }

    #mobile_nav_list .nav-item {
        list-style: none;
        text-align: center;
    } 
}


:root {
    --color-primary-1: #fff;
    --color-primary-2: #ffe8b4;
    --color-primary-3: #f8d477;
    --color-primary-4: #8f0000;
    --color-primary-5: #8f0000;
    --color-primary-6: #8f0000;

    --color-neutral-0: #fff;
    --color-neutral-1: #1d1d1d;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-primary-1);
}

section {
    padding: 28px 8%;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary-5);
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
    color: white;
    text-decoration: none;
}

.btn-default:hover {
    background-color: black;
}


/*primeira parte*/

/* CSS */
.hero {
  background: url('fundo3.png') no-repeat center center;
  background-size: cover;
  height: 65vh; /* Tela cheia */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5%;
}

.cta-button {
  background-color: #00C65E; /* Verde WhatsApp */
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #00a94e;
}

@media (max-width: 768px) {
  .hero {
    background: url('capaCelular.png') no-repeat center center;
    background-size: cover;
    padding-left: 10%;
    justify-content: center; /* você pode mudar para left, center, etc. */
  }
}


/* Sobre nós */
.sobre-nos {
  padding: 80px 20px;
  background-color: #f8f8f8;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
  flex-wrap: wrap;
}

.imagem-sobre img {
  max-width: 100%;
  height: auto;
  border-radius: 9px;
}

.texto-sobre {
  max-width: 600px;
}

.texto-sobre h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

.texto-sobre p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

.botao-sobre {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.botao-sobre:hover {
  background-color: #8f0000;
}

.imagem-sobre,
.texto-sobre {
  flex: 1;
  min-width: 300px;
}



/*nossos produtos*/



* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.produtos-container {
  width: 100%;
  padding: 40px 20px;
  background-color: #fff;
}

.titulo {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 5px;
}

.subtitulo {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.grid-produtos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.produto {
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 10px;
}

.produto img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 5px;
}

.produto h4 {
  font-size: 1rem;
  margin: 10px 0 5px;
}

.preco {
  font-size: 1.1rem;
  color: #444;
}

.botao-comprar {
  margin-top: 10px;
  display: inline-block;
  padding: 10px 20px;
  background-color: #8f0000;
  color: white;
  text-decoration: none;
  border: 2px solid #8f0000;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.botao-comprar:hover {
  background-color: white;
  color: #00C65E;
}

/* 2 colunas no celular */
@media (max-width: 768px) {
  .grid-produtos {
    grid-template-columns: repeat(2, 1fr);
  }
}




/* Estilos para telas maiores (desktop) */
.banner-section {
    height: 65vh;
    width: 100%;
    background-image: url('lojashopee.png'); /* Não se esqueça de substituir o caminho! */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 5%;
}

.banner-content {
    width: 50%;
    color: #fff;
}

.banner-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #8f0000;
}

.banner-content p {
    font-size: 1.2em;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #000;
}

.banner-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #a6a6a6;
    
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.banner-button:hover {
    background-color: #8f0000;
    color: white;
}

/* --- Mídia Query para dispositivos móveis --- */
@media (max-width: 768px) {
    .banner-section {
        height: auto;
        padding: 50px 5%;
        flex-direction: column; /* Alinha o conteúdo verticalmente */
       
        
    }

    .banner-content {
        width: 100%; /* Ocupa a largura total */
        text-align: center; /* Centraliza o texto */
    }

    .banner-content h1 {
        font-size: 2em; /* Diminui o tamanho do título */
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 1em; /* Diminui o tamanho do parágrafo */
        margin-bottom: 20px;
    }

    .banner-button {
        padding: 12px 25px; /* Diminui o preenchimento do botão */
    }

    .banner-section {
    height: 100vh;
    width: 100%;
    background-image: url('shopeecelular.png'); /* Não se esqueça de substituir o caminho! */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 5%;
}
}



.avaliacoes {
  position: relative;
  margin-top: 60px;
  background: #fff;
  background-color: white;
  border-radius: 16px;
  padding: 40px 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.avaliacao {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.avaliacao.ativa {
  opacity: 1;
  position: relative;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.estrelas {
  color: #f6c000;
  font-size: 20px;
  margin-bottom: 10px;
}

.texto {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  padding: 0 20px;
}

.nome {
  font-weight: bold;
  color: #111;
}

.avaliacao-frase {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.2rem;
  color: #333;
  margin: 40px 20px;
  line-height: 1.6;
}

.detalhe {
  font-size: 13px;
  color: #888;
}

.texto-avaliacao {
    text-align: center;
}





.footer {
  background-color: #fff;
  color: black;
  padding: 50px 0 20px;
  font-family: 'Segoe UI', sans-serif;
  height: 35vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 250px;
  text-decoration: none;
}

.logo-footer {
  font-size: 24px;
  font-weight: bold;
  color: #ff6ec4;
}

.logo-footer span {
  color: #ffc37f;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
}

.footer-social img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 14px;
}

.footer-links a {
  color: #aaa;
  margin-left: 20px;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-credit {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #ccc;
}

.footer-credit span {
  color: #ff6ec4;
}


.footer-social {
  margin-top: 20px;
  text-align: center;
}

.footer-social a {
  margin: 0 10px;
  font-size: 24px;
  text-decoration: none;
}

.footer-social .instagram i {
  color: #f9a8d4; /* rosa claro */
}

.footer-social .facebook i {
  color: #93c5fd; /* azul claro */
}

/*icon whatsapp*/

.whatsapp-link {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-icon {
  width: 60px; /* Tamanho do ícone */
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.whatsapp-icon:hover {
  transform: scale(1.1);
}



:root {
    --primary-color: #d4a373; 
    --background-form-color: #ffff; 
    --text-color: #333; 
}

.contact-section {
    background-image: url('CapaForm.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    height: 70vh;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   /* background-color: rgba(0, 0, 0, 0.5);*/
    z-index: 1;
}

.contact-form-container {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
    margin-right: 5%;
}

.contact-form-card {
    background-color: var(--background-form-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form-card h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 10px;
}

.contact-form-card p {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 0.9em;
}

.contact-form-card label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-color);
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select { /* Adicionando o select */
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form-card button {
    width: 100%;
    padding: 12px;
    background-color: #8f0000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-form-card button:hover {
    background-color: black;
}

@media (max-width: 768px) {
      .contact-section {
        justify-content: center;
    }

    .contact-form-container {
        margin: 0;
        margin-top: 100px; /* Adiciona uma margem superior de 100px */
    }

    .contact-section {
    background-image: url('CapaForm\ -\ Copia.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    height: 100vh;
    position: relative;
}
}