/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Grain Overlay */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 60px 24px 80px;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('parque-sao-jorge.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Logo */
.logo-container {
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.logo {
    width: 100px;
    height: auto;
    filter: grayscale(100%) brightness(0.9);
    transition: all 0.3s ease;
}

.logo:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

/* Main Content */
.main-content {
    margin-bottom: 80px;
}

.date-block {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.date-number {
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
}

.date-separator {
    color: #666666;
    margin: 0 8px;
    font-weight: 200;
    opacity: 0.6;
}

.main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.mystery-text {
    color: #888888;
    font-style: italic;
    font-weight: 300;
}

/* Email Button */
.email-button-container {
    margin: 32px 0;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.email-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.email-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.email-button svg {
    width: 20px;
    height: 20px;
}

/* Countdown */
.countdown-section {
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.5s forwards;
}

.countdown-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: 'Space Grotesk', monospace;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
    text-stroke: 2px #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.countdown-label {
    font-size: 0.875rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.countdown-separator {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: transparent;
    -webkit-text-stroke: 1px #444444;
    text-stroke: 1px #444444;
    font-weight: 200;
    margin: 0 8px;
    opacity: 0.5;
}

/* Event Info */
.event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.8s forwards;
}

.info-item {
    text-align: center;
    padding: 24px;
    border: 1px solid #222222;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: #444444;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.info-label {
    display: block;
    font-size: 0.875rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    font-weight: 500;
}

.info-value {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.1s forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #666666, transparent);
    margin: 0 auto 16px;
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.875rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Sections */
.about-section,
.requirements-section,
.future-section {
    padding: 120px 0;
    position: relative;
}

.about-section {
    background: #ffffff;
    color: #000000;
}

.requirements-section {
    background: #f8f8f8;
    color: #000000;
}

.future-section {
    background: #000000;
    color: #ffffff;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.lead-text {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 32px;
    color: #333333;
}

.about-text p {
    margin-bottom: 24px;
    color: #666666;
}

.impeachment-reasons {
    margin: 32px 0;
    padding: 24px;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #000000;
}

.impeachment-reasons h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #000000;
}

.impeachment-reasons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.impeachment-reasons li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #555555;
    line-height: 1.5;
}

.impeachment-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    margin: 32px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.impeachment-card:hover {
    border-color: #cccccc;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.impeachment-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.impeachment-reasons li:before {
    content: "•";
    color: #000000;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.impeachment-reasons li strong {
    color: #000000;
}

.transformation-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: #f0f0f0;
    border-radius: 12px;
    margin-top: 40px;
}

.transformation-icon {
    width: 48px;
    height: 48px;
    background: #000000;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.transformation-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000000;
}

.transformation-content p {
    color: #666666;
    margin: 0;
}

/* Stats */
.stats-container {
    display: grid;
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 32px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: #cccccc;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* Requirements Section */
.requirements-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 60px;
}

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.requirement-item:hover {
    border-color: #cccccc;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.requirement-number {
    width: 48px;
    height: 48px;
    background: #000000;
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.requirement-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000000;
}

.requirement-content p {
    color: #666666;
    margin: 0;
}

.important-note {
    text-align: center;
    padding: 24px;
    background: #000000;
    color: #ffffff;
    border-radius: 8px;
}

.important-note p {
    margin: 0;
    font-weight: 500;
}

/* Future Section */
.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.future-item {
    text-align: center;
    padding: 40px 24px;
    border: 1px solid #222222;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.future-item:hover {
    border-color: #444444;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.future-icon {
    width: 64px;
    height: 64px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.future-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.future-item p {
    color: #cccccc;
    margin: 0;
}

.future-quote {
    text-align: center;
    padding: 60px 40px;
    border: 1px solid #222222;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.future-quote blockquote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

/* Footer */
.footer {
    padding: 60px 0 40px;
    border-top: 1px solid #222222;
    background: #000000;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo-img {
    width: 48px;
    height: auto;
    filter: grayscale(100%) brightness(0.7);
}

.footer-text {
    text-align: right;
}

.footer-text p {
    color: #666666;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.footer-year {
    color: #444444;
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 60px 16px 100px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .countdown-container {
        gap: 8px;
    }
    
    .countdown-item {
        min-width: 60px;
    }
    
    .countdown-separator {
        margin: 0 4px;
    }
    
    .event-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .requirements-grid {
        gap: 24px;
    }
    
    .requirement-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .future-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .about-section,
    .requirements-section,
    .future-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .countdown-container {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .mystery-box {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .future-quote {
        padding: 40px 24px;
    }
}


/* Email Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid #333333;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.modal-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.modal-content p {
    color: #cccccc;
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.close {
    color: #888888;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #ffffff;
}

#emailForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#emailInput {
    padding: 16px 20px;
    border: 1px solid #333333;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#emailInput:focus {
    outline: none;
    border-color: #666666;
    background: rgba(255, 255, 255, 0.1);
}

#emailInput::placeholder {
    color: #888888;
}

#emailForm button {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#emailForm button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        padding: 30px 20px;
        width: 95%;
    }
    
    .modal-content h3 {
        font-size: 1.5rem;
    }
}

