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

body, html {
    height: 100%;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #fff;
}


.section-one {
    height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 50px;
    position: relative;
    background: url('../images/JejumVitoria/background-jejum-2025.png') no-repeat center center/cover;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 120px;
    padding-right: 40px;
    order: 2;
    max-width: 50%;
}

    .content p {
        font-size: 1.7rem;
        line-height: 1.5;
    }

.side-image {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    order: 1;
}

    .side-image img {
        max-width: 90%;
        height: auto;
        border-radius: 10px;
    }


.section-two {
    background-color: #181818;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px;
}

.content-left {
    flex: 1;
}

    .content-left h2 {
        font-family: 'Coolvetica', sans-serif;
        font-size: 3.5rem;
        line-height: 1;
        display: flex;
        flex-direction: column;
    }

    .content-left .title-white {
        color: #fff;
    }

    .content-left .title-gray {
        color: #A6A6A6;
    }

.content-right {
    flex: 1;
    padding-left: 50px;
    max-width: 50%;
}

.scroll-icon {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

    .scroll-icon span {
        width: 30px;
        height: 50px;
        border: 2px solid #fff;
        border-radius: 25px;
        position: relative;
        display: inline-block;
        box-sizing: border-box;
    }

        .scroll-icon span::after {
            content: '';
            width: 10px;
            height: 10px;
            background-color: #fff;
            border-radius: 50%;
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            animation: scroll 1.5s infinite;
        }

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}


.section-two .content-right p {
    font-size: 1.2rem;
    color: #D9D9D9;
    line-height: 1.6;
    margin-top: 20px;
}


.section-three {
    background-color: #F9B316;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px;
}

.content-left img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.content-right h2 {
    font-family: 'Coolvetica', sans-serif;
    font-size: 3.5rem;
    line-height: 0.6;
    color: #111;
}

.content-right p {
    font-size: 1.2rem;
    color: #111;
    line-height: 1.6;
    margin-top: 20px;
}


.scrolling-banner {
    background-color: #F9B316;
    overflow: hidden;
    width: 100%;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scrolling-text {
    display: flex;
    white-space: nowrap;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    position: absolute;
    animation: scroll-text 15s linear infinite;
}

@keyframes scroll-text {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


.download-button {
    display: inline-block;
    background-color: #F9B316;
    color: #000;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    width: 50%;
    margin-left: 0;
    transition: background-color 0.3s ease;
}

    .download-button:hover {
        background-color: #F79C42;
    }

.section-four {
    background-color: #181818;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
    width: 100%;
}

.content {
    width: 80%;
    max-width: 1200px;
}


.section-four h2 {
    font-family: 'Coolvetica', sans-serif;
    font-size: 4rem !important;
    line-height: 0.6;
    color: #fff;
}


.section-four-text {
    font-size: 1.2rem !important;
    color: #BDBDBD;
    line-height: 1.6;
    margin-top: 20px;
}

/* Texto para redes sociais */
.social-media-text {
    font-size: 1.2rem !important;
    font-weight: bold;
    color: #fff;
    margin-top: 20px;
}



.section-five {
    background-color: #fff;
    padding: 60px;
    text-align: center;
}

    .section-five .content {
        max-width: 800px;
        margin: 0 auto;
    }

    .section-five p {
        font-size: 1.5rem;
        color: #000;
        margin-bottom: 20px;
    }

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon i {
    font-size: 40px;
    color: #000;
    transition: transform 0.3s ease;
}

    .social-icon i:hover {
        transform: scale(1.1);
    }





/* Mobile Ajustes */

@media (max-width: 768px) {

    /* Seção 1 */
    .section-one {
        flex-direction: column;
        padding: 20px;
        height: auto;
    }

    .content {
        padding-left: 20px;
        padding-right: 20px;
        max-width: 100%;
        text-align: center;
    }

    .side-image img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .scroll-icon {
        bottom: 20px;
    }

    .content p {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    .download-button {
        margin-top: 30px;
        margin-bottom: 90px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    /* Seção 2 */
    .section-two {
        padding: 60px 20px;
        flex-direction: column;
        text-align: center;
    }

    .content-left, .content-right {
        max-width: 100%;
        padding: 0;
    }

        .content-left h2 {
            font-size: 2.5rem;
        }

    .section-two .content-right p {
        font-size: 1rem;
        color: #D9D9D9;
        line-height: 1.6;
        margin-top: 20px;
    }

    /* Seção 3 */
    .section-three {
        padding: 60px 20px;
        flex-direction: column;
        text-align: center;
    }

    .content-left, .content-right {
        max-width: 100%;
        padding: 0;
    }

        .content-right h2 {
            font-size: 2.5rem;
        }

        .content-left img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .content-right p {
            font-size: 1rem;
            color: #111;
            line-height: 1.6;
            margin-top: 20px;
        }

    /* Seção 4 */
    .section-four {
        padding: 40px 20px;
        text-align: center;
    }

        .section-four h2 {
            font-size: 2.5rem;
        }

    .section-four-text, .social-media-text {
        font-size: 1rem;
        color: #BDBDBD;
        line-height: 1.6;
        margin-top: 20px;
    }

    /* Seção 5 */
    .section-five {
        padding: 40px 20px;
    }

        .section-five p {
            font-size: 1.2rem;
            color: #000;
            margin-bottom: 20px;
        }

    .social-icons {
        flex-direction: row;
        gap: 20px;
    }

    .social-icon i {
        font-size: 30px;
    }
}

/* Para telas menores que 480px (smartphones em modo retrato muito pequenos) */
@media (max-width: 480px) {

    /* Seção 1 */
    .section-one {
        padding: 15px;
    }

    .content p {
        font-size: 1.2rem;
    }

    /* Seção 2 */
    .content-left h2 {
        font-size: 2rem;
    }

    .section-two .content-right p {
        font-size: 0.9rem;
    }

    /* Seção 3 */
    .content-right h2 {
        font-size: 2rem;
    }

    .content-right p {
        font-size: 0.9rem;
    }

    /* Seção 4 */
    .section-four h2 {
        font-size: 2rem;
    }

    .section-four-text, .social-media-text {
        font-size: 0.9rem;
    }

    /* Seção 5 */
    .section-five p {
        font-size: 1rem;
    }

    .social-icons {
        flex-direction: column;
        gap: 8px;
    }

    .social-icon i {
        font-size: 25px;
    }
}
