
/* --- NEW CSS FIXES based on Mockups --- */

/* star-list in Porque Elegirnos */
.star-list {
    list-style: none;
    padding-left: 0;
}
.star-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    font-weight: 500;
}
.star-list li i {
    color: var(--primary-orange);
    margin-right: 10px;
}
.quote-icon i {
    color: var(--primary-orange);
    font-size: 2rem;
}

/* inclusion-card in Que Incluyen */
.inclusion-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}
.inclusion-icon {
    background-color: var(--bar-blue);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    flex-shrink: 0;
}
.inclusion-content h4 {
    color: var(--primary-orange);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.inclusion-content p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Model icon tinting (fake gradient/blue) */
.model-icon-img {
    filter: invert(41%) sepia(87%) saturate(3015%) hue-rotate(185deg) brightness(98%) contrast(92%);
}

.hero-overlay {
    background: rgba(78, 84, 200, 0.8) !important;
}

/* Portfolio Overlay Hover */
.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 126, 0, 0.95); /* Orange overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 15px;
}
.portfolio-item-wrapper:hover .portfolio-overlay {
    opacity: 1;
}
.overlay-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid white;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}
.overlay-icon:hover {
    background: white;
    color: var(--primary-orange);
}
