/* Estilos: paso 2 */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2c2b28;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  padding: 48px 24px;
}

.card {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 44px;
  max-width: 560px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.brand-logo {
  height: 20px;
  width: auto;
  display: block;
}

.brand-name {
  font-size: 18px;
  font-weight: 500;
  color: #ff772c;
}

.card h1 {
  font-size: 22px;
  font-weight: 500;
  color: #26241f;
  margin: 24px 0 14px;
}

.card h1::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #ff772c;
  margin-bottom: 14px;
}

.card > p {
  font-size: 16px;
  line-height: 1.6;
  color: #45433d;
  margin: 0 0 16px;
}

.features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
  color: #45433d;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff772c;
  font-weight: 500;
}

.permissions {
  margin: 0 0 28px;
}

.permissions h2 {
  font-size: 14px;
  font-weight: 500;
  color: #26241f;
  margin: 0 0 10px;
}

.permissions ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.permissions li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: #8a877e;
}

.permissions li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #c9c6bd;
}

.contact {
  border-top: 0.5px solid #e5e3dd;
  padding-top: 20px;
  text-align: center;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #ff772c;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
}

.contact-email {
  font-size: 13px;
  color: #8a877e;
  margin: 10px 0 0;
}
