.services-page {
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
    color: #f0f0f0;
}

.services-page h1 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.services-page p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 40px;
    text-align: center;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.service-item h3 {
    color: #ffcc00;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 15px;
    line-height: 1.5;
}

.service-gallery {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.service-gallery img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #333;
}

.see-more-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background-color: #ffcc00;
    color: #0d0d0d;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.see-more-btn:hover {
    background-color: #e6b800;
}

/* Modal de galeria */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.gallery-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal-image {
    max-width: 800px;
    max-height: 80vh;
    width: auto;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: #ffcc00;
    cursor: pointer;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    color: #ffcc00;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}
