/* ==========================================================================
   CSS SYSTEM DESIGN - FULL-BLEED (EDGE-TO-EDGE) IMAGE SPLIT LAYOUT
   ========================================================================== */

:root {
    --bg-color: #000000; /* Pure black to perfectly merge photo background */
    --text-primary: #ffffff;
    --text-secondary: #7a7a7a;
    --highlight-red: #F90112;
    --check-icon-color: #F90112;
    
    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
    min-height: 100vh;
}

/* ==========================================================================
   SPLIT LAYOUT STYLE
   ========================================================================== */
.split-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

/* 1. Side Image (Default Mobile Layout: Edge-to-Edge at the top) */
.side-image-container {
    width: 100%;
    height: auto; /* Scales naturally with image to show more body */
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* Red Back-Light Aura behind Ygor */
.side-image-container::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(249, 1, 18, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(30px);
    pointer-events: none;
}

.side-image {
    width: 100%;
    height: auto; /* Scales proportionally with width to show full torso and arms */
    display: block;
    position: relative;
    z-index: 2;
    /* Fade out starts lower (75%) so his torso and arm tattoo are fully visible */
    mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 75%, transparent 100%);
}

/* 2. Content Container (Text, Checklist, Button) */
.content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    background-color: var(--bg-color);
}

.main-content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 1.5rem 1.5rem 2.5rem 1.5rem; /* Clean text spacing */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==========================================================================
   ELEMENT STYLING
   ========================================================================== */

/* Seta Baixo (Bouncing arrow) */
.seta-baixo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    margin-bottom: 1.25rem;
}

.seta-baixo span {
    color: var(--highlight-red);
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    animation: moverSeta 1s ease-in-out infinite;
}

@keyframes moverSeta {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Headline */
.headline {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.highlight-red {
    color: var(--highlight-red);
}

/* Subheadline */
.subheadline {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 2.2rem;
}

/* Checklist (Vertical stack) */
.checklist {
    list-style: none;
    display: inline-flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    text-align: left;
    align-self: center;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
}

.check-icon {
    color: var(--check-icon-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* CTA Wrapper & Button (Pulse animation match) */
.cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.botao_pulse {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--highlight-red);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    padding: 1.25rem 2.2rem;
    border-radius: 14px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 0 0 0 rgba(249, 1, 18, 0.7);
    animation: pulse_animation 1.6s infinite;
    transition: all 0.3s ease;
}

.botao_pulse:hover {
    background-color: #d1000f;
    transform: translateY(-2px);
}

.botao_pulse:active {
    transform: translateY(1px);
}

@keyframes pulse_animation {
    0% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(249, 1, 18, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(249, 1, 18, 0);
    }
    100% {
        transform: scale(0.98);
        box-shadow: 0 0 0 0 rgba(249, 1, 18, 0);
    }
}

/* Footer Section */
.footer {
    width: 100%;
    padding: 2.5rem 1.5rem;
    background-color: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    text-align: center;
}

.warning-text {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   DESKTOP RESPONSIVENESS (SPLIT SCREEN LAYOUT)
   ========================================================================== */
@media (min-width: 768px) {
    .split-layout {
        flex-direction: row;
        min-height: 100vh;
        background-color: var(--bg-color);
    }

    /* Left Side: Ygor's Photo covering the entire height/side of the site */
    .side-image-container {
        flex: 1;
        width: 50vw;
        height: 100vh;
        max-width: none;
        margin: 0;
        position: fixed;
        left: 0;
        top: 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        background-color: var(--bg-color);
    }

    .side-image-container::before {
        width: 300px;
        height: 300px;
        filter: blur(40px);
    }

    .side-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 10%;
        /* Fade-out masks for desktop split style: Fades from solid left to transparent right (into pure black text side) */
        mask-image: linear-gradient(to right, black 50%, transparent 95%), linear-gradient(to bottom, black 85%, transparent 100%);
        -webkit-mask-image: linear-gradient(to right, black 50%, transparent 95%), linear-gradient(to bottom, black 85%, transparent 100%);
        mask-composite: intersect;
        -webkit-mask-composite: source-in;
    }

    /* Right Side: Text and Content Scroll Area */
    .content-container {
        flex: 1;
        margin-left: 50vw;
        width: 50vw;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .main-content {
        max-width: 520px;
        padding: 4rem 2rem 3rem 2rem;
        flex-grow: 1;
        justify-content: center;
    }
    
    .headline {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .subheadline {
        font-size: 1.15rem;
        margin-bottom: 2.5rem;
    }

    .checklist {
        gap: 1rem;
        margin-bottom: 3rem;
    }

    .checklist li {
        font-size: 1.15rem;
    }
    
    .botao_pulse {
        font-size: 1.15rem;
        padding: 1.3rem 2.5rem;
    }
}
