body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: white;
}

.lm-container h2 {
    margin-bottom: 35px;
    line-height: 130%;
}

.lm-container {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    gap: 40px;
    align-items: center;
    background: #292E31;
    padding: 35px 0px;
    position: relative;
}

.lm-container::before {
    content: '';
    position: absolute;
    width: 100px;
    top: 0;
    left: 0;
    height: 100%;
    background: white;
}

/* IZQUIERDA */
.left {
    flex: 1;
}


.left img {
    width: 100%;
    max-width: 350px;
    /* transform: rotate(-5deg); */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
    filter: drop-shadow(5px 10px 5px #777);

}

/* DERECHA */
.right {
    flex: 2;
    color: #fff;
    padding: 40px;
    border-radius: 6px;
    /* max-width: 520px; */

}

.right h1 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
}

.right strong {
    font-weight: 700;
}

/* FORM */
.form {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 520px;
}

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

.form-group label {
    font-size: 13px;
    margin-bottom: 5px;
    color: #ccc;
}

.form-group input,
.form-group select {
    padding: 14px 12px;
    border-radius: 6px;
    border: none;
    font-size: 14px;
}

/* FULL WIDTH */
.full {
    grid-column: span 2;
}

/* CHECKBOX */
.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 16px;
}

/* BOTÓN */
button {
    margin-top: 20px;
    background: #f5a800;
    border: none;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

button:hover {
    background: #ffbb33;
}

.full.checkbox input {
    appearance: none;
    background: white;
    cursor: pointer;
    height: 14px;
    padding: 0!important;
    position: relative;
    width: 14px!important
}

.full.checkbox input:before {
    background: #ffbb33;
    content: "";
    height: 10px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%) scale(0);
    transition: .2s ease;
    width: 10px
}

.full.checkbox input:checked:before {
    transform: translate(-50%,-50%) scale(1)
}

.pdf-footer {
    background-color: #292E31;
    color: white;
}

.anchor-button {
    display: block;
    width: 150px;
    text-align: center;
    background-color: #FFB500;
    font-weight: bold;
    font-size: 18px;
    padding: 15px 0;
    border-radius: 5px;
    text-decoration: none;
    color: black;
}

.pdf-disclaimer {
    font-size: 12px;
    margin: 5px 20px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .lm-container {
        flex-direction: column;
        gap: 0px;
    }

    .lm-container::before {
        width: 100%;
        height: 150px;
    }

    .form {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: span 1;
    }
}