@charset "UTF-8";
/* =====================
   VARIÁVEIS
===================== */
/* =====================
   RESET
===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #222;
  background: #fff;
  line-height: 1.5;
}

/* =====================
   HEADER
===================== */
header {
  background-color: #001c80;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eaeaea;
  color: #fff;
}
header h1 {
  font-size: 22px;
}
header nav a {
  margin-left: 15px;
  text-decoration: none;
  color: #ffffff;
}
header nav a:hover {
  text-decoration: underline;
}

/* =====================
   HERO
===================== */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #f7f7f7;
  /* From Uiverse.io by Creatlydev */
}
.hero h2 {
  font-size: 28px;
}
.hero .button {
  margin-top: 30px;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--clr);
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}
.hero .button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero .button:hover {
  background-color: #000;
}
.hero .button:hover .button__icon-wrapper {
  color: #000;
}
.hero .button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}
.hero .button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}
.hero .button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

/* =====================
   PRODUTOS (SLIDER)
===================== */
.produtos {
  padding: 60px 20px;
  /* Conteúdo */
}
.produtos h2 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 5px;
}
.produtos p {
  text-align: center;
  margin-bottom: 30px;
  color: #5e5e5e;
}
.produtos .slider {
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.produtos .slider-window {
  overflow: hidden;
  width: 100%;
}
.produtos .slider-track {
  display: flex;
  transition: transform 0.4s ease;
}
.produtos .card {
  flex: 0 0 33.3333%;
  padding: 0 12px;
  text-decoration: none;
  color: #222;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* Caixa do produto */
  /* Área fixa da imagem */
}
.produtos .card:hover {
  transform: translateY(-4px);
}
.produtos .card .card-inner {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.produtos .card .image-wrapper {
  width: 100%;
  height: 280px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.produtos .card .image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.produtos .card-content {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.produtos .card-content h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}
.produtos .card-content span {
  font-weight: bold;
  font-size: 14px;
}
.produtos .arrow {
  background-color: #fff;
  color: #001c80;
  border: none;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 30px;
  transition: font-size 0.5s ease;
}
.produtos .arrow:hover {
  font-size: 40px;
}

/* =====================
   AVALIAÇÕES
===================== */
.avaliacoes {
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
}
.avaliacoes .carousel {
  margin: 30px auto 0;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}
.avaliacoes .review {
  width: 250px;
  height: 160px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 45px 20px 25px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ddd;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  font-size: 16px;
  line-height: 1.4;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.avaliacoes .review:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.avaliacoes .review .user {
  position: absolute;
  top: 10px;
  left: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  background: #f3f3f3;
  padding: 5px 10px;
  border-radius: 20px;
}
.avaliacoes .review .stars {
  font-size: 17px;
  color: #f5b301;
  margin-top: 10px;
}
.avaliacoes .review .text {
  color: #333;
  overflow: hidden;
}

/* =====================
   CONTACTO + FOOTER
===================== */
.contacto-footer {
  background: #ffffff;
  padding: 80px 20px;
}

.contacto-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

/* COLUNA ESQUERDA */
.contacto-info {
  color: #444;
}
.contacto-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.contacto-info p {
  margin-bottom: 25px;
  line-height: 1.6;
}
.contacto-info .socials {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}
.contacto-info .socials a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
.contacto-info .legal {
  font-size: 13px;
  color: #777;
}

/* COLUNA DIREITA */
.contacto-form h2 {
  font-size: 22px;
  margin-bottom: 25px;
}
.contacto-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contacto-form form input,
.contacto-form form textarea {
  padding: 14px;
  border: 1px solid #ddd;
  background: #eee;
  font-size: 14px;
}
.contacto-form form textarea {
  min-height: 120px;
  resize: vertical;
}
.contacto-form form button {
  width: 120px;
  padding: 12px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 5PX;
  cursor: pointer;
  font-size: 14px;
}
.contacto-form form button:hover {
  background: #001c80;
  color: #fff;
}

/* ========================================
   Responsividade
=========================================== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  header nav {
    display: none;
  }
  .produtos .slider {
    max-width: 100%;
  }
  .produtos .card {
    flex: 0 0 100%;
    padding: 0 8px;
  }
  .produtos .image-wrapper {
    height: 240px;
  }
  .produtos .arrow {
    font-size: 26px;
  }
  .produtos .arrow:hover {
    font-size: 26px;
  }
  .avaliacoes .carousel {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }
  .avaliacoes .review {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
  .avaliacoes .carousel::-webkit-scrollbar {
    display: none;
  }
  .contacto-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contacto-form button {
    width: 100%;
  }
}/*# sourceMappingURL=estilos.css.map */