body {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

header {
  display: flex;
  flex-direction: column;
}

#logo {
  mix-blend-mode: multiply;
  width: 150vh;
  align-self: center;
}

/* Container da Nav (Ideia 4: Layout Agrupado) */
.menu-principal {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}

.menu-principal ul {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 15px 30px;
  background: rgba(255, 255, 255, 0.8); /* Fundo sutil */
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-principal a {
  text-decoration: none;
}

.btn-lista {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: white;
  color: #4b0082;
  border: 2px solid #4b0082;
  border-radius: 30px;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 2px 4px black;

  animation: entradaSuave 0.6s ease forwards;
  opacity: 0;
}

.btn-lista:hover {
  background: #4b0082;
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 0 20px rgba(75, 0, 130, 0.5);
}

.btn-lista i {
  font-size: 1.1rem;
}

.menu-principal a:nth-child(1) .btn-lista {
  animation-delay: 0.1s;
}
.menu-principal a:nth-child(2) .btn-lista {
  animation-delay: 0.2s;
}
.menu-principal a:nth-child(3) .btn-lista {
  animation-delay: 0.3s;
}
.menu-principal a:nth-child(4) .btn-lista {
  animation-delay: 0.4s;
}

@keyframes entradaSuave {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#container-amostra {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.bloco-amostra {
  gap: 32px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}

#geladeira {
  border-radius: 20px;
  box-shadow: 2px 4px 10px;
}

#geladeira:hover {
  transform: scale(110%);
  transition: 0.3s;
}

.amostra {
  border-radius: 20px;
  max-height: 150px;
  box-shadow: 2px 4px 10px;
}

.amostra:hover {
  transform: scale(120%);
  transition: 0.3s;
}

.titulo {
  text-transform: uppercase;
  text-decoration: underline;
  margin-left: 20px;
}

#empresa {
  display: flex;
}

.descricao {
  font-size: large;
  margin-left: 20px;
  max-width: 65%;
  gap: 150px;
}

aside img {
  width: 50vh;
  margin-right: -2000px;
  border-radius: 20px;
  box-shadow: 2px 4px 10px;
}

aside img:hover {
  transform: scale(110%);
  transition: 0.3s;
}

.area-link {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  width: 50vh;
  margin-left: 20px;
}

.cartao-wtp {
  text-decoration: none;
  display: block;
  perspective: 1000px;
}

.wrapper-imagem {
  position: relative;
  border: 4px solid black;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.wrapper-imagem img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.badge-clique {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: black;
  padding: 6px 10px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 0.9rem;
  white-space: nowrap;
  border: 2px solid black;
  animation: balanço 2s infinite ease-in-out;
  z-index: 10;
}

.wrapper-imagem:hover {
  transform: scale(1.02) rotateX(5deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.wrapper-imagem:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.wrapper-imagem:active {
  transform: scale(0.95);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

@keyframes balanço {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.grade-servicos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card-revelacao {
  position: relative;
  height: 180px;
  background: #eee;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #4b0082;
  cursor: pointer;
}

.card-revelacao img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.frase-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  z-index: 2;
  transition: 0.4s;
}

.frase-overlay span {
  color: black;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  font-family: sans-serif;
}

.card-revelacao:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.card-revelacao:hover .frase-overlay {
  background: rgba(0, 0, 0, 0.2);
}

.card-revelacao:hover .frase-overlay span {
  opacity: 0;
}

@media (max-width: 768px) {
  .grade-servicos {
    grid-template-columns: repeat(2, 1fr);
  }
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 300px;
  margin-left: 20px;
  border: 4px solid rgb(69, 69, 69);
  border-radius: 5px;
  box-shadow: 2px 4px 6px black;
  padding: 10px;
  padding-right: 14px;
}

.caixa-neon {
  position: relative;
  width: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  margin: 25px 0;
  background: white;
  overflow: visible !important;
  z-index: 1;
  padding: 3px;
}

.linha-neon {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}

.linha-neon::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(#00f2fe, #0057ff, transparent 60%);
  animation: rodar 4s linear infinite;
}

.caixa-neon::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: white;
  border-radius: 8px;
  z-index: -1;
}

.caixa-neon label {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.caixa-neon input:focus ~ label,
.caixa-neon input:not(:placeholder-shown) ~ label,
.caixa-neon textarea:focus ~ label,
.caixa-neon textarea:not(:placeholder-shown) ~ label {
  top: 0 !important;
  transform: translateY(-70%);
  left: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #000 !important;
  background-color: white !important;
  padding: 0 6px;
  z-index: 20;
  border-radius: 5px;
  box-shadow: 1px 2px 4px;
}

.caixa-neon input,
textarea {
  position: relative;
  z-index: 2;
  width: 100%;
  border: none !important;
  background: transparent !important;
  padding: 12px;
  outline: none;
}

@keyframes rodar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

form textarea {
  resize: vertical;
  min-height: 100px;
}

.button {
  all: unset;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.6em 2em;
  border: black solid 0.15em;
  border-radius: 0.25em;
  color: black;
  font-size: 1.5em;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition:
    border 300ms,
    color 300ms;
  user-select: none;
  width: 75px;
  height: 30px;
  align-self: center;
  box-shadow: 2px 4px;
}

.button p {
  z-index: 1;
  text-align: center;
}

.button:hover {
  color: white;
}

.button:active {
  border-color: blue;
}

.button::after,
.button::before {
  content: '';
  position: absolute;
  width: 9em;
  aspect-ratio: 1;
  background: blue;
  opacity: 50%;
  border-radius: 50%;
  transition:
    transform 500ms,
    background 300ms;
}

.button::before {
  left: 0;
  transform: translateX(-8em);
}

.button::after {
  right: 0;
  transform: translateX(8em);
}

.button:hover:before {
  transform: translateX(-1em);
}

.button:hover:after {
  transform: translateX(1em);
}

.button:active:before,
.button:active:after {
  background: blue;
}

#video {
  display: flex;
  justify-content: center;
  padding: 20px;
}

h1 {
  text-align: center;
}

.amostra_pintura {
  border-radius: 20px;
  box-shadow: 2px 4px 10px;
  width: 250px;
  max-height: 250px;
  height: 150px;
}

.bloco_pinturas {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.amostra_pintura:hover {
  transform: scale(110%);
  transition: 0.3s;
}

.pintura {
  border-radius: 20px;
  box-shadow: 2px 4px 10px;
  max-width: 165px;
  max-height: 250px;
}

.pintura:hover {
  transform: scale(110%);
  transition: 0.3s;
}

#informaçoes {
  display: flex;
  justify-content: end;
  margin-top: 200px;
  font-size: large;
  margin-right: 10px;
}

#informaçoes a {
  text-decoration: none;
  color: black;
}

#fale_conosco {
  margin-top: -580px;
}

#container-mascote {
  align-self: center;
  margin-top: -300px;
}

