:root {
    --primary: #c99339; /* Sofisticated gold/bronze */
    --primary-hover: #b37e2a;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #888888;
    --card-bg: rgba(25, 25, 25, 0.7);
    --bg-darker: #050505;
    --transition: 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    color: var(--light);
    background-color: var(--darker);
}

body {
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

p {
    line-height: 1.6;
    color: var(--gray);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight {
    color: var(--primary);
}

.bg-dark {
    background-color: var(--dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 147, 57, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.w-100 {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
}

.logo h1 .white {
    color: #ffffff;
}

.logo h1 .gold {
    color: #c99339;
}

.logo .desde {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Ajuste para Celular */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.4rem; /* Menor no celular */
        letter-spacing: 0.5px;
    }
    .logo .desde {
        font-size: 0.5rem;
        letter-spacing: 1px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: var(--transition);
    border: 1px solid var(--primary);
    padding: 8px 12px;
    border-radius: 4px;
    color: var(--primary);
    background-color: transparent;
    display: inline-block;
}

.nav-link:hover {
    background-color: var(--primary);
    color: var(--darker);
}

/* Hero Video Section (Vegini Style) */
.hero-video {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.hero-video-content {
    position: relative;
    z-index: 10;
}

.hero-video-content h2 {
    font-size: 5.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 0.9;
}

.hero-video-content p {
    font-size: 1.1rem;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

/* Minimalist Hamburger Menu (Vegini Style) */
.hamburger {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.hamburger span {
    display: inline-block;
}

.hamburger:hover {
    color: var(--primary);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hamburger-icon .bar {
    width: 30px;
    height: 2px;
    background-color: currentColor;
    transition: var(--transition);
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 450px;
    height: 100vh;
    background: var(--darker);
    z-index: 2000;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    padding: 100px 60px;
    box-shadow: -20px 0 50px rgba(0,0,0,0.5);
}

.nav-overlay.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

.nav-links-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.overlay-link {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: -1px;
    display: block;
}

.overlay-link:hover {
    color: var(--primary);
    transform: translateX(10px);
}

.btn-primary-nav {
    margin-top: 20px;
    font-size: 0.9rem;
    padding: 15px 30px;
    background: var(--primary);
    color: white;
    text-align: center;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-video-content h2 {
        font-size: 3rem;
    }
    .nav-overlay {
        width: 100%;
        padding: 80px 40px;
    }
    .overlay-link {
        font-size: 1.8rem;
    }
}

.bg-darker {
    background: linear-gradient(rgba(5, 5, 5, 0.85), rgba(5, 5, 5, 0.85)), url('fundoquemsomosnos.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Quem Somos Section Styles */
.about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 40px;
}

.about-text-highlight h2 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 20px;
    text-align: center;
}

.about-description p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
    line-height: 1.9;
    font-weight: 400;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-text-highlight h2 {
        font-size: 3rem;
    }
}

/* Categories Section */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.category-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 147, 57, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-img {
    height: 250px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .card-img img {
    transform: scale(1.1);
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-content p {
    margin-bottom: 20px;
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition);
}

.link-arrow:hover {
    letter-spacing: 1px;
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--darker);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-body p {
    padding-bottom: 20px;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding-top: 10px;
}

.accordion-item.active .icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.icon {
    transition: var(--transition);
    font-size: 1.5rem;
}

/* Contact Form */
.contact-info {
    padding-right: 40px;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.info-list {
    list-style: none;
    margin-top: 30px;
}

.info-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--light);
}

.info-list li strong {
    color: var(--primary);
}

.contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--light);
}

.form-group input, .form-group select {
    width: 100%;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(201, 147, 57, 0.2);
}

/* Footer */
footer {
    background-color: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer h2 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

.footer-links a {
    color: var(--gray);
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

/* Showcase Images Section */
.showcase-img {
    background-color: var(--darker);
    border-radius: 12px;
    padding: 15px; 
    border: 1px solid rgba(201, 147, 57, 0.3);
    transition: all 0.4s ease;
    overflow: hidden;
}

.showcase-img img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.showcase-img:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 35px rgba(201, 147, 57, 0.6); /* Efeito de iluminação */
    background-color: rgba(201, 147, 57, 0.05);
}

.showcase-img:hover img {
    transform: scale(1.02);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .footer-links {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        padding: 40px 20px;
        gap: 25px;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        border: 1px solid var(--primary) !important;
        padding: 12px 15px;
        border-radius: 4px;
        color: var(--primary) !important;
        background-color: transparent !important;
        margin-bottom: 5px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
}

/* Side Panel Styles */
.side-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.side-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 600px;
    height: 100%;
    background: #0a0a0a;
    z-index: 2001;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(228, 168, 83, 0.2);
}

.side-panel.active {
    right: 0;
}

.close-panel {
    position: sticky;
    top: 0;
    float: right;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.3s ease;
    z-index: 10;
}

.close-panel:hover {
    background: #e4a853;
    color: #0a0a0a;
}

.panel-gallery {
    margin: 2rem 0;
}

.main-slide {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.thumb {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s ease;
    border: 2px solid transparent;
}

.thumb:hover, .thumb.active {
    opacity: 1;
    border-color: #e4a853;
}

.panel-title {
    font-size: 2.2rem;
    color: #e4a853;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.panel-desc {
    color: #a0a0a0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.spec-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #e4a853;
    margin-bottom: 0.4rem;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.feature-list {
    list-style: none;
    margin-bottom: 3rem;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    color: #d0d0d0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feature-list li::before {
    content: "✓";
    color: #e4a853;
    font-weight: 900;
}

.panel-cta {
    background: #e4a853;
    color: #0a0a0a;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
    display: block;
    transition: 0.3s ease;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.panel-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(228, 168, 83, 0.3);
}

@media (max-width: 768px) {
    .side-panel {
        max-width: 100%;
        padding: 1.5rem;
    }
}

/* Video Modal Styles */
.video-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-container {
    width: 90%;
    max-width: 1000px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(228, 168, 83, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container video {
    width: 100%;
    display: block;
}

.close-video {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.close-video:hover {
    color: #e4a853;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .video-container {
        width: 95%;
    }
    .close-video {
        top: -40px;
        right: 10px;
        font-size: 2rem;
    }
}

/* Modal Promoção Styles */
.modal-promo {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.modal-promo-content {
    position: relative;
    margin: auto;
    width: 90%;
    max-width: 450px;
    height: 90vh;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    border-radius: 15px;
    overflow: hidden;
}

.iframe-promo-container {
    width: 100%;
    height: 100%;
}

.iframe-promo-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-promo-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    z-index: 10001;
    cursor: pointer;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.close-promo-modal:hover {
    color: #ff4d00;
}

.modal-promo.active {
    display: flex;
}

@media (max-width: 768px) {
    .modal-promo-content {
        width: 100%;
        height: 100vh;
        border-radius: 0;
    }
}

/* Projects Gallery Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9; /* Mantém proporção de cinema uniforme */
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: block;
    background: #111;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a foto preencha o espaço sem distorcer */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-category {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.project-title {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

/* Global Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    cursor: pointer;
}

