@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #000000;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.whatsapp-container {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;
}

.whatsapp-btn {
  width: 55px;
  height: 55px;

  border: none;
  border-radius: 50%;

  background: #25D366;
  color: white;

  cursor: pointer;

  font-size: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 20px rgba(37, 211, 102, .4);

  transition: .3s;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

.whatsapp-menu {
  position: absolute;
  bottom: 70px;
  right: 0;

  width: 220px;

  background: white;

  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);

  padding: 15px;

  display: none;
}

.whatsapp-menu.ativo {
  display: block;
}

.whatsapp-menu h4 {
  margin-bottom: 12px;
  color: #333;
  font-size: 15px;
}

.whatsapp-menu a {
  display: block;

  text-decoration: none;

  color: #333;

  padding: 10px;

  margin-bottom: 8px;

  border-radius: 8px;

  transition: .25s;
}

.whatsapp-menu a:hover {
  background: #25D366;
  color: white;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background: #111111;
  color: white;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", sans-serif;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
}

.menu-area {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #d4a373;
  transition: 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  transform: scale(1.1);
  color: #b87a3b;
}

.especialista {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px 10px;

  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 500;

  border-radius: 20px;
  background: #111111;

  cursor: pointer;
  overflow: hidden;
  z-index: 1;

  transition: transform 0.3s ease;
}

.especialista:hover {
  transform: translateY(-2px);
  color: white;
}

.especialista::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 22px;

  background: linear-gradient(90deg,
      #b8784f,
      #f0c96d,
      #ffffff,
      #f0c96d,
      #b8784f);

  background-size: 300% 300%;
  animation: bordaLuxo 4s linear infinite;

  z-index: -2;
}

.especialista::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 18px;
  background: #111111;
  z-index: -1;
}

.divider {
  width: 100%;
  margin-top: -18px;
}

.divider svg {
  width: 100%;
  height: 40px;
  display: block;
}

.divider path {
  stroke: url(#lineGrad);
  stroke-width: 2;
  fill: none;
}

.hero-mobile {
  display: none;
}

.hero {
  background: url('Home.png') center/cover;
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  padding-left: 8%;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
}

.hero-content h2 {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
}

.hero-content p {
  font-size: 15px;
  margin-bottom: 30px;
  color: white;
}

.hero-content button {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  background: #c89b3c;
  color: white;
  font-size: 1rem;
  cursor: pointer;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.hero button {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #d4a373;
  cursor: pointer;
}

#produtos {
  padding: 50px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;

  align-items: stretch;
}

.card {
  display: flex;
  flex-direction: column;

  width: 100%;

  background: rgb(218, 216, 216);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  transition: transform .35s ease, box-shadow .35s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .35s ease;
}

.card:hover img {
  transform: scale(1.06);
}

.card h3 {
  margin: 6px 0 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.card p {
  margin: 2px 15px 10px;
  text-align: center;
  line-height: 1.3;
  color: #333333;
}

.divider2 {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, #ffd7a3, #ff7a00, #b45309);
  background-size: 300% 100%;
  animation: moveLine 3s linear infinite;
}

@keyframes moveLine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.sobre {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;

  padding: 120px 10%;

  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.12), transparent 60%),
    radial-gradient(circle at bottom right, rgba(255, 170, 0, 0.08), transparent 60%);
}

.sobre-bg {
  position: absolute;
  width: 500px;
  height: 500px;

  background: radial-gradient(circle, rgba(255, 122, 0, 0.2), transparent 70%);
  filter: blur(80px);

  top: 0;
  left: 10%;
  z-index: 0;
}

.sobre-texto {
  flex: 1.3;
  z-index: 1;
}

.sobre-texto h2 {
  font-size: 38px;
  margin-bottom: 20px;
  position: relative;
  color: white;
}

.sobre-texto h2::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #ff7a00;
  position: absolute;
  bottom: -10px;
  left: 0;
  border-radius: 10px;
}

.sobre-texto p {
  line-height: 1.8;
  font-size: 14px;
  text-align: justify;
  opacity: 0.9;
  color: white;
}

.sobre-img {
  flex: 1;
  z-index: 1;
}

.sobre-img img {
  width: 100%;
  border-radius: 18px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(255, 122, 0, 0.15);

  transition: 0.4s ease;
}

.sobre-img img:hover {
  transform: scale(1.03);
}

.sobre-cubos-videira {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 40px;
  color: white;
  margin-bottom: 80px;
  padding: 0 50px;
}

.sobre-cubo-videira {
  background: linear-gradient(145deg, rgba(255, 122, 0, 0.10), rgba(0, 0, 0, 0.3));
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 12px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
   padding: 30px 40px;
}

.sobre-cubo-videira:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.5);
  box-shadow: 0 20px 50px rgba(255, 122, 0, 0.15);
}

.sobre-cubo-videira h4 {
  font-size: 14px;
  color: #ffb347;
  margin-bottom: 8px;
}

.sobre-cubo-videira p {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.4;
}

