
.precios{
  padding: 44px 0 64px;
}

.precios-inner{
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.precios-panel{
  border-radius: 44px;
  padding: 34px;
  background: linear-gradient(to bottom, #6f93ad 0%, rgba(111, 147, 173, 0.85) 40%, rgba(111, 147, 173, 0.35) 85%, transparent 100%);
  
  display: grid;
  grid-template-columns: 1fr 360px;
  grid-template-areas: "content media";
  gap: 34px;
  align-items: center;
}

.precios-media{
  width: 360px;
  display: flex;
  justify-content: flex-end;
  grid-area: media;
}


.precios-content{
  grid-area: content;
}

.precios-media img{
  
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  background: rgba(255,255,255,.18);
  border-radius: 40px;
  display: block;
  box-shadow: 0 18px 44px rgba(0,0,0,.25);
}


.precios-content{
  width: 100%;
}

.precios-header{
  text-align: center;
  margin-bottom: 18px;
}

.precios-title{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 900;
  color: #0d2a3c;
}
.precios-subtitle{
  margin: 0;
  font-size: 12px;
  color: rgba(13, 42, 60, .85);
}

.precios-cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  justify-content: center;
  max-width: 520px;
  margin-inline: auto;
}

.precios-card{
  background: var(--color-bg);
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
  text-align: center;
}

.precios-card h3{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  color: #0d2a3c;
}

.precios-price{
  font-size: 12px;
  font-weight: 800;
  color: rgba(13, 42, 60, .9);
}

.precios-footer{
  margin-top: 16px;
  text-align: center;
}

.precios-note{
  margin: 10px 0 6px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(13, 42, 60, .9);
}

.precios-extra{
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(13, 42, 60, .9);
}

.precios-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  color: #1c4f73;
  text-decoration: none;
}

.precios-cta-arrow{
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

