body {
    margin: 0;
    font-family: system-ui, sans-serif;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    background-color: #ffffff;
}

body::-webkit-scrollbar {
    width: 10px;               /* width of the entire scrollbar */
}
  
body::-webkit-scrollbar-track {
    background: #363636;        /* color of the tracking area */
}
  
body::-webkit-scrollbar-thumb {
    background-color: #85B400;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
}

.main {
    flex: 1;                 /* fills remaining space under header */
    overflow-y: auto;        /* scrolls if content is too tall */
    overflow-x: hidden;
    max-width: 1920px;
    margin: auto;
}

.main_content{
    padding-top: 100px;
    padding-bottom: 200px;
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 20px auto;
    justify-items: center;
    align-items: center;
    row-gap: 20px;
    max-width: 1440px;
}

.titulo{
    color: #000000;
    font-weight: bolder;
    font-size: 60px;
    text-align: center;
    margin-bottom: 10px;
    margin-top: 0;
}

.subitutlo{
    margin: 0px auto;
    color: #686868;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

.contacto_row{
    width: 100%;
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}

.contacts{
    flex: 0 0 calc(30% - 10px);
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.forms{
    flex: 0 0 calc(70% - 10px);
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 100%;
}

.content{
    flex: 1;
    padding: 30px;
    border: 1px solid #ebebeb;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    row-gap: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* subtle shadow */
}

.contactos{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.content_titulo{
    font-size: 25px;
    font-weight: bold;
    margin: 0;
}

.content_sub_title{
    font-size: 18px;
    margin: 0;
}

.img_text_contact{
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    align-items: center;
}

.img_container_contactos{
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #84b4001b;
}

.img_container_contactos img{
    height: 20px;
}

.contact_texts{
    display: flex;
    flex-direction: column;
    row-gap: 2px;
}

.contat_tittle{
    font-size: 18px;
    margin: 0;
}

.contact_text{
    margin: 0;
    color: #686868;
}

 .features {
    
    margin: 0 auto;
  }

  .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.98rem;
  }

  .features-list .check {
    display: inline-flex;
    width: 26px;
    height: 26px;
    line-height: 26px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: #84b4001f;
    color: #85B400;
    font-weight: 700;
    flex: 0 0 26px;
  }

  /* Optional small responsive tweak */
  @media (max-width: 420px) {
    .features { padding: 0 16px; }
    .features-list li { font-size: 0.95rem; }
  }

.buttons_forms{
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.buttons_forms button{
    border: 1px solid #686868;
    background-color: #ffffff;
    color: black;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
}

.buttons_forms button.button_active{
    border: none;
    background-color: #85B400;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.buttons_forms button:hover{
    transform: scale(1.06);
}

.form_inside{
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.forms_inputs{
    padding-top: 10px;
    padding-bottom: 20px;
}

.inputs_row{
    display: flex;
    flex-direction: row;
    width: 100%;
    column-gap: 20px;
}

.forms label,
.colab_textarea label,
.inputs_row label{
    color: #646464;
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}

.forms input,
.inputs_row input{
    height: 35px;
    border-radius: 5px;
    border: 1px solid #c9c9c9;
    padding-left: 20px;
    font-size: 15px;
}

.forms textarea:focus,
.forms input:focus,
.inputs_row input:focus {
  outline: 2px solid #5aa900; /* blue outer border */
  outline-offset: 2px;        /* space between input and outline */
}

.input_label{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0px auto !important;
}

.forms textarea{
    height: 160px;
    border-radius: 5px;
    border: 1px solid #c9c9c9;
    padding-left: 20px;
    font-size: 14px;
    resize: vertical; /* user can resize vertically only */
}

.enviar{
    cursor: pointer;
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #85B400;
    color: white;
    transition: transform 0.2s ease;
}

.enviar img{
    height: 16px;
}

.enviar:hover{
    transform: scale(1.02);
}

select {
  position: relative;
  z-index: 1; /* make sure it doesn’t overlap weirdly */
}

select{
    height: 35px;
    border-radius: 5px;
    border: 1px solid #c9c9c9;
    padding-left: 20px;
    font-size: 16px;
}

.inputs_row option{
    color: rgb(173, 173, 173);
    background-color: white;
}

.inputs_row option:hover{
    color: rgb(255, 255, 255);
    background-color: rgb(102, 172, 4);
}

@media (max-width: 600px) {
    .main_content{
        margin-top: 20px;
        width: 90%;
        padding-bottom: 100px;
    }

    .titulo{
        font-size: 30px;
    }

    .subitutlo{
        font-size: 18px;
        text-align: justify;
    }

    .colab_form,
    section,
    .caracteristica{
        box-sizing: border-box; /* 👈 key line */
        width: 100%;
        max-width: 350px;
        margin: auto;
    }

    .buttons_forms{
        width: 100%;
        flex-direction: column;
    }

    .buttons_forms button{
        width: 100%;
    }

    .inputs_row,
    .contacto_row{
        width: 100%;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .forms{
        order: 0;
    }

    .contacts{
        order: 1;
    }
}