                    #preciosContainer{
                        padding: 20px 0;
                    }
                    .precios-wrapper {
                        width: 100%;
                        padding: 2rem 1rem;
                        display: flex;
                        justify-content: center;
                        box-sizing: border-box;
                        font-family: 'Poppins', system-ui, sans-serif;
                    }
                    
                    .contenedor-ancho {
                        max-width: 1200px;
                        width: 100%;
                    }
                    
                    /* === GRID === */
                    .precios-grid {
                        display: grid;
                        grid-template-columns: 1fr;
                        gap: 1.5rem;
                    }
                    
                    @media (min-width: 768px) {
                        .precios-grid {
                            grid-template-columns: repeat(2, 1fr);
                        }
                                           
                    }
                      @media (max-width: 768px) {
                        
                        .precio-card{
                            padding:2.5rem 1.5rem 1.5rem 2.5rem !important;
                        }                        
                    }
                    
                    /* === CARD === */
                    .precio-valor {
                                background-color: var(--rojo) !important;
                            }
                                                .precio-card {
                        position: relative;
                        background-color: #fff;
                        border: 1px solid rgba(0, 0, 0, 0.08);
                        border-radius: 0.8rem;
                        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
                        padding: 2.5rem 3rem 1.5rem 5rem;
                        transition: all 0.3s ease;
                    }
                    
                    .precio-card:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
                    }
                    
                    /* === ICONO EN LA ESQUINA === */
                    .precio-icono-wrapper {
                        position: absolute;
                        top: -22px;
                        left: -15px;
                        z-index: 2;
                    }
                    
                    .precio-icono {
                        width: 48px;
                        height: 48px;
                        border-radius: 50%;
                        background-color: #0c1b24;
                        border: 3px solid #fff;
                        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
                        object-fit: cover;
                    }
                    
                    /* === CONTENIDO === */
                    .precio-card-inner {
                        display: flex;
                        flex-direction: column;
                        row-gap: 0.7rem;
                    }
                    
                    /* === TIPOGRAFÍA === */
                    .precio-titulo {
                        font-size: 1.4rem;
                        font-weight: 700;
                        color: #0c1b24;
                        margin-top: 0.5rem;
                    }
                    
                    .precio-antes {
                        color: #5f6368;
                        font-weight: 600;
                        font-size: 1.4rem;
                    }
                    
                    .precio-tachado {
                        text-decoration: line-through;
                        text-decoration-color: #d10000;
                        color: #777;
                        margin-left: 0.25rem;
                    }
                    
                    .promo-mes {
                        font-size: 1.4rem;
                        font-weight: 600;
                    }
                    
                    .badge-gratis {
                        background-color: #41C40A;
                        color: #fff;
                        font-size: 1.4rem;
                        padding: 4px 10px;
                        border-radius: 0.75rem;
                        font-weight: 700;
                    }
                    
                    .precio-arancel {
                        font-size: 1.4rem;
                        font-weight: 600;
                        color: #000;
                    }
                    
                    .precio-valor {
                        color: #fff;
                        padding: 6px 10px;
                        border-radius: 0.5rem;
                        font-weight: 700;
                    }
                    
                    /* === LISTA DE FORMAS DE PAGO === */
                    .formas-pago-lista p {
                        margin: 0 0 0.4rem 0;
                        font-size: 1.4rem;
                        line-height: 1.45;
                    }
                    
                    /* === NOTAS Y CONDICIONES === */
                    .notas-bloque {
                        margin-top: 1.2rem;
                        text-align: right;
                    }
                    
                    .nota-extra,
                    .nota-legal {
                        font-size: 0.95rem;
                        color: #555;
                        line-height: 1.4;
                        margin: 0.25rem 0;
                    }
                    
                    .asterisco {
                        font-size: 0.7rem;
                        font-weight: 700;
                    }

                    .rankings-card {
  width: 100%;
  max-width: 430px;
  background: #ffffff;
  border-radius: 10px;
  padding: 36px 34px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.ranking-item {
  display: grid;
  grid-template-columns: 145px 1px 1fr;
  align-items: center;
  column-gap: 18px;
}

.ranking-logo {
  width: 145px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.ranking-logo img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ranking-divider {
  width: 1px;
  height: 48px;
  background: #9b9b9b;
}

.ranking-text p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12.5px;
  line-height: 1.1;
  font-weight: 600;
  color: #4b4b4b;
}

/* Ajustes individuales por si necesitas controlar cada logo */
.ranking-logo-cwur img {
  max-width: 142px;
}

.ranking-logo-urap img {
  max-width: 135px;
}

.ranking-logo-scimago img {
  max-width: 145px;
}

/* Responsive */
@media (max-width: 480px) {
  .rankings-card {
    max-width: 100%;
    padding: 28px 22px;
    gap: 28px;
  }

  .ranking-item {
    grid-template-columns: 120px 1px 1fr;
    column-gap: 14px;
  }

  .ranking-logo {
    width: 120px;
  }

  .ranking-text p {
    font-size: 11.5px;
  }
}
