@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("header.css");
@import url("home.css");
@import url("menu.css");
@import url("testimonials.css");
@import url("footer.css");

:root {
  --color-primary-1: #fff9ea;
  --color-primary-2: #7dd6faef;
  --color-primary-3: #7dd6faef;
  --color-primary-4: #54abcede;
  --color-primary-5: #54abcede;
  --color-primary-6: #1a88b4;
  --color-primary-7: #f7f2f2;
  --color-neural-3: #f28705;

  --color-neutral-0: #fff;
  --color-neutral-1: #1d1d1d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-primary-1);
}

section {
  padding: 28px 8%;
}

b{
  font-weight: bold;
}
.btn-default {
  border: none;
  display: flex;
  align-items: center;
  font-size: 1rem;
  justify-content: center;
  background-color: var(--color-primary-5);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 500;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color .3s ease;
}

.btn-default:hover {
  background-color: var(--color-primary-3);
}

.social-media-buttons {
  display: flex;
  gap: 18px;
}

.social-media-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 40px;
  background-color: var(--color-neutral-0);
  font-size: 1.25rem;
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-neutral-1);
  box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.social-media-buttons a:hover {
  box-shadow: 0px 0px 12px 8px rgba(0, 0, 0, 0.1);
}

.section-title {
  color: var(--color-primary-6);
  font-size: 1.563rem;
}

.section-subtitle {
  font-size: 2.1875rem;
}

a {
  text-decoration: none;
}

#contato {
  background-color: var(--color-primary-4);
  color: var(--color-neutral-0);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 10px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.buttons {
  display: inline-flex;
  justify-content: space-around;
  gap: 30px;
  margin-left: 10px;
}

.buttons #aqueceStar {
  color: #fff;
}

.btn-default #sobre {
  padding: 10px 24px;
}

.btn-default a {
  text-decoration: none;
  color: var(--color-neutral-0);
}

#contato a{
  color: var(--color-primary-7);
}

#contato a:hover {
  background-color: #3797d600;
}

#aqueceStar button {
  color: #fff;
}

#aqueceStar a{
  text-decoration: none;
  color: #fff;
}

#aqueceStar {
  background-color: var(--color-neural-3);
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

#aqueceStar a:hover {
  background-color: #3797d600;
}

.opcoes {
  display: inline;
  align-items: center;
  background-color: #7dd6faef;
  color: #3c39f0;
  height: 3rem;
  width: 8rem;
  border-radius: 20px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.opcoes a:hover {
  background-color: #5cbef0;
  transform: scale(1.1); /* Aplica o efeito de zoom */
}

.opcoes a {
  text-decoration: none;
  color: inherit;
  font-size: 14px;
}

/* Media Queries para Responsividade */

/* Tablets */
@media (max-width: 768px) {
  section {
    padding: 20px 5%;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 1.8rem;
  }

  .btn-default {
    padding: 8px 12px;
    font-size: 0.9rem;
    display: flex; /* Garante que o botão seja exibido */
}

  .buttons {
    flex-direction: column;
    gap: 20px;
  }

  .opcoes {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* Celulares */
@media (max-width: 480px) {
  section {
    padding: 15px 3%;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .section-subtitle {
    font-size: 1.5rem;
  }

  .btn-default {
    padding: 6px 10px;
    font-size: 0.8rem;
    display: flex; /* Garante que o botão seja exibido */
}

  .btn-default {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

  .social-media-buttons {
    gap: 10px;
  }

  .social-media-buttons a {
    width: 35px;
    height: 30px;
    font-size: 1rem;
  }

  .buttons{
    display: flex;
    flex-direction: row;
    gap: 5px;
  }

  #contato,
  #aqueceStar, #sobre {
    font-size: 7px;
    padding: 6px 7px;
  }

  .opcoes {
    height: 2.5rem;
    font-size: 12px;
  }
}


/* Telas muito pequenas (ex: smartphones pequenos) */
@media (max-width: 360px) {
  .section-title {
      font-size: 1rem;
  }

  .section-subtitle {
      font-size: 1.2rem;
  }

  .btn-default {
      padding: 5px 8px;
      font-size: 0.7rem;
      display: flex; /* Garante que o botão seja exibido */
  }

  .social-media-buttons a {
      width: 30px;
      height: 25px;
      font-size: 0.9rem;
  }

  .buttons {
      display: flex;
      flex-direction: row;
      gap: 5px;
      width: 20%;
  }

  #contato,
  #aqueceStar, #sobre {
      font-size: 10px;
      padding: 9px 9px;
  }
}