:root {
    --ink-dark: green;
    --ink-medium: rgb(0, 255, 0);
    --gold-accent: #327b4b;
    --sepia-brown: #216238;
    --cream-white: transparent;
    --shadow-brown: #aaaaaa;
    --border-gold: purple;
}

* {
    margin: 0px;
    padding: 0px;
    outline: none;
    text-decoration: none;
    text-transform: capitalize;
    transition: 0.2s linear;
    box-sizing: border-box;
}

body {
    background-color: black;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

section.video {
    width: 100%;
    position: relative;
}

section div.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100;
    height: 100%;
    z-index: -1;
    overflow: hidden;

}

section div.background video {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}

section.video div.box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90vh;
}

section.video div.box img {
    width: 600px;
    height: auto;
    padding: 0;
}


section {
    padding: 3rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

div.logo img {
    width: 50%;
    display: flex;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    border-bottom: 0.1px solid gray;
    background-color: #570000;
}

header section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 20px;
}

nav a {
    margin: 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    color: #ADADAD;
}

nav a:hover {
    color: rgb(255, 255, 255);
    font-size: 1.4rem;
    cursor: pointer;
}

section.sobre h2.titulo {
    font-size: 3rem;
    color: white;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

section.sobre h2.titulo span {
    color: red;
    text-transform: uppercase
}

section.sobre div.box:hover {
    cursor: pointer;
    transform: scale(1.1);
}

section.sobre div.box {
    width: 1250px;
    height: 402px;
    display: flex;
    align-items: center;
    background-color: #4A4949;
    gap: 1.8rem;
    border-radius: 2%;
    transition: background-color 0.5s ease, transform 0.5s ease
}

section.sobre div.container-img img {
    height: auto;
    width: 600px;
    border-radius: 2%;
}

section.sobre div.box div.contentp {
    padding: 2rem;
}

section.sobre div.box div.contentp h3 {
    font-size: 2.5rem;
    color: white;
}

section.sobre div.box div.contentp p {
    font-size: 1.2rem;
    color: white;
    padding: 1rem 0;
    line-height: 1.8;
}

section.sobre2 div.box2:hover {
    cursor: pointer;
    transform: scale(1.1);
}

section.sobre2 div.box2 {
    width: 1250px;
    height: 450px;
    display: flex;
    align-items: center;
    background-color: white;
    gap: 1.8rem;
    border-radius: 2%;
    transition: background-color 0.5s ease, transform 0.5s ease
}

section.sobre2 div.container-img2 img {
    height: auto;
    width: auto;
    border-radius: 2%;
}

section.sobre2 div.box div.contentp2 {
    padding: 2rem;
}

section.sobre2 div.box2 div.contentp2 h3 {
    font-size: 2.5rem;
    color: #4A4949;
}

section.sobre2 div.box2 div.contentp2 p {
    font-size: 1.2rem;
    color: #4A4949;
    padding: 1rem 0;
    line-height: 1.8;
}

section.sobre3 div.box3:hover {
    cursor: pointer;
    transform: scale(1.1);
}

section.sobre3 div.box3 {
    width: 1250px;
    height: 410px;
    display: flex;
    align-items: center;
    background-color: black;
    gap: 1.8rem;
    border-radius: 2%;
    transition: background-color 0.5s ease, transform 0.5s ease;
}

section.sobre3 div.container-img3 img {
    height: auto;
    width: 650px;
    border-radius: 2%;
}

section.sobre3 div.box3 div.contentp3 {
    padding: 2rem;
}

section.sobre3 div.box3 div.contentp3 h3 {
    font-size: 2.5rem;
    color: white;
}

section.sobre3 div.box3 div.contentp3 p {
    font-size: 1.2rem;
    color: white;
    padding: 1rem 0;
    line-height: 1.8;
}

section.trailers {
    max-width: 110rem;
    padding: 5rem 2rem;
    margin: auto;
}

section.trailers h3.titulo {
    font-size: 3rem;
    color: white;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: none;
}


.carousel-container {
	position: relative;
	width: 1250px;
	height: 70vh;
	display: flex;
    flex-direction: column;
	justify-content: center;
	align-items: center;
	perspective: 1000px;
    margin: 0 auto
}

.carousel-wrapper {
	position: relative;
	width: 800px;
	height: 650px;
	display: flex;
	justify-content: center;
	align-items: center;
    flex-direction: column;
}

.image-container {
	position: absolute;
	width: 560px;
	height: 315px;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-container iframe {
	width: 560px;
	height: 390px;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.image-container.center {
	z-index: 3;
	transform: translateZ(0px) scale(1);
}

.image-container.left {
	z-index: 2;
	transform: translateX(-350px) scale(0.8);
	opacity: 0.6;
}

.image-container.left::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to left, rgba(0, 0, 0, 0.8), transparent);
	border-radius: 15px;
	pointer-events: none;
}

.image-container.right {
	z-index: 2;
	transform: translateX(350px)  scale(0.8);
	opacity: 0.6;
}

.image-container.right::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
	border-radius: 15px;
	pointer-events: none;
}

