* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

a {
  text-decoration: none;
  color: #fff;
}

.degrade {
  /* background: linear-gradient(to right, #fe4701, #ff0054); */
  background-color: #181818;
  opacity: 0.95;
}

html {
  height: 100dvh;
  font-size: 14px;
}

body {
  /* background-color: #e6cdcd; */
  background-color: #fefefe;
  height: 100dvh;
  width: 100%;
  margin: 20px auto;
}

.container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero {
  height: 100%;
  width: 100%;
  max-width: 550px;
  margin: 20px auto;
  padding: 0 20px;
}

header {
  text-align: center;

  margin-bottom: 40px;
}

header img {
  max-width: 140px;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 2px solid #181818ad;
}

img {
  max-width: 50px;
  border-radius: 30%;
  font-size: 2em;
  margin-bottom: 10px;
  color: #5e5e5e;
}

h1 {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 28px;
  color: #000000;
}

section.botoes-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 24px;
}

P {
  font-weight: bolder;
  font-size: x-large;
  color: #000000;
}

a.link button {
  width: 100%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  border-radius: 24px;
  font-size: 1.2em;
  cursor: pointer;
  color: #fff;
  transition: 0.2s;
}

.btn_img {
  border: 2px solid rgba(255, 255, 255, 0.253);
}

a .btn_text {
  text-transform: uppercase;
  font-size: 18px;
}

a.link i {
  font-size: 1.5em;
}

a.link button:hover,
a.btn-footer:hover {
  animation: tranlate 0.5s infinite alternate;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 24px;
}

footer a.btn-footer {
  width: 60px;
  height: 60px;
  display: inline-block;
  font-size: 2em;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 10px;
  transition: 0.2s;
  background-color: #181818;
  color: #ffffff;
  opacity: 0.9;
}

@keyframes tranlate {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.07);
  }
}

/* Estilos para o dropdown */
.dropdown-container {
    position: relative;
    width: 100%;
}

.dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-content {
    display: none;
    position: relative;
    width: 100%;
    margin-top: 10px;
    gap: 10px;
}

.dropdown-content.show {
    display: flex;
    flex-direction: column;
}

.dropdown-btn i {
    transition: transform 0.3s ease;
}

.dropdown-btn.active i {
    transform: rotate(180deg);
}

/* Estilo para o botão de presente */
.presente-btn {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e) !important;
    border-radius: 24px !important;
}

.presente-btn:hover {
    background: linear-gradient(45deg, #ff8e8e, #ff6b6b) !important;
}

.dropdown-content button {
    border-radius: 24px;
}

.preco-antigo {
  text-decoration: line-through;
  color: #888;
  font-size: 0.95em;
  margin-right: 4px;
}
.preco-novo {
  color: #27ae60;
  font-weight: bold;
  font-size: 1.05em;
}
