﻿
    /* ===========================
   PÁGINA FES–TE SOCI
   =========================== */

.jm-soci-page {
    background-color: #0F7580; /* turquesa de fondo */
    color: #F2FC3B;
    padding: 80px 0 100px 0;
    font-family: var(--f-body);
}

.jm-soci-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

/* CABECERA */

.jm-soci-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.jm-soci-title {
    font-family: var(--f-title);
     letter-spacing: 0.05em;
    font-size: 80px;
    line-height: 1;
    margin: 0;
    color: #FF5E38; /* naranja */
    text-transform: uppercase;
}

/* Caja JA SOM / 300 SOCIS */

.jm-soci-counter {
    display: flex;
    font-family: var(--f-title);
     letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 38px;
    line-height: 1;
    margin-top: 8px;
}

.jm-soci-counter-label {
    padding: 12px 22px;
    padding-top:20px;
    border: 2px solid #F2FC3B;
    color: #F2FC3B;
    background-color: transparent;
}

.jm-soci-counter-number {
    padding: 12px 22px;
     padding-top:20px;
    border: 2px solid #F2FC3B;
    border-left: none;
    background-color: #F2FC3B;
    color: #0F7580;
}

/* Subtítol groc */

.jm-soci-subtitle {
    margin: 40px 0 20px 0;
    font-family: var(--f-title);
    letter-spacing: 0.05em;
    font-size: 62px;
    
    line-height: 1.1;
    text-transform: uppercase;
    color: #F2FC3B;
}

/* Text introductori */

.jm-soci-intro {
    margin: 0 0 40px 0;
    font-size: 18px;
    line-height: 1.6;
    color: #EDE5CE;
}

/* FORMULARI */

.jm-soci-form-wrapper {
    margin-top: 30px;
    color: #F2FC3B;
}

.jm-soci-form-title {
    font-family: var(--f-title);
    font-size: 32px;
     letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 18px 0;
}

.jm-soci-form-fields {
    margin-bottom: 24px;
}

/* Inputs principals */

.csoci,
.csoci_ko,
.csoci_ok {
    background-color: #F2FC3B;
    border: 1px solid #F2FC3B;
    width: 100%;
    padding: 10px 14px;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: var(--f-body);
    color: #0F7580;
    box-sizing: border-box;
}

.csoci2,
.csoci2_ok,
.csoci2_ko {
    background-color: #F2FC3B;
    border: 1px solid #F2FC3B;
    width: calc(50% - 6px);
    padding: 10px 14px;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: var(--f-body);
    color: #0F7580;
    box-sizing: border-box;
}

.jm-soci-row-2 {
    display: flex;
    gap: 12px;
}

/* placeholer en turquesa */

.csoci::placeholder,
.csoci2::placeholder,
.jm-soci-import::placeholder {
    color: #0F7580;
    opacity: 0.8;
}

/* QUOTES */

.jm-soci-quotes {
    margin: 24px 0;
}

.jm-soci-hint {
    display: block;
    font-size: 16px;
    margin-top: 4px;
}

/* Checkbox custom (container + checkmark) */

.container {
    display: block;
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    user-select: none;
    color: #F2FC3B;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #F2FC3B;
    background-color: transparent;
}

/* hover */

.container:hover input ~ .checkmark {
    background-color: rgba(242, 252, 59, 0.15);
}

/* checked */

.container input:checked ~ .checkmark {
    background-color: #F2FC3B;
}

/* check interior */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container input:checked ~ .checkmark:after {
    display: block;
}

.container .checkmark:after {
    left: 6px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #0F7580;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Textos legals */

.jm-soci-legal {
    font-size: 16px;
    line-height: 1.5;
}

.jm-soci-legal a {
    color: #F2FC3B;
    text-decoration: underline;FES-TE
}

.jm-soci-error {
    color: #FF5E38;
    font-weight: bold;
    display: block;
    margin: 4px 0 10px 0;
}

/* Botón FER–ME SOCI */

.jm-soci-btn-wrapper {
    margin: 36px 0 10px 0;
}

.jm-soci-button {
    width: 240px;
    height: auto;
    padding: 14px 0;
    border: none;
    background-color: #F2FC3B;
    color: #0F7580;
    font-family: var(--f-title);
     letter-spacing: 0.05em;
    font-size: 32px;
    text-transform: uppercase;
    cursor: pointer;
}

.jm-soci-button:hover {
    opacity: 0.9;
}

/* RESPONSIVE */

@media (max-width: 700px) {
    .jm-soci-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .jm-soci-title {
        font-size: 50px;
    }

    .jm-soci-counter {
        font-size: 16px;
    }

    .jm-soci-row-2 {
        flex-direction: column;
    }

    .csoci2,
    .csoci2_ok,
    .csoci2_ko {
        width: 100%;
    }

    .jm-soci-button {
        width: 100%;
    }


}

/* SELECT estil formulari FES-TE SOCI */
.csoci select,
select.csoci {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;

    background-color: #F2FC3B;
    border: 1px solid #F2FC3B;
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: var(--f-body);
    color: #0F7580;
    box-sizing: border-box;
    cursor: pointer;
    text-transform: uppercase;

    background-image: url('flecha_select.png'); /* si quieres flechita */
    background-repeat: no-repeat;
    background-position: right 12px center;
}

select.csoci option {
    color: #0F7580;
}

