/* ============================================= */
/* ANIMAÇÕES GLOBAIS */
/* ============================================= */

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

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 2s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================= */
/* SEÇÃO BANNER DO PLANO DE CARGOS */
/* ============================================= */

.plano-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    background-color: white;
    flex-wrap: wrap;
    border-bottom: 1px solid white;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

.plano-text {
    flex: 1 1 400px;
    max-width: 600px;
}

.plano-text h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.plano-text p {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-plano {
    display: inline-block;
    background-color: #3498db;
    color: #fff;
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-plano:hover {
    transform: scale(1.03);
}

.plano-image {
    flex: 1 1 400px;
    text-align: center;
}

.plano-image img {
    max-width: 60%;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

/* ============================================= */
/* MEDIA QUERIES - RESPONSIVIDADE */
/* ============================================= */

@media (max-width: 900px) {
    .plano-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .plano-image {
        display: none;
    }

    .plano-text h1 {
        font-size: 2rem;
    }

    .plano-text p {
        font-size: 1rem;
    }

    .btn-plano {
        font-size: 1rem;
        padding: 12px 25px;
    }
}