:root {
  --cor-fundo: #fff7f9;
  --cor-primaria: #000;
  --cor-texto: #fff;
  --altura-navbar: 70px;
  --espacamento: 30px;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: var(--cor-fundo);
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  color: var(--cor-texto);
  height: var(--altura-navbar);
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Sombra opcional */
  z-index: 1000;/*Fixar nav para os elementos*/
}

.navbar .logo img {
  height: 50px;
  width: auto;
}

.navbar .menu {
  display: flex;
  gap: 20px;
  padding: 40px;
}

.navbar .menu a {
  color: var(--cor-texto);
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: text-decoration 0.3s;
  
}

.navbar .menu a:hover {
  text-decoration: underline;
}

img {
  width: 100%;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    height: auto;
    
  }

  .navbar .menu {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    
  }
}

.imagem-cheia {
  background-image: url('https://images.unsplash.com/photo-1604014238256-1be220b2d18c');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.overlay {
  background-color: rgba(255, 94, 156, 0.7);
  padding: 60px;
  border-radius: 15px;
}

.overlay h1 {
  font-size: 2.5em;
  margin-bottom: 15px;
}

.overlay p {
  font-size: 1.2em;
}

.footer-vitrine {
  background-color: #fff7f9;
  padding: 40px 20px;
  text-align: center;
}

.links-footer {
  margin-bottom: 30px;
}

.links-footer a {
  display: inline-block;
  margin: 10px 15px;
  color: #ff5e9c;
  font-weight: bold;
  text-decoration: none;
  font-size: 1em;
  transition: 0.3s;
}

.links-footer a:hover {
  text-decoration: underline;
}

.mapa-container iframe {
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 50%;
}

.plano-assinatura {
  background: linear-gradient(135deg, #ff006f, #ff94c2);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.plano-assinatura h2 {
  font-size: 2.5em;
  margin-bottom: 40px;
}

.plano-box {
  background-color: white;
  color: #ff0062;
  max-width: 350px;
  margin: 0 auto;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.plano-box h3 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.plano-box .preco {
  font-size: 2em;
  font-weight: bold;
  margin: 15px 0;
}

.plano-box .detalhes {
  font-size: 1em;
  margin-bottom: 30px;
  line-height: 1.5em;
}

.plano-box button {
  background-color: #ff006f;
  color: white;
  border: none;
  padding: 15px 35px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.plano-box button:hover {
  background-color: #e44e8c;
}

/* Hero Section */
.hero {
  background-image: url('https://images.unsplash.com/photo-1607082352395-d763deb6f9c9');
  /* imagem de beleza */
  background-size: cover;
  background-position: center;
  color: rgb(0, 0, 0);
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 2.8em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero button {
  background-color: #ff0084;
  color: rgb(255, 255, 255);
  border: none;
  padding: 15px 30px;
  font-size: 1em;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.hero button:hover {
  background-color: #e94b88;
}

/* Como Funciona */
.como-funciona {
  background-color: #ff0084;
  text-align: center;
  padding: 20px 20px;
}

.como-funciona h2 {
  color: hsl(0, 0%, 0%);
  font-size: 2em;
  margin-bottom: 10px;
}

.como-funciona img {
  width: 250px;
  height: 550px;
}

/* O que vem na Box */
.box-vitrine {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.box-vitrine h2 {
  color: #ff5e9c;
  font-size: 2em;
  margin-bottom: 30px;
}

.box-vitrine {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.box-vitrine h2 {
  color: #ff5e9c;
  font-size: 2em;
  margin-bottom: 30px;
}

.box-section {
  padding: 50px;
}

.carousel-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  overflow: hidden;
  background-color:#fff7f9;
  border-radius: 10px;
  padding: 10px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-item {
  flex: 0 0 33.33%;
  padding: 6px;
}

.carousel-item img {
  width: 300px;
  height: 300px;
  border-radius: 18px;
}

.carousel-buttons {
  position: absolute;
  top: 50%;
  width: 1000px;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-button {
  background-color: rgba(255, 98, 176, 0.5);
  border: none;
  color: white;
  font-size: 28px;
  padding: 10px 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-button:hover {
  background-color: rgba(255, 0, 123, 0.8);
}


.porque {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 65px;
}

.porque p {
  color: #ffffff;
  text-align: justify;
  font-size: 16px;
}

.porque h3 {
  color: #ffffff;
  text-align: justify;
  font-size: 20px;
}

.form-wrapper {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin: 40px auto;
  width: 90%;
  max-width: 900px;
}

h1,
h2 {
  text-align: center;
  color: #333;
}

form label {
  display: block;
  margin: 12px 0 4px;
  font-weight: bold;
}

form input,
form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.submit-btn {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  background-color: #e91e63;
  color: white;
  cursor: pointer;
  display: block;
  width: 100%;
}

.submit-btn:hover {
  background-color: #c2185b;
}

.form-container {
  width: 100%;
  margin: 0 auto;
}

.form-box {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  width: 96%;
}

.form-box h3 {
  margin-top: 0;
  font-size: 18px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  margin-right: 90%;
}

.checkbox-item input[type="checkbox"] {
  transform: scale(1.1);
  margin: 0 5px -10px 0;
  /* opcional: controle fino da distância */
}

.checkbox-item label {
  font-size: 16px;
  white-space: nowrap;
  margin-right: 100%;
}









/************** Responsivo para tablets *****************/
@media (max-width: 1024px) and (min-width: 760px) {
  .carousel-container {
    overflow: visible;
    width: 56%;
    align-items: center;
  }

  .hero {
    padding: 80px 20px;
  }

  img {
    width: 100%;
    height: 400px;
  }

  .carousel-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    /* espaçamento entre os cards */
  }

  .carousel-item {
    width: 80%;
    max-width: 400px;
  }




  p {
    font-size: 16px;
    text-align: center;
  }

  .form-wrapper {
    width: 90%;
    max-width: 600px;
    margin: 65px;
    padding: 20px;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  form label,
  form select,
  form input,
  form button {
    font-size: 16px;
    width: 100%;
  }

  .form-box {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 8px;
  }

  .checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  h2,
  h3 {
    text-align: center;
    margin: 5px;
    font-size: 28px;
  }

  .mapa-container iframe {
    width: 80%;
  }

  .navbar .menu {
    display: flex;
    flex-direction: row;
    /* padrão: itens na horizontal */
    gap: 20px;
    /* espaço entre os itens */
    justify-content: center;
    /* ou center, space-between, etc */
    align-items: center;
    /* alinha verticalmente */
    
  }

  img.ponte {
    width: 100%;
    height: 270px;
  }
}









/* ---------- RESPONSIVO MOBILE---------- */
@media (max-width: 760px) {

  .menu {
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

  .carousel-track {
    flex-direction: column;
    align-items: center;
  }

  .carousel-item {
    width: 100%;
  }

  .hero h1 {
    font-size: 24px;
    text-align: center;
  }

  .hero p {
    text-align: center;
  }

  .form-wrapper {
    padding: 10px;
  }

  .plano-box {
    margin: 0 auto;
    max-width: 90%;
  }

  .porque h2,
  .porque h3,
  .porque p {
    text-align: center;
  }


  .form-box {
    width: 89%;
  }

  .mapa-container iframe {
    width: 90%;
  }

  img {
    width: 100%;
    height: 240px;
  }

  .hero {
    padding: 50px 20px;
  }

  img.ponte {
    width: 100%;
    height: 170px;
  }

  h1 {
    font-size: 20px;
  }

}

/*LOJA///////////////////////*/
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background-color: #1a1a1a;
  border: 1px solid #ff69b4;
  border-radius: 12px;
  width: 260px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card h4 {
  color: #fff;
  margin: 10px 0 5px;
}

.card p {
  color: #ccc;
  font-size: 14px;
}

.btn-whats {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #25d366;
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-whats:hover {
  background-color: #1ebc5a;
}

/*   ATUALIZAÇÕES*/
.alerta-carrinho {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff69b4;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  animation: fadeOut 3s forwards;
}

/* Responsivo */
@media (max-width: 768px) {
  .alerta-carrinho {
    font-size: 14px;
    padding: 10px 15px;
    bottom: 15px;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

/* Botão "Adicionar" clicado */
.btn-adicionar.clicked {
  background-color: #e60073 !important;
  color: white !important;
}