/* ===== ESPECTACULOS PAGE SPECIFIC STYLES ===== */
.equipment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(245, 158, 11, 0.07); /* subtle accent bg */
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: background 0.2s;
}

.equipment-list li:last-child {
    margin-bottom: 0;
}

.equipment-list li::before {
    content: '\f00c'; /* Font Awesome check */
    font-family: 'Font Awesome 6 Free', 'FontAwesome';
    font-weight: 900;
    color: var(--accent-color);
    font-size: 1.1em;
    margin-right: 6px;
}

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

.application-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(11, 170, 231, 0.07); /* subtle primary bg */
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: background 0.2s;
}

.application-card li:last-child {
    margin-bottom: 0;
}

.application-card li::before {
    content: '\f058'; /* Font Awesome check-circle */
    font-family: 'Font Awesome 6 Free', 'FontAwesome';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 1.1em;
    margin-right: 6px;
}
.equipment-section {
    padding: 80px 0;
}

.equipment-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.equipment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.equipment-card:hover::before {
    transform: scaleX(1);
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.application-section {
    padding: 80px 0;
}

.application-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.application-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.application-card:hover::before {
    transform: scaleX(1);
}

.application-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.btn-primary-custom {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(11, 170, 231, 0.15);
    transition: background 0.3s, color 0.3s;
}

.btn-primary-custom:hover {
    background: var(--secondary-color);
    color: #fff;
}
/* Restore icon styles for visual consistency */
.equipment-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.8rem;
}

.application-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 1.5rem;
}