.image-container.hidden {
	opacity: 0;
	transform: translateZ(-200px) scale(0.5);
	z-index: 1;
}

.navigation {
	position: absolute;
	bottom: 5%;
	display: flex;
	gap: 20px;
	z-index: 10;
}

.dot {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: white;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 2px solid gray;
	position: relative;
}

.dot.active {
	background: #ffffff;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
	transform: scale(1.2);
}

.dot:hover {
	background: rgba(255, 255, 255, 0.7);
	transform: scale(1.1);
}

.dot.active::before {
	content: "";
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

.reflection-floor {
	position: absolute;
	bottom: -150px;
	width: 100%;
	height: 100px;
	background: linear-gradient(
		to bottom,
		rgba(255, 255, 255, 0.02) 0%,
		transparent 100%
	);
	pointer-events: none;
	z-index: 1;
}

@keyframes autoSlide {
	0%,
	20% {
		opacity: 1;
	}
	25%,
	100% {
		opacity: 0.3;
	}
}



.vintage-container {
    position: relative;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Fundo de pergaminho */
.parchment-bg::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(255, 196, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(93, 78, 55, 0.08) 0%, transparent 50%);
    z-index: -1;
}

/* Header Vintage */
.vintage-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Navegação */
.character-navigation {
    margin-bottom: 40px;
}

.nav-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-white);
    border: 2px solid var(--sepia-brown);
    border-radius: 25px;
    padding: 15px 30px;
    box-shadow: 0 5px 15px var(--shadow-brown);
}

.nav-ornament {
    width: 40px;
    height: 20px;
    background: radial-gradient(ellipse, var(--gold-accent) 30%, transparent 30%);
    background-size: 8px 4px;
}

.character-gallery-nav {
    display: flex;
    gap: 15px;
    margin: 0 30px;
}

.character-portrait-btn {
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.portrait-frame {
    position: relative;
    width: 100px;
    height: 70px;
    border: 3px solid var(--sepia-brown);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--cream-white);
    box-shadow: 0 2px 8px var(--shadow-brown);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portrait-overlay {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink-dark);
    color: var(--cream-white);
    padding: 4px 12px;
    border-radius: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    border: 1px solid var(--gold-accent);
}

.portrait-overlay::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--ink-dark);
}

.character-portrait-btn:hover .portrait-frame {
    border-color: var(--gold-accent);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px var(--shadow-brown);
    border-radius: 12px;
}

.character-portrait-btn:hover .portrait-frame img {
    transform: scale(1.1);
}

.character-portrait-btn:hover .portrait-overlay {
    opacity: 1;
    bottom: -35px;
}

.character-portrait-btn.active .portrait-frame {
    border-color: var(--gold-accent);
    border-width: 4px;
    border-radius: 10px;
    box-shadow: 
        0 0 0 2px var(--cream-white),
        0 0 0 4px var(--gold-accent),
        0 4px 15px var(--shadow-brown);
    transform: translateY(-2px);
}

.character-portrait-btn.active .portrait-overlay {
    opacity: 1;
    bottom: -35px;
    background: var(--gold-accent);
    color: var(--ink-dark);
    border-color: var(--border-gold);
}


.character-display {
    position: relative;
    min-height: 700px;
}

.character-folio {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.character-folio.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative;
}

.folio-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: start;
}

/* Seção do Retrato */
.portrait-section {
    display: flex;
    justify-content: center;
}

