@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Momo+Signature&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Science+Gothic:wght@100..900&family=Stack+Sans+Notch:wght@200..700&display=swap');
*{
    max-width: 100%;
    border: 0;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #f0ecec;
}

.menu {
  width: 100%;
  padding: 16px 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 40px;
}

/* MENU DESKTOP */
.opcoes {
  display: flex;
  gap: 32px;
}

.opcoes a {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.opcoes a:hover {
    color: #0ea5e9;
    text-decoration: underline 5px #0ea5e9;
}

/* HAMBURGUER */
.hamburguer {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburguer span {
  width: 26px;
  height: 2px;
  background: #111;
  transition: .3s;
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburguer {
    display: flex;
  }

  .opcoes {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 30px 0;

    transform: translateY(-200%);
    transition: .4s ease;
  }

  .opcoes.ativo {
    transform: translateY(0);
  }
}

@media(max-width:398px){
    .conteudo2 .texto h1{
    font-size: 50px;
    font-weight: 200;
}
}

/* CONTEÚDO */
.conteudo {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.conteudo2 {
  max-width: 1200px;
  width: 100%;
}

.texto {
  text-align: center;
}

.texto h1 {
    margin-top: 70px;
    margin-bottom: 50px;
    font-weight: 900;
  font-size: clamp(4.2rem, 5vw, 3.5rem);
}

.texto h3 {
  margin-top: 10px;
  margin-bottom: 70px;
  color: #6e6e73;
}

/* BOTÕES */
.botoes {
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.button:hover {
  transform: translateY(-2px);
}

.neu-button {
  padding: 14px 26px;
  background: #e0e0e0;
  color: #000;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
}

/* IMAGEM FULL WIDTH */
.img-full {
  width: 100vw;
  overflow: hidden;
  margin-top: 40px;
}

.img-full img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}



/* From Uiverse.io by satyamchaudharydev */ 
.button a{
    text-decoration: none;
    color: white;
}
.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  padding-block: 0.5rem;
  padding-inline: 1.25rem;
  background-color: rgb(0 107 179);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 10px;
  font-weight: bold;
  border: 3px solid #ffffff4d;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
}

.icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease-in-out;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

/* From Uiverse.io by adamgiebl */ 
.neu-button {
  background-color: #e0e0e0;
  border-radius: 50px;
  box-shadow: inset 4px 4px 10px #bcbcbc, inset -4px -4px 10px #ffffff;
  color: #4d4d4d;
  cursor: pointer;
  font-size: 13px;
  padding: 9px 10px;
  transition: all 0.2s ease-in-out;
  border: 2px solid rgb(206, 206, 206);
}

.neu-button:hover {
  box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff;
}

.neu-button:focus {
  outline: none;
  box-shadow: inset 2px 2px 5px #bcbcbc, inset -2px -2px 5px #ffffff, 2px 2px 5px #bcbcbc, -2px -2px 5px #ffffff;
}

.neu-button a{
    text-decoration: none;
    color: black;
}

/*Titulo CATALOGO*/

.texto-catalogo {
  width: 100%;
  text-align: center;
  margin: 80px 0 40px;
  position: relative;
}

.texto-catalogo h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 4px;
  color: #000;
}

/* linha decorativa */
.texto-catalogo .linha {
  display: block;
  width: 80px;
  height: 4px;
  background: #000;
  margin: 16px auto 0;
  border-radius: 10px;
}

/* mobile */
@media (max-width: 600px) {
  .texto-catalogo {
    margin: 60px 0 30px;
  }

  .texto-catalogo h1 {
    letter-spacing: 2px;
  }
}


/*CELULARES CATALOGO*/

.catalogo {
  max-width: 1300px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

/* CARD */
.card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: transform .3s ease, box-shadow .3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* CARD BODY */
.card-body {
  padding: 25px;
}

.card-body h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.desc {
  font-size: 14px;
  color: #666;
}

.preco {
  font-size: 28px;
  font-weight: 600;
  margin-top: 15px;
}

.apartir {
  font-size: 13px;
  color: #777;
}

/* INFO */
.card-body h4 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 14px;
}

.cores, .capacidade {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cores span,
.capacidade span {
  padding: 6px 10px;
  border-radius: 20px;
  background: #f5f5f7;
  font-size: 12px;
  cursor: pointer;
  transition: background .2s;
}

.cores span:hover,
.capacidade span:hover {
  background: #e1e1e6;
}

/*sessão sobre-nós*/

.about-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}

/* TEXTO */
.about-content {
  text-align: center;
}

.about-content .subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  font-weight: 600;
  color: #6e6e73;
}

.about-content h2 {
  font-size: clamp(1.8rem, 6vw, 3rem);
  margin: 16px 0 20px;
  line-height: 1.2;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* STATS */
.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat {
  min-width: 120px;
}

.stat strong {
  font-size: 1.8rem;
  display: block;
}

.stat span {
  font-size: 0.85rem;
  color: #6e6e73;
}

/* IMAGEM */
.about-image img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* ===== TÍTULO CATÁLOGO ===== */
.texto-catalogo {
  text-align: center;
  margin: 100px 0 40px;
}

.texto-catalogo h1 {
  font-size: clamp(1.8rem, 6vw, 3.2rem);
  letter-spacing: 3px;
  font-weight: 700;
}

.texto-catalogo .linha {
  width: 70px;
  height: 4px;
  background: #000;
  margin: 14px auto 0;
  border-radius: 10px;
}

/* ===== DESKTOP ===== */
@media (min-width: 900px) {
  .about-section {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .about-content {
    text-align: left;
  }

  .about-content p {
    margin-left: 0;
  }

  .stats {
    justify-content: flex-start;
  }

  .about-image img {
    max-height: 480px;
  }
}

/*Roda Pé*/

.footer {
  background: linear-gradient(180deg, #0f172a, #020617);
  color: #cbd5f5;
  padding: 80px 10% 30px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

/* Marca */
.footer-brand h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: .3s;
}

.social-links a:hover {
  background: #38bdf8;
  color: #020617;
}

/* Colunas */
.footer-column h4,
.footer-newsletter h4 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  text-decoration: none;
  color: #94a3b8;
  font-size: 14px;
  transition: .3s;
}

.footer-column a:hover {
  color: #38bdf8;
}

/* Newsletter */
.footer-newsletter p {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 16px;
}

.footer-newsletter form {
  display: flex;
  gap: 10px;
}

.footer-newsletter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 14px;
}

.footer-newsletter button {
  background: #38bdf8;
  border: none;
  color: #020617;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: .3s;
}

.footer-newsletter button:hover {
  background: #0ea5e9;
}

/* Bottom */
.footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748b;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #64748b;
  text-decoration: none;
}

.footer-links a:hover {
  color: #38bdf8;
}

/* Responsivo */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

