/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #92434c;
}

h1, h2, h3, p, ul, li {
  color: #92434c;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.header {
  background: #f6e6da;
  padding: 15px 0;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.logo img {
  max-width: 180px;
  height: auto;
}

/* MENU */
.menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
.menu a {
  color: #92434c;
  text-decoration: none;
}

/* BANNER */
.banner {
  position: relative;
  text-align: center;
  color: #92434c;
  overflow: hidden;
  height: 70vh; /* altura menor (70% da tela) */
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ajusta a imagem sem distorcer */
}
.banner-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #92434c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-texto h1 {
  font-family: 'Fredoka One', 'Comic Sans MS', cursive; /* fonte infantil */
  font-size: 2.2rem;
  color: #b3545a; /* cor original da frase (ajuste conforme a sua) */
  text-shadow:
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff,
    2px 2px 0 #fff; /* borda branca */
}



/* Responsividade do banner */
@media (max-width: 768px) {
  .banner-texto h1 {
    font-size: 1.5rem;
    padding: 0 15px;
  }
  .banner-texto {
    width: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

/* BOTÃO */
.btn {
  background: #92434c;
  color: #f6e6da;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 20px;
  transition: 0.3s;
}
.btn:hover { background: #7e3b44; }

/* SEÇÕES */
.section {
  padding: 60px 0;
}
.bg-light { background: #f9f9f9; }
h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #92434c;
}

/* ===== SOBRE ===== */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.texto-sobre {
  text-align: left; /* força alinhamento à esquerda */
}

.texto-sobre h2 {
  text-align: left; /* título à esquerda */
  margin-bottom: 15px;
}

.texto-sobre p,
.texto-sobre li {
  text-align: left; /* garante que os parágrafos e listas fiquem à esquerda */
}

@media (max-width: 1024px) {
  .texto-sobre {
    text-align: left !important;
  }
}

.lista-sobre {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}


.lista-sobre li {
  margin-bottom: 8px;
}

.imagem-sobre img {
  border-radius: 10%;
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .texto-sobre {
    padding: 0 20px;
  }

  .imagem-sobre img {
    max-width: 350px;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .imagem-sobre img {
    max-width: 280px;
  }
}

/* SERVIÇOS */
.grid-3 {
  display: grid;
  gap: 24px;
}
@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1023px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* CARDS */
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card h3 {
  padding: 10px;
  font-size: 16px;
}
.card p {
  padding: 0 15px 20px;
  font-size: 14px;
}

/* FOOTER */
.footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px 10px;
}

/* FLOATING BUTTONS */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.floating-buttons a {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-buttons a.instagram-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.floating-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

/* ===== CONTATO ===== */
.grid-contato {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.texto-contato h2 {
  margin-bottom: 15px;
}

.texto-contato p {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* remove os pontinhos e alinha corretamente */
.lista-contato {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.lista-contato li {
  margin-bottom: 8px;
  font-size: 1rem;
  text-align: left;
}

/* imagem responsiva e centralizada */
.imagem-contato img {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 1024px) {
  .grid-contato {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .texto-contato {
    padding: 0 20px;
  }

  .lista-contato li {
    text-align: center;
  }

  .imagem-contato img {
    max-width: 280px;
    margin-top: 20px;
  }
}