#contato {
  padding: 100px 20px;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.15), transparent 50%),
    radial-gradient(circle at bottom right, rgba(255, 170, 0, 0.08), transparent 60%),
    #0f0f0f;
  position: relative;
  overflow: hidden;
}

.contato::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.2), transparent 70%);
  filter: blur(80px);
  top: -100px;
  left: 20%;
  z-index: 0;
}

form {
  display: flex;
  flex-direction: column;
  width: 520px;
  max-width: 95%;
  margin: auto;
  background: linear-gradient(145deg, #ffffff, #f2f2f2);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 122, 0, 0.15);
}

form input {
  margin: 8px 0;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

form h3 {
  margin-top: 18px;
  margin-bottom: 10px;
  color: #1f1f1f;
  font-size: 14px;
}

.opcoes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}

.opcao {
  height: 50px;
  border: 1px solid rgba(255, 122, 0, 0.4);
  border-radius: 8px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.opcao:hover {
  background: #ff7a00;
  color: white;
}

.opcao.ativa {
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  color: white;
}

form>button[type="submit"] {
  margin-top: 20px;
  background: #1f1f1f;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px;
  Font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

form>button[type="submit"]:hover {
  background: #333;
}

.footer-videira {
  background: #0f0f0f;
  color: #fff;
  padding: 60px 10% 20px;
  position: relative;
  overflow: hidden;
}

.footer-videira::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.15), transparent 70%);
  filter: blur(90px);
  top: -200px;
  right: -100px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-col h2,
.footer-col h3 {
  color: #ffb347;
  margin-bottom: 12px;
}

.footer-col {
  position: relative;
  padding-top: 90px;
}

.footer-col p {
  font-size: 13px;
  opacity: 0.8;
  margin: 6px 0;
  line-height: 1.5;
}

.logo-footer {
  position: absolute;
  top: 0;
  left: 0;
  width: 140px;
  height: auto;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

.footer-bottom p {
  margin: 0;
}

.footer-separador {
  margin: 0 10px;
  color: #ff7a00;
}

.footer-dev {
  color: #ffb347;
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

.footer-dev:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(255, 179, 71, .7);
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, .8);
  text-decoration: none;
  font-size: 13px;
  margin: 6px 0;
}

.footer-links a:hover {
  color: #ffb347;
}

/* ==========================
   RESPONSIVIDADE
========================== */

@media (max-width: 768px) {

  header {
    height: 70px;
    padding: 10px 20px;
    flex-direction: row;
    justify-content: space-between;
  }

  .logo {
    width: 65px;
    height: 65px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-area {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000000;
    display: none;
    flex-direction: column;
    padding: 20px;
  }

  .menu-area.ativo {
    display: flex;
  }


  nav {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }


  nav a {
    width: 100%;
    text-align: left;
  }


  .especialista {
    display: flex;
    margin-top: 15px;
    width: 100%;
  }

  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
  }

  .hero {
    height: 100vh;
    padding: 90px 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }


  .hero-content h2 {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 15px;
  }


  .hero-content p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 20px;
  }


  .hero button {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 6px;
  }

  #produtos {
    padding: 40px 20px;
  }

  .grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 20px;
  }

  .card {
    width: 100%;
    max-width: 330px;
  }

  .sobre {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .sobre-img {
    display: none;
  }

  .sobre-texto {
    width: 100%;
    max-width: 340px;
  }

  .sobre-texto h2 {
    text-align: center;
  }

  .sobre-texto h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .sobre-texto p {
    text-align: justify;
    font-size: 12px;
    line-height: 1.5;
  }


  .sobre-cubos-videira {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 0 20px;
  }

  #contato {
    padding: 70px 15px;
  }

  form {
    width: 100%;
    padding: 20px;
  }

  .opcoes {
    grid-template-columns: 1fr;
  }

  .opcao {
    height: 55px;
  }

  .footer-videira {
    padding: 35px 25px 60px;
    min-height: auto;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .logo-footer {
    position: static;
    width: 160px;
    margin: 0 auto -50px;
  }

  .footer-col {
    width: 100%;
    padding-top: 0;
    text-align: left;
  }

  .footer-col p {
    margin: 5px 0;
    line-height: 1.5;
  }

  .footer-links,
  .footer-social {
    position: static;
    width: 100%;
    margin-top: 15px;
  }

  .footer-links a {
    display: inline-block;
    margin-right: 15px;
  }

  .whatsapp-container {
    right: 15px;
    bottom: 15px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }


}

@media (max-width:575px){

    #produtos{

        padding:40px 15px;

    }

    .grid{

        grid-template-columns:1fr;
        gap:20px;

    }

    .card img{

        height:220px;

    }

}


/* ==========================
   TABLET
========================== */

/* ==========================
   TABLET
========================== */

@media (min-width:769px) and (max-width:1024px){

    .grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 700px;
        margin: 0 auto;
    }

    .sobre{
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 80px 40px;
    }

    .sobre-img{
        display: none;
    }

    .sobre-texto{
        max-width: 800px;
    }

    .sobre-texto h2::after{
        left: 50%;
        transform: translateX(-50%);
    }

}