html,body{
    max-width: 100%;
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    ;
}

.gradient-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, 
        #4A148C 0%, 
        #7B1FA2 25%, 
        #9C27B0 50%, 
        #E1BEE7 75%, 
        #FFF9C4 90%, 
        #FFEB3B 100%
    );
    padding-bottom: 200px;
}

.black-section {
    background: #000000;
    min-height: 140vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.green-section {
    background: #32CD32;
    min-height: 160vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.green-section-2 {
    background: linear-gradient(to bottom, 
        #00E676 0%, 
        #00C853 25%, 
        #388E3C 50%, 
        #2E7D32 75%, 
        #1B5E20 90%, 
        #1A1A1A 100%
    );
    min-height: 140vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo {
    width: 70vw;
    height: auto;
}

.section-image {
    width: 80vw;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 10vh;
    left: 0;
}

.green-section img {
    width: 120vw;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -30%);
    display: block;
}

.home-four-section {
    width: 100vw;
    height: auto;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.last-section {
    background: #000000;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.last-section img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
}

/* Breakpoints para tablets */
@media (max-width: 1024px) {
    .gradient-section {
        height: 90vh;
        padding-bottom: 150px;
    }
    
    .black-section {
        min-height: 120vh;
    }
    
    .green-section {
        min-height: 140vh;
    }
    
    .green-section-2 {
        min-height: 120vh;
    }
    
    .last-section {
        min-height: 90vh;
    }
}

/* Breakpoints para tablets pequenos */
@media (max-width: 768px) {
    .gradient-section {
        height: 80vh;
        padding-bottom: 100px;
    }
    
    .black-section {
        min-height: 100vh;
    }
    
    .green-section {
        min-height: 120vh;
    }
    
    .green-section-2 {
        min-height: 100vh;
    }
    
    .last-section {
        min-height: 80vh;
        padding: 1rem 0;
    }
    
    .logo {
        width: 80vw;
    }
    
    .section-image {
        width: 90vw;
        top: 8vh;
    }
    
    .green-section img {
        width: 110vw;
        transform: translate(-50%, -25%);
    }
}

/* Breakpoints para smartphones grandes */
@media (max-width: 480px) {
    .gradient-section {
        height: 70vh;
        padding-bottom: 80px;
    }
    
    .black-section {
        min-height: 80vh;
    }
    
    .green-section {
        min-height: 100vh;
    }
    
    .green-section-2 {
        min-height: 80vh;
    }
    
    .last-section {
        min-height: 60vh;
        padding: 0.5rem 0;
    }
    
    .logo {
        width: 85vw;
    }
    
    .section-image {
        width: 95vw;
        top: 5vh;
    }
    
    .green-section img {
        width: 100vw;
        transform: translate(-50%, -20%);
    }
}

/* Breakpoints para smartphones pequenos */
@media (max-width: 360px) {
    .gradient-section {
        height: 60vh;
        padding-bottom: 60px;
    }
    
    .black-section {
        min-height: 70vh;
    }
    
    .green-section {
        min-height: 90vh;
    }
    
    .green-section-2 {
        min-height: 70vh;
    }
    
    .last-section {
        min-height: 50vh;
        padding: 0.25rem 0;
    }
    
    .logo {
        width: 90vw;
    }
    
    .section-image {
        width: 100vw;
        top: 3vh;
    }
    
    .green-section img {
        width: 95vw;
        transform: translate(-50%, -15%);
    }
}

/* Breakpoints para dispositivos muito pequenos */
@media (max-width: 280px) {
    .gradient-section {
        height: 50vh;
        padding-bottom: 40px;
    }
    
    .black-section {
        min-height: 60vh;
    }
    
    .green-section {
        min-height: 80vh;
    }
    
    .green-section-2 {
        min-height: 60vh;
    }
    
    .last-section {
        min-height: 40vh;
        padding: 0.1rem 0;
    }
    
    .logo {
        width: 95vw;
    }
    
    .section-image {
        width: 100vw;
        top: 2vh;
    }
    
    .green-section img {
        width: 90vw;
        transform: translate(-50%, -10%);
    }
}

/* Orientação landscape para dispositivos móveis */
@media (max-height: 500px) and (orientation: landscape) {
    .gradient-section {
        height: 100vh;
        padding-bottom: 50px;
    }
    
    .black-section {
        min-height: 80vh;
    }
    
    .green-section {
        min-height: 100vh;
    }
    
    .green-section-2 {
        min-height: 80vh;
    }
    
    .last-section {
        min-height: 60vh;
    }
}
