@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

li {
    list-style: none;
}

a {
    text-decoration: none;
}

h2,
h3,
h4,
p {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", serif;
}

main {
    margin: 0 10em;
}

.fraseS {
    display: flex;
    justify-content: space-around;
    padding: 5em 2em;
}

.fraseS .S1,
.S2 {
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    padding: 1em;
}

.fraseS .S1 {
    border: 1px solid #898989;
    border-radius: 2em;
}

.fraseS .S1 i {
    font-size: 2.5em;
    color: #0080FF;
    padding-bottom: 0.4em;
}

.fraseS .S1 h2 {
    color: #2B2B2B;
    font-size: 1.5em;
    text-align: center;
    padding-bottom: 0.4em;
    font-weight: 800;
}

.fraseS .S1 p {
    color: #2B2B2B;
    font-size: 0.9em;
    text-align: justify;
}

.fraseS .S2 {
    border: 1px solid #ffffff;
    border-radius: 2em;
    background-color: #0080FF;
}

.fraseS .S2 i {
    font-size: 2.5em;
    color: #FFF;
    padding-bottom: 0.4em;
}

.fraseS .S2 h2 {
    color: #fff;
    font-size: 1.5em;
    text-align: center;
    padding-bottom: 0.4em;
    font-weight: 800;
}

.fraseS .S2 p {
    color: #fff;
    font-size: 0.9em;
    text-align: justify;
}

.fraseT {
    text-align: center;
    font-size: 3em;
    font-weight: 800;
    color: #2B2B2B;
    padding-bottom: 1em;
}

.left {
    display: flex;
    width: 100%;
    margin-bottom: 5em;
}

.left .imageL {
    width: 50%;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-right: 4em;
    position: relative;
}

.left .imageL img {
    width: 600px;
    height: 380px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 1em;
}

.imageL::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 380px;
    border-radius: 1em;
    background-color: #0080ff28; /* Azul semitransparente */
}

.left .text {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left .text h2 {
    color: #0080FF;
    font-size: 2.5em;
    font-weight: 800;
    width: 70%;
    margin-bottom: 0.3em;
}

.left .text p {
    color: #2B2B2B;
    font-size: 1.2em;
    width: 70%;
    margin-bottom: 0.3em;
}

.left .text ul {
    padding-inline-start: 0;
    width: 70%;
}

.left .text li i {
    color: #0080FF;
    padding: 0 1em 0 0;
    font-size: 1em;
}

.left .text li {
    font-size: 1em;
    color: #2B2B2B;
    padding-bottom: 0.9em;
}

.left .text .button {
    color: #fff;
    background-color: #2B2B2B;
    width: 100px;
    padding: 1em;
    text-align: center;
    border-radius: 1em;
    margin-left: 23%;
}




.right {
    display: flex;
    width: 100%;
    margin-bottom: 5em;
}

.right .imageR {
    width: 50%;
    display: flex;
    justify-content: initial;
    align-items: center;
    margin-left: 4em;
    position: relative;
}

.right .imageR img {
    width: 600px;
    height: 380px;
    object-fit: cover;
    object-position: bottom;
    border-radius: 1em;
}

.imageR::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 380px;
    border-radius: 1em;
    background-color: #0080ff28; /* Azul semitransparente */
}

.right .text {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
}

.right .text .desc{
    display: flex;
    flex-direction: column;
    align-items: end;
}

.right .text h2 {
    color: #0080FF;
    font-size: 2.5em;
    font-weight: 800;
    width: 70%;
    margin-bottom: 0.3em;
}

.right .text p {
    color: #2B2B2B;
    font-size: 1.2em;
    width: 70%;
    margin-bottom: 0.3em;
}

.right .text ul {
    padding-inline-start: 0;
    width: 70%;
}

.right .text li i {
    color: #0080FF;
    padding: 0 1em 0 0;
    font-size: 1em;
}

.right .text li {
    font-size: 1em;
    color: #2B2B2B;
    padding-bottom: .9em;
}

.right .text .button {
    color: #fff;
    background-color: #2B2B2B;
    width: 100px;
    padding: 1em;
    text-align: center;
    border-radius: 1em;
    margin-right: 23%;
}

@media (max-width: 800px){
    main{
        margin: 0;
        padding: 0;
    }

    .fraseS {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    
    .fraseS .S1,
    .S2 {
        padding: 0;
        margin: 1em 0;
        width: 300px;
        height: 200px;
    }
    
    .fraseS .S1 i {
        padding-bottom: .1em;
    }
    
    .fraseS .S1 h2 {
        font-size: 1.1em;
    }
    
    .fraseS .S1 p {
        font-size: 0.8em;
        text-align: center;
    }
    
    
    .fraseS .S2 i {
        padding-bottom: 0.1em;
    }
    
    .fraseS .S2 h2 {
        font-size: 1.1em;
    }
    
    .fraseS .S2 p {
        font-size: 0.8em;
        text-align: center;
    }
    
    .fraseT {
        font-size: 1.7em;
        margin: 0;
        padding: 1em 0 1.4em 0;
    }

    .left {
        flex-direction: column;
        padding: 0;
        width: 90%;
    }
    
    .left .imageL {
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        margin: 0 1.2em .5em 1.2em;
    }
    
    .left .imageL img {
        width: 100%;
        height: 250px;
    }
    
    .imageL::before {
        width: 100%;
        height: 250px;
    }
    
    .left .text {
        width: 100%;
        margin: 0 1.2em;
    }
    
    .left .text h2 {
        font-size: 2em;
        text-align: center;
        width: 100%;
        margin-bottom: 0.2em;
    }
    
    .left .text p {
        font-size: 1.1em;
        width: 90%;
        padding-left: 1.1em;
        text-align: justify;
        font-weight: 500;
    }
    
    .left .text ul {
        padding-inline-start: 0;
        width: 100%;
        padding-left: 1.1em;
    }
    
    .left .text li {
        font-weight: 500;
    }
    
    .left .text .button {
        margin-left: 30%;
    }



    .right {
        flex-direction: column-reverse;
        padding: 0;
        width: 90%;
    }
    
    .right .imageR {
        width: 100%;
        margin: 0;
        padding: 0;
        position: relative;
        margin: 0 1.2em .5em 1.2em;
    }
    
    .right .imageR img {
        width: 100%;
        height: 250px;
    }
    
    .imageR::before {
        width: 100%;
        height: 250px;
    }
    
    .right .text {
        width: 100%;
        margin: 0 1.2em;
    }

    .right .text .desc{
        align-items: initial;
    }
    
    .right .text h2 {
        font-size: 2em;
        text-align: center;
        width: 100%;
        margin-bottom: 0.2em;
    }
    
    .right .text p {
        font-size: 1.1em;
        width: 90%;
        padding-left: 1.1em;
        text-align: justify;
        font-weight: 500;
    }
    
    .right .text ul {
        padding-inline-start: 0;
        width: 100%;
        padding-left: 1.1em;
    }

    .right .text li {
        font-weight: 500;
    }
    
    .right .text .button {
        margin-right: 30%;
    }

}