:root {
    --background-color: #F5F2EB;
    --text-color: #0B0B0B;
    --accent-color: #9A1818;
    --secondary-color: #2E2E2E;
}

body {
    font-family: 'IBM Plex Mono', monospace;
    background-color: var(--background-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Efeito de papel queimado */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0,0,0,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Carimbo flutuante */
.stamp {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(154, 24, 24, 0.1);
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Staatliches', cursive;
    transform: rotate(-10deg);
    z-index: 1000;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--background-color) 0%, #ECEAE6 100%);
}

.title {
    font-family: 'Staatliches', cursive;
    font-size: 2.5rem;
    font-weight: 400; /* Reduzindo o peso da fonte */
    margin-bottom: 1rem;
    letter-spacing: -0.5px; /* Ajustando o espaçamento entre letras */
    line-height: 1.3; /* Aumentando ligeiramente o espaçamento entre linhas */
    color: var(--text-color);
    text-rendering: optimizeLegibility; /* Melhora a renderização do texto */
    -webkit-font-smoothing: antialiased; /* Suaviza a fonte no Chrome/Safari */
    -moz-osx-font-smoothing: grayscale; /* Suaviza a fonte no Firefox */
}

.subtitle {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--accent-color);
    font-size: 1.2rem;
    margin: 0 auto;
    max-width: 800px;
}

/* VSL Section */
.vsl-section {
    padding: 2rem;
    background: var(--background-color);
    border-top: 4px solid var(--accent-color);
}

.vsl-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.875rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 540px; /* Half of 1080 for better desktop viewing */
    aspect-ratio: 9/16; /* 9:16 aspect ratio for vertical video */
    margin: 0 auto;
    background: #000;
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.video-container::before {
    content: '';
    display: block;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (height/width = 9/16 = 56.25%) */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Expert Section */
.expert-section {
    padding: 2rem;
    text-align: center;
}

.expert-image {
    max-width: 300px;
    border: 4px solid var(--accent-color);
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 2rem;
    background: var(--background-color);
}

.section-title {
    font-family: 'Staatliches', cursive;
    font-size: 2rem;
    color: var(--text-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.expert-description {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    line-height: 1.6;
    white-space: pre-line;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
