:root {
    --color-primary: #18A720;
}

body {
    font-family: 'Sora', sans-serif;
}

h1 {
    font-family: 'Sora', sans-serif;
    color: #fff;
    font-weight:800;
    text-align:center;
    margin-bottom:30px;
}

main {
    background-color:var(--color-primary);
    position: relative;
    min-height:100vh;
    width:100%;
    display:flex;
    justify-content: center;
    align-items: center;
    z-index:1;
    padding: 50px 0;
}

main::before {
    background: url(capa-tw-2.png) no-repeat center center/cover;
    content: '';
    display: block;
    height: 100%;
    opacity: 0.1;
    position: absolute;
    width: 100%;
    top:0;
    z-index:-1;
}

main .container {
    max-width:950px;
}

.box_iconos_head {
    display: flex;
    gap: 20px;
    justify-content: space-around;
    margin-top:30px;
}

.icono {
    width:100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;
    text-align: center;
    background: #ffffffe8;
    padding: 20px;
    border-radius: 10px;
}

.icono img {
    max-width:60px;
    margin-bottom:10px;
}

.icono h3 {
    font-family:'Sora', sans-serif;
    font-size:16px;
    font-weight: 800;
    color:#333333;
}

.box_content_form {
    display:flex;
    justify-content:center;
}

.box_form {
    padding:40px;
    background: #ffffffb5;
    border-radius: 20px 0 0 20px;
    width:100%;
}

.bg_box_form {
    background: url(bg-form.jpg) no-repeat center center/cover;
    border-radius: 0 20px 20px 0;
    width:100%;
}

h2 {
    font-weight: 700;
    margin-bottom:20px;
    font-size:30px;
}

form {
    display:flex;
    flex-direction: column;
}

form label {
    font-weight:300;
    text-transform:uppercase;
    color:#000;
    font-size:13px;
}
form input, form textarea, form select {
    margin-bottom:10px;
    border-radius:5px;
    padding: 10px;
    box-shadow: none;
    border:0;
}

.btn_enviar {
    background-color: #2c332c;
    color:#fff;
    display:block;
    text-align:Center;
    bordeR:0;
    box-shadow: none;
    padding:10px;
    border-radius:50px;
}

footer {
    background-color: #2c332c;
    padding: 35px 0;
}

footer img {
    max-width:200px;
    margin-bottom: 10px;
}

.copy_txt {
    color:#fff;
    font-size:13px;
}

@media (max-width:767px) {
    .box_iconos_head {
        gap:4%;
        flex-wrap: wrap;
    }
    
    .icono {
        width:48%;
        margin-bottom:4%;
    }
    
    .bg_box_form {
        width:0;
    }
}