* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.sticky-header {
    position: sticky;
    top: 0;
    background-color: rgba(26, 26, 26, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 30px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 80px;
    width: auto;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.tagline {
    font-family: 'Roboto', monospace;
    font-size: 1.2rem;
    color: #fff;
    letter-spacing: 2px;
}

.gallery {
    padding: 30px;
    padding-bottom: 140px;
    max-width: 1200px;
    margin: 0 auto;
    flex: 1;
}

.grid-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.grid-group:nth-child(2) {
    grid-template-columns: repeat(3, 1fr);
}

.grid-group:nth-child(4) {
    grid-template-columns: repeat(3, 1fr);
}

.grid-item {
    cursor: pointer;
    transition: transform 0.3s;
}

.grid-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.grid-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.grid-item h3 {
    font-family: 'Roboto', monospace;
    font-size: 16px;
    font-weight: 100;
    text-align: left;
    margin-top: 8px;
    color: #b8b8b8;
}

.video-page {
    padding: 30px;
    padding-bottom: 140px;
    max-width: 90vw;
    margin: 0 auto;
    flex: 1;
}

.back-button {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    margin-bottom: 20px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.back-button:hover {
    opacity: 0.6;
}

.video-container {
    text-align: left;
    max-width: 80vw;
}

.video-container video {
    width: 100%;
    border-radius: 8px;
    background-color: #000;
}

.video-container h1 {
    font-family: 'Roboto', monospace;
    font-size: 1.5rem;
    font-weight: 100;
    margin-top: 15px;
    color: #fff;
}

.video-container .creditos {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: #aaa;
    margin-top: 20px;
    white-space: pre-line;
    line-height: 1.6;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    border-top: 1px solid #333;
    padding: 12px 30px;
    z-index: 1000;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-item {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-item:hover {
    color: #fff;
}

.footer-item .phone-icon,
.footer-item .mail-icon {
    width: 14px;
    height: 14px;
    stroke: #888;
    fill: none;
}

.footer-item:hover .phone-icon,
.footer-item:hover .mail-icon {
    stroke: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s, opacity 0.3s;
}

.footer-social a:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .grid-group,
    .grid-group:nth-child(2),
    .grid-group:nth-child(4) {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .sticky-header {
        padding: 10px 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    .logo img {
        height: 50px;
    }

    .tagline {
        font-size: 0.9rem;
        text-align: center;
    }

    .grid-group,
    .grid-group:nth-child(2),
    .grid-group:nth-child(4) {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery {
        padding: 20px 15px;
        padding-bottom: 140px;
    }

    .footer {
        padding: 10px 15px;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-item {
        font-size: 14px;
    }
}