* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  color: #333;
  background-color: #e5dfcf;
  font-family: "Nunito", sans-serif;
}
/* marca */
.marca {
  display: flex;
  justify-content: center;
  align-items: center;
}
.marca img {
  width: 40%;
  height: 250px;
  object-fit: cover;
}

/* cabeca */
.cabeca {
  background-color: #57371e;
  width: 100%;
  padding: 16px 32px;
  box-shadow: 0 2px 6px #57371e;
  position: sticky;
  top: 0;
}
.cabeca .itens_cabeca {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 25px;
  font-weight: bold;
  font-family: "oswald";
}

/* navegacao */
.navegacao ul {
  list-style: none;
  display: flex;
  font-size: 18px;
  gap: 10px;
}
.navegacao ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.navegacao ul li a:hover {
  background-color: #d4a373;
}

/* Botão do zap */
.botao_zap1 {
  background-color: #25D366;
  color: #000000;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  gap: 5px;
}

.botao_zap1:hover {
  background-color: #000000;
  color: #25D366;
  transform: scale(1.05);
}

.botao_zap1 img{
  height: 15px;
}

/* Ajuste */
.cel_teste {
  display: none;
  font-size: 32px;
  cursor: pointer;
}

.inicio {
  background-color: #2c2c2c;
  color: #fff;
  padding: 80px 32px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.inicio h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
}

.inicio p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  color: #e5dfcf;
}

.inicio_caixas{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Botão de agendar atendimento) */
.caixa_agendar {
  background-color: #d4a373;
  color: #2c2c2c;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.caixa_agendar:hover {
  background-color: #25D366;
  color: #000000;
  transform: translateY(-2px);
}
.caixa_servicos {
  background-color: transparent;
  color: #d4a373;
  border: 2px solid #d4a373;
  padding: 0.8rem 1.8rem;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.caixa_servicos:hover {
  background-color: #e5dfcf;
  color: #2c2c2c;
  border: 2px solid #e5dfcf;
  transform: translateY(-2px);
}
.caixa_servico p{
  font-size: 17px;
}

/* Sobre */
.sobre {
  background-color: #e5dfcf;
  color: #57371e;
  padding: 80px 32px;
  text-align: center;
}
.sobre img{
  height: 300px;
  margin-bottom: 16px;
  border-radius: 50%;
}
.sobre h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #57371e;
  font-family: "Playfair Display", serif;
}
.sobre p {
  font-size: 16px;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.sobre-caixas {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.sobre_caixa{
  background-color: #f5f2ef;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0);
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sobre_caixa:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #57371e;
}
.sobre_caixa h3 {
  color: #57371e;
  margin-bottom: 0.5rem;
  font-family: "Playfair Display", serif;
}
.sobre_caixa p {
  color: #2c2c2c;
  font-size: 0.95rem;
  line-height: 1.5;
}

.servicos {
  background-color: #2c2c2c;
  padding: 80px 32px;
  text-align: center;
  color: #2c2c2c;
}

.servicos h2 {
  font-size: 32px;
  margin-bottom: 3rem;
  color: #fff;
  font-family: "Playfair Display", serif;
}

.servicos-caixas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 2.5rem;
}

.caixa_servico {
  background-color: #e5dfcf;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.caixa_servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #e5dfcf;
}

.caixa_servico h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: #57371e;
  font-family: "Playfair Display", serif;
}

.caixa_servico ul {
  list-style: none;
  padding-left: 0;
}

.caixa_servico ul li {
  margin-bottom: 0.6rem;
  padding-left: 1.2rem;
  position: relative;
  color: #000000;
  font-size: 0.95rem;
  line-height: 1.4;
}

.caixa_servico ul li::before {
  content: "•";
  color: #57371e;
  font-weight: bold;
  position: absolute;
  left: 0;
}
/* Botão do zap */
.botao_zap2 {
  background-color: #25D366;
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.botao_zap2:hover {
  background-color: #fcfcfc;
  color: #282828;
}

/* Seção de Atendimento */
.atendimento {
  background: #ffffff;
  padding: 4rem 32px;
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 1100px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.atendimento-caixas {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}

/* Bloco de informações */
.info-atendimento {
  flex: 1;
  min-width: 300px;
}

.info-atendimento h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #2c2c2c;
  font-family: "Playfair Display", serif;
}

.info-atendimento p {
  font-size: 16px;
  margin: 0.4rem 0;
  color: #444;
}

/* Bloco CTA WhatsApp */
.contato-atendimento {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #000000;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 15px rgb(0, 0, 0);
}

.contato-atendimento h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
  font-family: "Playfair Display", serif;
}

