.info {
    padding-top: 2rem;
    max-width: 1280px;
    margin-inline: auto;
}

.line {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.15);
}

.itens-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 3rem;
    gap: 1.5rem;
    padding-inline: 1.25rem;
    margin-top: 4rem;
}

.item {
    flex: 1;
    min-width: 155px;
}

.item_title {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}

.item_description {
    color: rgba(255, 255, 255, 0.8);;
    text-transform: uppercase;
    text-align: center;
}

/* INFO WRAPPER*/

.info-wrapper {
    display: flex;
    align-items: center;
    padding-inline: 1.25rem;
    gap: 1.5rem;
    margin-top: 4rem;
}

.info_left {
    flex: 1;
}

.info_right {
    flex: 1;
}

.info_right-montanha {
    max-width: 450px;
    margin-left: 90px;
}

.section_up_text {
    color: #2eb1a3;
    text-transform: uppercase;
    font-weight: bold; /*BOLD = MESMO QUE 700PX*/
}

.section_title {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 500;
}

.section_description {
    color:rgba(255, 255, 255, 0.8) ;
    line-height: calc(1em + 0.7rem);
    margin-block: 1rem;
}

.section_btn {
    background: linear-gradient(to right, #E8546B, #ac3cf6);
    padding: 0.5em 2em;
    border-radius: 6px;
    color: #000;
}

/* ANIMAÇÃO BUTTON */
.btn-saiba-mais {
    background: none;
    border: 2px solid #2eb1a3; 
    color: #2eb1a3; 
    padding: 0.5em 1.5em;
    border-radius: 30px; 
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.btn-saiba-mais::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2eb1a3;
    z-index: -1;
    transition: transform 0.3s ease;
    transform: scaleX(0);
    transform-origin: right;
}

/* Efeito de hover */
.btn-saiba-mais:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-saiba-mais:hover {
    color: #fff; 
    border-color: transparent; 
}

.btn-saiba-mais:hover {
    padding: 0.5em 1.5em;
    border: none;
}

/*RESPOENSIVIDADE*/

@media (width < 1024px) {
    .info-wrapper {
        flex-direction: column;
    }
    .section_description {
        max-width: 60ch;
    }

    .info_right-montanha {
        margin: 0;
        width: 90%;
        max-width: 350;
        margin-inline: auto;
    }
}

@media (width < 475px) {
    .section_title {
        font-size: 2rem;
    }
}

/* Reverte a ordem para esta seção específica */
.invert-layout {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
    flex-direction: row; 
}

@media (max-width: 1024px) {
    .invert-layout {
        flex-direction: column-reverse; /* Inverte a ordem somente nesta seção */
    }
}

.invert-layout .info_left img {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
}

@media (max-width: 475px) {
    .invert-layout .section_title {
        font-size: 2rem;
    }
}