.vintage-frame {
    position: relative;
    background: var(--cream-white);
    padding: 20px;
    border: 5px solid var(--gold-accent);
    border-radius: 10px;
    box-shadow: 
        0 15px 35px var(--shadow-brown),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.vintage-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.frame-inner {
    position: relative;
    border: 2px solid var(--sepia-brown);
    border-radius: 5px;
    overflow: hidden;
}

.frame-inner img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(20%) contrast(1.1);
    transition: filter 0.3s ease;
}

.vintage-frame:hover img {
    filter: sepia(10%) contrast(1.2);
}

.photo-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.corner {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gold-accent);
    opacity: 0.8;
}

.corner.c1 {
    top: 10px;
    left: 10px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.corner.c2 {
    top: 10px;
    right: 10px;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.corner.c3 {
    bottom: 10px;
    left: 10px;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.corner.c4 {
    bottom: 10px;
    right: 10px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.frame-nameplate {
    background: var(--gold-accent);
    color: black;
    text-align: center;
    padding: 8px 15px;
    margin-top: 15px;
    border-radius: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

/* Seção da Biografia */
.biography-section {
    display: flex;
    align-items: start;
}

.bio-paper {
    background: var(--cream-white);
    border: 1px solid var(--sepia-brown);
    border-radius: 5px;
    padding: 40px;
    box-shadow: 
        0 10px 25px var(--shadow-brown),
        inset 0 0 30px black;
    position: relative;
}

.bio-paper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sepia-brown), transparent);
}

.paper-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px dotted var(--sepia-brown);
    padding-bottom: 20px;
}

.character-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #aaaaaa;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px var(--shadow-brown);
}

.name-underline {
    width: 60%;
    height: 2px;
    background: #1a472a;
    margin: 0 auto 15px;
    border-radius: 1px;
}

.character-title {
    font-style: italic;
    color: var(--ink-medium);
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.bio-content {
    position: relative;
}

.initial-letter {
    float: left;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 3rem;
    color: #fff;
    margin: 0 8px 0 0;
    text-shadow: 2px 2px 4px var(--shadow-brown);
}

.bio-text {
    font-size: 1.1rem;
    text-align: justify;
    text-indent: 0;
    margin-bottom: 30px;
    hyphens: auto;
    color: #aaaaaa;
}

.character-attributes {
    margin: 30px 0;
    background: black;
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 25px;
}

.character-attributes h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
    text-align: center;
    font-style: italic;
}

.vintage-list {
    list-style: none;
    padding: 0;
}

.vintage-list li {
    position: relative;
    padding: 8px 0 8px 30px;
    font-size: 1rem;
    color: #aaaaaa;
}

.vintage-list li::before {
    content: '❦';
    position: absolute;
    left: 0;
    color: #fff;
    font-size: 1.1rem;
}

.vintage-quote {
    margin-top: 40px;
    padding: 25px;
    background: rgba(139, 115, 85, 0.05);
    border-left: 4px solid var(--gold-accent);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.vintage-quote blockquote {
    font-size: 1.2rem;
    color: var(--ink-dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

.vintage-quote cite {
    display: block;
    text-align: right;
    color: var(--ink-medium);
    font-size: 0.9rem;
    font-style: normal;
}



/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.character-folio.active .vintage-frame {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.character-folio.active .paper-header {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.character-folio.active .bio-content {
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Responsividade */
@media (max-width: 768px) {
    .vintage-container {
        padding: 20px 15px;
    }
    
    .vintage-title {
        font-size: 2.5rem;
    }
    
    .folio-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .character-tabs {
        flex-wrap: wrap;
        gap: 10px;
        margin: 0 15px;
    }
    
    .tab-btn {
        padding: 8px 15px;
        font-size: 1rem;
    }
    
    .bio-paper {
        padding: 25px;
    }
    
    .character-name {
        font-size: 2.2rem;
    }
    
    .initial-letter {
        font-size: 3rem;
        line-height: 2.5rem;
    }
}

@media (max-width: 480px) {
    .ornamental-border {
        padding: 30px 20px;
    }
    
    .vintage-title {
        font-size: 2rem;
    }
    
    .nav-frame {
        padding: 10px 15px;
    }
    
    .character-tabs {
        margin: 0 10px;
    }
    
    .tab-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

section div.titulo-casas {
    font-size: 3rem;
    color: white;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 2rem;