.contato-atendimento p {
  font-size: 16px;
  margin-bottom: 16px;
}

/* Botão grande */
.botao-zap-2 {
  display: inline-block;
  background-color: #282828;
  color: #25D366;
  font-weight: bold;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.botao-zap-2:hover {
  background-color: #ffffff;
  transform: scale(1.05);
}
/* Texto extra */
.botao-contato p {
  margin: 0.3rem 0;
  font-size: 16px;
}

/**/
.trabalho {
  padding: 50px 20px;
  background: #282828;
  text-align: center;
}

.trabalho h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #e5dfcf;
  font-family: "Playfair Display", serif;
}

.trabalho-blocos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(375px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.trabalho-bloco {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trabalho-bloco:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px #d4a373;
}

.trabalho-bloco img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.trabalho-bloco h3 {
  margin: 15px 0 5px;
  font-size: 1.3rem;
  color: #222;
  font-family: "Playfair Display", serif;
}

.trabalho-bloco p {
  font-size: 0.95rem;
  color: #2c2c2c;
  padding: 0 15px 20px;
}

/**/
.assinaturas {
  padding: 50px 20px;
  background: #e5dfcf;
  text-align: center;
}
.assinaturas h2 {
  font-size: 32px;
  color: #222;
  font-family: "Playfair Display", serif;
}
.assinaturas h3{
  font-size: 26px;
  margin-bottom: 30px;
  font-family: "Playfair Display", serif;
}
.caixas-assinaturas {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.assinatura {
  color: white;
  border-radius: 12px;
  padding: 20px;
  width: 400px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.48);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.assinatura:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgb(255, 255, 255);
}
.assinatura h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}
.assinatura p{
  margin: 0 0 10px 0;
}
.assinatura ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
/* Preço */
.assinatura .destaque {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

.caixas-info-assinatura{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.48);
  border-radius: 12px;
}
.caixa-info-assinatura {
  color: white;
  padding: 20px 0px 20px 0px;
  width: 550px;
  text-align: justify;
}
.caixa-info-assinatura h3 {
  font-size: 26px;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}
.caixa-info-assinatura p{
  margin: 0 0 10px 0;
}
.caixa-info-assinatura ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.caixa-info-assinatura .destaque {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

.caixas-info-assinatura{
  background: linear-gradient(135deg, #000000, #1d1d1d);
}
.essencial{
  background: linear-gradient(135deg, #8B4513, #dd7a34);
}
.premium{
  background: linear-gradient(135deg, #DAA520, #ffc229);
}
.master{ 
  background: linear-gradient(135deg, #800080, #ff02ff);
}

/* Responsivo */
@media (max-width: 900px) {
  .caixas-assinaturas {
    flex-direction: column;
    align-items: center;
    border-radius: 12px;
  }
}

/*contato */
.contato {
  background: #282828;
  padding: 4rem 1.5rem;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
}

.caixas-contato {
  display: flex;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  background-color: #e5dfcf;
  border-radius: 10%;
}

/* Logo */
.logo-contato {
  text-align: center;
}
.logo-contato img {
  border-radius: 10%;
  max-width: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Caixas */
.caixa-contato {
  background-color: #e5dfcf;
  padding: 1.8rem;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.caixa-contato:hover {
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.422);
}

.caixa-contato h3 {
  margin-bottom: 1.2rem;
  color: #282828;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  border-bottom: 2px solid rgba(40,40,40,0.2);
  padding-bottom: 0.5rem;
}

/* Ícones + texto */
.caixa-contato p {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0.8rem 0;
}

.caixa-contato a {
  text-decoration: none;
  color: #282828;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease, transform 0.2s ease;
}

.caixa-contato a:hover {
  color: #DAA520;
  transform: translateX(4px);
}

/* Ícones */
.icon {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
  transition: transform 0.3s ease;
}

.icon:hover {
  transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .contato {
    padding: 3rem 1rem;
  }

  .logo-contato img {
    max-width: 130px;
  }

  .caixa-contato {
    padding: 1.2rem;
  }

  .caixa-contato h3 {
    font-size: 1.2rem;
  }
}


/* Responsivo */
@media (max-width: 768px) {
  .caixas-contato {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

footer{
  background-color: #222222;
  color: #d4a373;
  text-align: center;
  padding: 15px;
}

footer a{
  text-decoration: none;
  color: #fff;
}