#mascote:hover {
  transition: 0.5s ease;
  transform: scale(120%);
}

#mascote {
  mix-blend-mode: multiply;
  width: 50vh;
}

footer {
  display: flex;
  flex-direction: column;
}

.fa-whatsapp {
  color: rgb(3, 199, 3);
  font-size: 20px;
  width: 25px;
}

.fa-instagram {
  color: blueviolet;
  font-size: 20px;
  width: 25px;
}

.fa-location-dot {
  color: red;
  font-size: 20px;
  width: 25px;
}

.fa-envelope {
  font-size: 20px;
  width: 25px;
}

.info {
  border: black solid;
  box-shadow: 2px 4px 5px;
  border-radius: 5px;
  padding: 7px;
  display: block;
  max-width: 210px;
  line-height: 1.2;
  text-align: center;
}

.imagem-lateral {
  margin-top: -30px;
}

#pintura {
  display: flex;
  gap: 10px;
}

.dev-signature {
  font-size: 0.8rem;
  color: #666;
  margin-top: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  #logo {
    width: 270px;
    margin: 0 auto;
  }

  header h1 {
    margin-top: 10px !important;
    font-size: 1.4rem;
  }

  nav {
    margin-top: 20px;
  }

  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
  }

  .bloco-amostra {
    gap: 15px;
    padding: 10px;
  }

  .amostra {
    width: 45%;
    max-height: none;
    height: auto;
    max-height: 90px;
  }

  .descricao {
    max-width: 95%;
    margin-left: 10px;
    flex-direction: column;
    gap: 20px;
    text-align: justify;
  }

  aside img {
    width: 90% !important;
    margin-right: 0 !important;
    height: auto;
    align-items: center;
  }

  #informaçoes {
    justify-content: center;
    margin-top: 40px;
    margin-right: 0;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  #fale_conosco {
    margin-top: 20px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  form {
    margin-left: 0;
    width: 90%;
    max-width: none;
  }

  form button {
    width: 100%;
    padding: 10px;
  }

  .bloco_pinturas {
    flex-wrap: wrap;
  }

  details ul {
    padding-left: 20px !important;
    margin-right: 10px;
  }

  details li {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    word-wrap: break-word;
  }

  summary {
    font-size: 1.1rem;
    padding: 10px 0;
  }

  summary {
    display: flex !important;
    align-items: flex-start;
    text-align: left;
    font-size: 1.1rem;
    padding: 10px 0;
    gap: 8px;
  }

  summary::before {
    flex-shrink: 0;
    margin-top: 4px;
  }

  ul {
    padding-left: 15px !important;
    margin-left: 0 !important;
  }

  li {
    list-style: none;
  }

  .bloco_pinturas {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 10px;
    justify-items: center;
  }

  .amostra_pintura,
  .pintura {
    width: 100% !important;
    height: 150px !important;
    object-fit: cover;
    max-width: none !important;
    margin: 0 !important;
  }

  iframe,
  #video iframe {
    width: 100% !important;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  nav ul {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-content: center;
  }

  nav ul li a {
    display: block;
    width: 100%;
    text-align: center;
  }

  .container-amostra {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }

  .painel {
    width: 45% !important;
    max-width: 100%;
    height: auto;
    object-fit: cover;
  }

  .descricao {
    display: block !important;
    width: 90% !important;
    margin: 0 auto !important;
    text-align: justify;
  }

  .amostra {
    display: block;
    margin: 20px auto !important;
    width: 95% !important;
    height: auto !important;
  }

  #pintura {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    padding: 10px;
    box-sizing: border-box;
  }

  #pintura .descricao {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    text-align: justify;
    font-size: 1rem;
    line-height: 1.5;
  }

  .imagem-lateral {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .area-link {
    width: 90% !important;
    max-width: 400px;
  }

  .wrapper-imagem img {
    width: 100% !important;
    height: auto !important;
    border-radius: 15px;
  }

  footer {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
    gap: 30px;
  }

  #informaçoes {
    order: 1 !important;
    width: 100%;
  }

  #container-mascote {
    order: 2 !important;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  #mascote {
    width: 220px !important;
    height: auto;
  }

  footer > div:nth-child(3) {
    order: 3 !important;
    width: 100%;
  }

  #fale_conosco {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  form {
    width: 90% !important;
    margin: 0 auto !important;
  }

  .dev-signature {
    order: 4 !important;
    margin-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .grade-servicos {
    grid-template-columns: repeat(2, 1fr);
  }
}
