body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #cce9ef;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header img.logo {
    max-width: 100px;
    margin-bottom: 10px;
}

header h1 {
    margin: 0;
}

nav {
    margin-top: 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    background-color: #007bff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #0056b3;
}

main {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cap-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cap-item {
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #fff;
    margin: 1rem;
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s;
    width: 200px;
}

.cap-item:hover {
    transform: scale(1.05);
}

.cap-item img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.cap-item h3 {
    margin: 0.5rem 0;
}

.cap-item p {
    padding: 0 0.5rem;
}

.whatsapp-button {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #1EBEA5;
}

.zoom-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.zoom-modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

#zoom-title {
    color: #ccc;
    text-align: center;
    padding: 10px 0;
    height: 150px;
}

.pagination {
    margin: 20px 0;
}

.page-button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.page-button:hover {
    background-color: #0056b3;
}

.page-button.active {
    background-color: #0056b3;
}
