:root {
  --color-primary: #eb8a00;
  --color-secondary: #8e5db7;
  --color-text: #1a1a1a;
  --font-main: 'Montserrat', sans-serif;
}

.formats {
  overflow: hidden;
  background-color: #fcfcfc;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.formats__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
}

.format-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.format-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.format-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
  line-height: 1.2;
}

.format-card__subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.format-card__body {
  flex: 1 0 auto;
}

.format-card__body li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 0;
  background-color: #505050;
  border-radius: 100%;
  width: 7px;
  height: 7px;
}
.format-card__body li {
  padding-left: 30px;
  margin-bottom: 15px;
  position: relative;
}

.format-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.format-card__list li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.format-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: #444;
  border-radius: 50%;
}

.format-card__text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.format-card__footer {
  margin-top: auto;
  padding-top: 20px;
}

.btn-formats {
  width: 100%;
  border: none;
  border-radius: 25px;
  padding: 18px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-formats:active {
  transform: scale(0.98);
}

.btn-formats--orange {
  background: linear-gradient(to right, rgba(209,110,1, 1) 0%, rgba(249,148,10, 1) 100%);
}

.btn-formats--orange:hover {
  background-color: #d17a00;
  box-shadow: 0 5px 15px rgba(235, 138, 0, 0.3);
}

.btn-formats--purple {
  background: linear-gradient(to right, rgba(115,73,154, 1) 0%, rgba(137,88,187, 1) 100%);
}

.btn-formats--purple:hover {
  background-color: #7b4ca2;
  box-shadow: 0 5px 15px rgba(142, 93, 183, 0.3);
}

.icon-arrow {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
}

.icon-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  transform: translateY(-50%) rotate(45deg);
}

.btn-formats--orange .icon-arrow::after {
  border-color: var(--color-primary);
}

.btn-formats--purple .icon-arrow::after {
  border-color: var(--color-secondary);
}

.formats__disclaimer {
  font-size: 0.85rem;
  color: #a0a0a0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .formats__title {
    font-size: 1.8rem;
  }
  .format-card {
    padding: 30px;
  }
}