/* esto se utiliza para hacer un reset de css  */
* {
    margin: 0rem;
    padding: 0rem;
    box-sizing: border-box;
}

/* --- HEADER --- */

header {
    width: 100%;
    background-color: #fbe5d8;
    padding: 3rem 5rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

h1 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #293845;
    font-size: 6rem;
    margin: 0;
}

.subtitulo {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #293845;
    font-size: 1.5rem;
    font-style: italic;
    margin: 0;
    margin-left: 0.3rem;
}

.logo_colmena {
    width: 20rem;
    height: auto;
    transform: scaleX(-1);

    position: static;
}

/* -- MAIN -- */

h2 {
    color: #293845;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    font-size: 2.6rem;
    margin-top: 5rem;
    font-style: italic;
}

#h2info {
    color: #293845;
    font-size: 1.1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    max-width: 70rem;
    text-align: center;
    margin-left: 10rem;
    margin-top: 3rem;

}

#beneficios {

    display: flex;

    justify-content: space-between;

    gap: 2rem;

    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 4rem;
}

.circle {
    width: 10rem;
    height: 10rem;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #FEF3E0;
}

.benef {
    flex-basis: 30%;
    padding: 2.5rem;
    margin-top: 0;
    text-align: center;
    min-height: 2.8rem;
}

.pbenef {
    color: #293845;
    margin-left: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    font-style: italic;
    font-size: 1.6rem;
    text-align: center;
    min-height: 4.5rem;
    max-width: 20rem;
}

.subbenef {
    margin-left: 1.1rem;
    max-width: 20rem;
    margin-top: 1rem;
    font-size: .95rem;
    min-height: 3rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

/* --- ESTILOS DE LA SECCIÓN FORMULARIO --- */

#formulario {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    background-color: #f1f5f7;
    padding: 5rem 2rem;
    margin-bottom: 5rem;
}

#formulario p {
    font-size: 2.6rem;
    font-weight: bold;
    font-style: normal;
    color: #293845;
}

#formulario form {
    max-width: 40rem;
    margin: 2rem auto 0 auto;
    text-align: left;

    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
}

#formulario label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

#formulario input[type="text"],
#formulario input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#formulario button {
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;

    background-color: #f7c325;
    color: #111;

    font-size: 1.2rem;
    font-weight: bold;
    border: 1px solid #a88734;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#formulario button:hover {
    background-color: #e2b33b;
}

/* -- COLABORADORES -- */

#colaboradores {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f1f5f7;
    padding: 5rem 2rem;
    text-align: center;
}

.titulo-cta {
    color: #293845;

    font-size: 2rem;
    font-weight: bold;
}

.texto-cta {
    color: #292929;
    font-size: 1.1rem;
    margin-top: 1rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

#colaboradores button {
    width: auto;
    padding: 1rem 2.5rem;
    margin-top: 2rem;
    background-color: #f7c325;
    color: #292929;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#colaboradores button:hover {
    background-color: #e2b33b;
}

/* -- footer -- */

footer {
    text-align: right;
    padding: 2rem;
    padding-top: 6rem;
    font-size: 1rem;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}





/* -- PAGINA COLABORADORES -- */

#h2info_colab {
    color: #293845;
    font-size: 1.1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    max-width: 70rem;
    text-align: center;
    margin-left: 10rem;
    margin-top: 3rem;
}

#colab-beneficios {
    display: flex;
    justify-content: center;
    gap: 2rem;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin-top: 4rem;
    flex-wrap: wrap;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
}

.colab-benef {
    flex-basis: 45%;
    padding: 2.5rem;
    margin-top: 0;
    text-align: left;
    min-height: 2.8rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.pbenef-colab {
    color: #293845;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    font-style: italic;
    font-size: 1.6rem;
}

.subbenef-colab {
    margin-top: 1rem;
    font-size: 1rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}

#formulario-colab {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    background-color: #f1f5f7;
    padding: 5rem 2rem;
    margin-bottom: 5rem;
}

#formulario-colab p {
    font-size: 2.6rem;
    font-weight: bold;
    font-style: normal;
    color: #293845;
}

#formulario-colab form {
    max-width: 40rem;
    margin: 2rem auto 0 auto;
    text-align: left;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

#formulario-colab label {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

#formulario-colab input[type="text"],
#formulario-colab input[type="email"] {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#formulario-colab button {
    width: 100%;
    padding: 1rem;
    margin-top: 2rem;
    background-color: #f7c325;
    color: #111;
    font-size: 1.2rem;
    font-weight: bold;
    border: 1px solid #a88734;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

#formulario-colab button:hover {
    background-color: #e2b33b;
}