:root{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

body{
  margin:0;
  background:#ffffff;
  color:#111111;
}

.wrap{
  max-width:900px;
  margin:60px auto;
  padding:0 20px;
}

.card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:35px;
  text-align:center;
}

/* Logo */
.logo{
  display:flex;
  justify-content:center;
  margin-bottom:20px;
}

.logo img{
  width:140px;
  height:auto;
}

/* Títulos */
h1{
  margin:0 0 8px;
  font-size:24px;
  font-weight:600;
}

.sub{
  margin:0 0 35px;
  color:#6b7280;
  font-size:15px;
}

/* Servicios */
.services{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:20px;
  margin-bottom:40px;
}

.service{
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:20px;
  text-align:left;
}

.service h3{
  margin:0 0 8px;
  font-size:16px;
}

.desc{
  font-size:13px;
  color:#6b7280;
  margin-bottom:10px;
}

.price{
  font-size:14px;
}

.old{
  text-decoration:line-through;
  color:#9ca3af;
  margin-right:6px;
}

.new{
  font-weight:600;
  color:#111111;
}

/* Grid formulario */
.grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  text-align:left;
}

label{
  display:flex;
  flex-direction:column;
  gap:6px;
  font-size:13px;
  color:#374151;
}

input,
select{
  background:#ffffff;
  border:1px solid #d1d5db;
  border-radius:12px;
  padding:12px;
  font-size:14px;
}

.full{
  grid-column:1/-1;
}

button{
  margin-top:25px;
  width:100%;
  padding:14px;
  border:0;
  border-radius:14px;
  background:#002e57;
  color:#ffffff;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition:0.2s ease;
}

button:hover{
  background:#ed1f2a;
}

.foot{
  margin:18px 0 0;
  color:#6b7280;
  font-size:12px;
}

@media (max-width:900px){
  .services{
    grid-template-columns:1fr;
  }
}

@media (max-width:720px){
  .grid{
    grid-template-columns:1fr;
  }
}

.price{
  margin-top:10px;
}

.old{
  text-decoration:line-through;
  color:#9ca3af;
  font-size:13px;
}

.new{
  font-weight:700;
  font-size:15px;
  margin-top:4px;
}

.btn-finalizar{
  display:inline-block;
  margin-top:25px;
  padding:14px 30px;
  border-radius:14px;
  background:#002e57;
  color:#ffffff;
  font-weight:600;
  font-size:15px;
  text-decoration:none;
  transition:0.2s ease;
}

.btn-finalizar:hover{
  background:#ed1f2a;
}