@import './global.css';

.strategy {
    width: 100%;
    height: auto;
    padding-top: 48px;
    background-color: var(--section-clear);  
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.content_strategy {
    width: 90%;
    max-width: 800px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.content_strategy h2 {
    font-size: 1.8rem;
    color: var(--white-page);
    margin-bottom: 48px;
    text-align: center;
}
.content_strategy h2 strong {
    font-family: 'Bruno Ace', sans-serif;
    color: var(--primary-color);
    font-size: 2rem;
    letter-spacing: 1.2px;
}

.step_to_step {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin-bottom: 48px;
    overflow: hidden;
}

.step {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.step_flex_left,
.step_flex_right {
    width: 35%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.step_flex_left h3,
.step_flex_right h3 {
    font-size: 3.4rem;
    letter-spacing: 1.2px;
    font-family: 'Roboto Slab', serif;
}
.step_flex_left h4,
.step_flex_right h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.4rem;
    letter-spacing: 0.6px;
    font-weight: 400;
    font-style: italic;
    color: var(--white-page);
}
.step img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.step p {
    width: 35%;
    font-size: 1.2rem;
    opacity: 0.6;
    color: var(--white-page);
}
.step_two p, .step_four p{
    text-align: right;
}
.step_one h3 {
    color: var(--secundary-color);
}
.step_two h3 {
    color: var(--quaternary-color);
}
.step_three h3 {
    color: var(--primary-color);
}
.step_four h3 {
    color: var(--tertiary-color);
}

.text_marketing {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.text_marketing h3 {
    font-size: 1.6rem;
    color: var(--white-page);
}

.text_marketing p {
    font-size: 1.2rem;
    color: var(--white-page);
}

.text_marketing p strong {
    color: var(--primary-color);
}


@media screen and (min-width: 700px)  and (min-height: 510px){
    .strategy {
        padding-top: 60px;
    }
    .content_strategy h2 {
        font-size: 2.6rem;
        margin-bottom: 60px;
    }
    .content_strategy h2 strong {
        font-size: 3rem;
        letter-spacing: 1.8px;
    }
    .step_to_step {
        width: 90%;
        gap: 60px;
    }
    .step_flex_left h3, .step_flex_right h3 {
        font-size: 4.8rem;
        letter-spacing: 1.6px;
    }
    .step_flex_left h4, .step_flex_right h4 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }
    .step img {
        width: 100px;
        height: 100px;
    }
    .step p {
        font-size: 1.6rem;
    }
    .text_marketing {
        gap: 16px;
    }
    
    .text_marketing h3 {
        font-size: 2.2rem;
        margin: 8px 0;
    }
    
    .text_marketing p {
        font-size: 1.8rem;
    }
    
}

@media screen  and (min-width: 830px)  and (max-height: 500px){
    .strategy {
        padding-top: 60px;
    }
    .content_strategy h2 {
        margin-bottom: 60px;
    }
    .step_to_step {
        width: 80%;
        gap: 64px;
        margin-bottom: 40px;
    }
}
@media screen and (min-width: 1900px) {
    .strategy {
        padding-top: 80px;
    }
    .content_strategy {
        max-width: 1000px;
    }
    .content_strategy h2 {
        font-size: 2.8rem;
        margin-bottom: 80px;
        letter-spacing: 0.8px;
    }
    .content_strategy h2 strong {
        font-size: 3.2rem;
        letter-spacing: 1.8px;
    }

    .step_to_step {
      margin-bottom: 80px;
    }
    .step_flex_left h3, .step_flex_right h3 {
        font-size: 5.4rem;
        letter-spacing: 1.6px;
    }
    .step_flex_left h4, .step_flex_right h4 {
        font-size: 2.8rem;
        letter-spacing: 1.2px;
    }
    .step img {
        width: 120px;
        height: 120px;
    }
    .step p {
        font-size: 2.2rem;
    }

    .text_marketing h3 {
        font-size: 2.6rem;
        margin: 12px 0;
    }
    
    .text_marketing p {
        font-size: 2rem;
        text-align: justify;
    }
}