.requisitos-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 60px 0;
}

.requisitos-content {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.requisitos-content h2 {
    color: #0088cc;
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 28px;
}

.requisitos-content h3 {
    color: #2c3e50;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 22px;
}

.requisitos-content ul {
    list-style: none;
    padding-left: 0;
}

.requisitos-content ul li {
    padding: 5px 0 5px 35px;
    position: relative;
    line-height: 1.4;
    color: #555;
    font-size: 16px;
}

.requisitos-content ul li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    color: #0088cc;
    font-size: 18px;
}

.info-box-blue {
    background: linear-gradient(135deg, #0088cc 0%, #005a8a 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 4px 20px rgba(0,136,204,0.3);
    line-height: 1.8;
}

.info-box-blue strong {
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

/* Button styles moved to buttons-common.css */
.btn-turno {
    margin-top: 30px;
}

.banners-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.banner-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .banners-column {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .requisitos-content {
        padding: 30px 20px;
    }
}
