:root {
    --tst: bottom 0.5s ease 0s;
    --dark: #E6E6E6EE;
}

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

body {
    font-family: "Gabarito", sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-weight: 400;
    scroll-behavior: smooth;
}

.canvas {
    background: #bababa url('bg.jpg') center center;
    background-size: cover;
}

/* Introdução */
.intro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 1s ease-out;
}

.intro-container.fade-out {
    opacity: 0;
    pointer-events: none;
}

.intro-text {
    position: absolute;
    font-size: 3rem;
    color: #333;
    text-align: center;
    opacity: 0;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0 2rem;
    font-family: 'Domine', serif;
}

.intro-text.fade-in {
    animation: fadeIn 1.5s ease-in forwards;
}

.intro-text.fade-out-text {
    animation: fadeOut 1s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Conteúdo Principal */
.main-content {
    opacity: 1;
    transition: opacity 1s ease-in;

}

.main-content.hidden {
    opacity: 0;
    pointer-events: none;
}

.main-content.show {
    opacity: 1;
    pointer-events: auto;
}

/* Header */
header {
    width: calc(100% - 40px);
    /* max-width: 1080px; */
    padding: 20px 0;
    margin: 0 auto;
    z-index: 1000;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

header h1 {
    font-size: 5rem;
    font-weight: 700;
    font-family: 'Domine', serif;
    text-transform: lowercase;
    margin-bottom: 0.5rem;
    color: #1b1b1b;
    text-align: right;
}

header p {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #606060;
    text-align: left;
    max-width: 300px;
    margin-left: 40px;
}

/* Swiper */
.swiper {
    width: 100%;
    height: 90vh;
    padding: 30px 0 120px 0;
}

.swiper-slide {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: transparent;
    /* width: auto; */
    /* width: 200vw; */
    height: 75vh;
    /* height: calc(100vh - 200px); */
    overflow: visible;
    cursor: pointer;
    filter: drop-shadow(-30px 30px 20px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}



.swiper-pagination {
    display: show;
    color: #1b1b1b;
    font-family: 'Domine', serif;
    font-weight: 600;
    font-size: 1.2rem;
    padding-bottom: 10px;
}

/* Info Panel - Hidden in slides */
.info {
    display: none;
}

/* Swipe Tutorial Overlay */
.swipe-tutorial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9998;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.swipe-tutorial.active {
    display: flex;
    opacity: 1;
}

.swipe-tutorial-content {
    text-align: center;
    color: #fff;
}

.swipe-tutorial-content p {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Domine', serif;
    margin-bottom: 1rem;
    animation: swipeAnimation 2s ease-in-out infinite;
}

.tutorial-hint {
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.7;
    font-family: 'Gabarito', sans-serif;
}

@keyframes swipeAnimation {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    75% {
        transform: translateX(10px);
    }
}

/* Fullscreen Overlay */
.fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #eaeaea;
    z-index: 9999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.fullscreen-overlay.active {
    display: flex;
    align-items: center;
}

.fullscreen-image {
    flex: 1;
    width: 98vw;
    max-width: 720px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.fullscreen-info {
    width: 90%;
    max-width: 360px;
    border: 1px solid #333;
    color: #1b1b1b;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 20px;
    margin-top: 20px
}

.fullscreen-info h3 {
    font-family: 'Gabarito', sans-serif;
    font-size: 0.8rem;
    padding-bottom: 10px;
    font-style: italic;
    font-weight: 500;
    text-align: right;
}

.fullscreen-info h4 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    font-family: 'Gabarito', sans-serif;
}

.fullscreen-info h6 {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    font-family: 'Domine', serif;
}

.fullscreen-info h5 {
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-family: 'Gabarito', serif;
}

/* Content Sections */
.content-section {
    padding: 40px 2.5%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaeaea;
}

.img-artist {
    width: 100%;
    display: block;
}


.content-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
}

.content-wrapper h2 {
    font-family: 'Domine', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.05em;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Blockquote Styling */
.content-text blockquote {
    margin: 2rem 0;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-left: 5px solid #333;
    font-style: italic;
    position: relative;
}

.content-text blockquote p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.2rem;
}

.content-text blockquote p:last-child {
    margin-bottom: 0;
}

.content-text blockquote strong {
    font-weight: 700;
    font-style: normal;
}

/* Footer */
footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: #999;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* Menu Hamburger */
.hamburger-menu {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 2000;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.3s ease;
}

.hamburger-menu:hover {
    transform: scale(1.1);
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Menu Lateral */
.side-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    padding: 4rem 2rem;
    transition: right 0.4s ease;
    backdrop-filter: blur(10px);
}

.side-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.side-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.side-menu li {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
}

.side-menu.active li {
    opacity: 1;
    transform: translateX(0);
}

.side-menu.active li:nth-child(1) { transition-delay: 0.1s; }
.side-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.side-menu.active li:nth-child(3) { transition-delay: 0.3s; }
.side-menu.active li:nth-child(4) { transition-delay: 0.4s; }

.side-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    font-family: 'Domine', serif;
}

.side-menu a:hover {
    color: #ccc;
    transform: translateX(10px);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Responsive */
@media (max-width: 768px) {
    
    .canvas {
        background: #bababa url('bg-mobile.jpg') center center;
        background-size: auto 100%;

    }

    header {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }

    header h1 {
        font-size: 3rem;
        width: 100%;
        text-align: left;
    }

    header p {
        text-align: left;
        width: 100%;
        margin-left: 0;
    }

    .swiper {
        height: 80vh;
    }

    .swiper-slide {
        height: 90%;
    }

    .info h3 {
        font-size: 1.4rem;
    }

    .info p {
        font-size: 0.9rem;
    }

    .intro-text {
        font-size: 1.8rem;
    }

    .side-menu {
        width: 100%;
        right: -100%;
    }

    .side-menu a {
        font-size: 1.1rem;
    }

    .hamburger-menu {
        top: 1.5rem;
        right: 1.5rem;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .content-wrapper h2 {
        font-size: 2rem;
    }

    .content-text p {
        font-size: 1rem;
        text-align: left;
    }
}
