.card-img {
  width: 100%;
  height: auto;
}

.hr-desde {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.hr-desde:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #f2a100;
}

.hr-desde span {
  background: #fff;
  padding: 0 12px;
  position: relative;
  font-weight: bold;
  color: #f2a100;
}

.precio {
  font-size: 28px;
  font-weight: bold;
  color: #f2a100;
  text-align: center;
}

.lista-incluye li {
  list-style: none;
  padding: 6px 0;
  font-size: 14px;
}

.ok { color: #f2a100; font-weight: bold; }
.no { color: #e74c3c; font-weight: bold; }

.boton {
  background: #f2a100;
  color: #fff;
  font-weight: bold;
}


/* Cards Coches PPF  */
.ppf-wrapper {
    margin-top: 40px;
    text-align: center;
}

.ppf-main-title {
    margin-bottom: 30px;
}

/* GRID PRINCIPAL */
.ppf-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start; /* 🔴 CLAVE para que no se igualen alturas */
}

/* CARD INDIVIDUAL */
.ppf-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    width: 320px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.ppf-card img {
    max-width: 100%;
    margin: 10px 0;
}

/* TEXTO DESDE */
.ppf-desde {
    margin-top: 10px;
    font-size: 14px;
    color: #E9021E;
    font-weight: bold;
}

/* PRECIO */
.ppf-precio {
    font-size: 22px;
    font-weight: bold;
    color: #E9021E;
    margin: 10px 0;
}

/* BOTÓN DESPLEGABLE */
.ppf-toggle {
    background: transparent;
    border: 1px solid #E9021E;
    color: white;
    padding: 8px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.2s ease;
}

.ppf-toggle:hover {
    background: rgba(233, 2, 30, 0.1);
}

/* LISTA DESPLEGABLE */
.ppf-list {
    display: none;
    text-align: left;
    margin-top: 10px;
    animation: fadeIn 0.3s ease;
}

.ppf-list.active {
    display: block;
}

.ppf-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ppf-list li {
    padding: 5px 0;
    border-bottom: 1px solid #333;
    font-size: 14px;
}

/* BOTÓN PRESUPUESTAR */
.ppf-btn {
    margin-top: 15px;
    background: #E9021E;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.ppf-btn:hover {
    background: #c7001a;
}

/* ANIMACIÓN SUAVE */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .ppf-grid {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .ppf-card {
        width: 100%;
        max-width: 380px;
    }
}

/* Fin Cards Coches PPF  */