/* Main Styles */
:root {
  --primary-color: #f5f5f5;
  --primary-dark: #1d65d1;
  --primary-light: #ffb9c6;
  --secondary-color: #5e90ec;
  --text-color: #333;
  --text-light: #e7e7e7;
  --text-gray: #9c9c9c;
  --white: #260e00;
  --black: #000;
  --red: #ff0000;
  --yellow: #ffd700;
  --degrade-color:  #ffebeb;
}

body {
  background-color: var(--white);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: 2px solid var(--primary-color);
}

.primary-btn:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.buy-btn {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  background-color: #e0e0e0; /* cinza claro */
  color: #333;
  border-radius: 28px;
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.219);
  font-weight: bold;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.buy-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  transition: all 0.5s ease;
}

.buy-btn:hover::before {
  left: 100%;
  transition: all 0.5s ease;
}

.track-btn {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
}

section {
  padding: 40px 0;
}

h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text-color);
}

h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-color);
}

p {
  margin-bottom: 15px;
  line-height: 1.6;
}