@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Roboto", sans-serif;
    text-align: center;
    background-color: #e6ecff;
    margin: 0;
    padding: 0;
}
.container, .header, footer {
    max-width: 800px;
    margin: auto;
    padding: 10px;
    border: 10px solid #2a3f91;
}

h1 {
    color: #2a3f91;
    
}
a {
    text-decoration: none;
}
.banner, .rbanner, .title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.banner img, .title img {
    width: 400px;
    height: auto;
    margin-right:-60px;
}
.rbanner img{
    width: 400px;
    height: auto;
    margin-left:-90px;
}
.rbanner {
    flex-direction: row-reverse;
    margin-left: 160px
}

.title img {
    width: 100px;
    height: auto;
    margin-right: 20px;
}

.desc {
    font-size: 18px;
    color: #444;
    text-align: center;
    max-width: 400px;
}
.buttons a {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    background-color: #2a3f91;
    border-radius: 5px;
}
.screenshots img {
    width: 100%;
    max-width: 100px;
    margin: 10px;
    opacity: 0;
}
footer {
    padding: 10px;
    background-color: #2a3f91;
    color: white;
}


.image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 12px; /* opcional, para estilo */
}

.image-wrapper::after {
    content: '';
    width: 100%;
    height: 100%;
    inset: 0;
    position: absolute;
    background: inherit;
    filter: blur(20px) saturate(600%);
    z-index: -1;
}

/* Lightbox */
        
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    animation: fadeZoomIn 0.4s ease forwards;
}

@keyframes fadeZoomIn {
    from {
    opacity: 0;
    transform: scale(0.95);
    }
    to {
    opacity: 1;
    transform: scale(1);
    }
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px #000;
}

.lightbox-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: white;
    cursor: pointer;
    user-select: none;
    padding: 0 20px;
    z-index: 1000;
}

.lightbox-button.prev {
    left: 0;
}

.lightbox-button.next {
    right: 0;
}
#lightbox-caption {
    position: absolute;
    top: 30px;
    text-align: center;
    font-size: 1.4rem;
    color: white;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    pointer-events: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    padding: 10px 20px;
}

      /* Header */
      .header {
        background-color: #2a3f91;
        color: #fff;
        padding: 0 10px;
        width: 100%;
        z-index: 2;
        height: 24px;
      }
      
      .spacer {
        height: 70px;
      }
    
      .nav {
        list-style: none;
        display: flex;
        gap: 15px;
        justify-content: flex-end;
      }
      
      .nav a {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
      }
      
      .nav a:hover {
        text-decoration: underline;
      }

@media (max-width: 768px) {
    .header {
        width: 90%;
    }
    .banner > img, .rbanner > img {
        display: none;
    }
    .rbanner, .banner {
        flex-direction: column;
        margin-left: 0;
        margin: 20px auto;
    }
}