:root {
    --naranja-vale: #e36002; /* El color exacto de la marca */
    --texto-oscuro: #d35400;
    --blanco: #ffffff;
    --gris-suave: #cfcfcf;
    --vc-pad-x: 30px;
    --vc-pad-top: 20px;
    --vc-pad-bottom: 10px;
    --fuente-titulo: "Poppins", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Noto Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    height: 100%;
    background: var(--blanco);
}

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- COLUMNA IZQUIERDA --- */
.vc-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        to right,
        var(--blanco) 0%,
        var(--blanco) 50%,
        var(--naranja-vale) 50%,
        var(--naranja-vale) 100%
    );
}

.vc-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100vh;
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.vc-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/fondo-principal.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
}

.vc-left,
.vc-right {
    flex: 1 1 0;
    min-width: 320px;
    position: relative;
    z-index: 1;
}

.vc-left {
    overflow: hidden;
    background-color: transparent;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding: var(--vc-pad-top) var(--vc-pad-x) var(--vc-pad-bottom);
}

.vc-left-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 650px;
    flex: 1 1 auto;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    margin-left: auto;
}

.vc-logo {
    width: 117px;
    height: auto;
    display: block;
    margin-bottom: 50px;
}

.vc-headline {
    font-size: 64px;
    font-weight: 400;
    color: var(--naranja-vale);
    line-height: 1.1;
    margin: 0;
    font-family: var(--fuente-titulo);
}

.w-light {
    font-weight: 300;
}
.w-semibold{
    font-weight: 600;
}
.w-bold {
    font-weight: 800;
}

.vc-pill {
    background-color: var(--naranja-vale);
    color: white;
    display: inline-block;
    padding: 10px 20px 20px;
    border-radius: 18px;
    font-size: 55px;
    font-weight: 800;
    margin-top: 15px;
    width: fit-content;
    line-height: 1;
}

.vc-projects {
    margin-top: auto;
    color: var(--naranja-vale);
    display: grid;
    grid-template-columns: auto;
    row-gap: 8px;
    justify-items: center;
    width: 100%;
}

.vc-projects-label {
    font-size: 20px;
    font-weight: 700;
}

.vc-projects-arrow {
    width: 26px;
    height: 14px;
    position: relative;
    overflow: hidden;
    margin-top: -2px;
    animation: vc-projects-bounce 1.2s ease-in-out infinite;
}

.vc-projects-arrow::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -6px;
    width: 18px;
    height: 18px;
    background: var(--naranja-vale);
    border-radius: 3px;
    transform: translateX(-50%) rotate(45deg);
}

@keyframes vc-projects-bounce {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .vc-projects-arrow {
        animation: none;
    }
}

.vc-projects-bar {
    width: min(300px, 100%);
    height: 50px;
    background: var(--naranja-vale);
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    font: inherit;
    color: var(--blanco);
    outline: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.vc-projects-bar:focus {
    outline: none;
}

.vc-projects-bar:focus-visible {
    outline: 2px solid var(--naranja-vale);
    outline-offset: 3px;
}

/* --- COLUMNA DERECHA --- */
.vc-right {
    background-color: transparent;
    color: var(--blanco);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: var(--vc-pad-top) var(--vc-pad-x) var(--vc-pad-bottom);
    padding-left: 60px;
}

.vc-right-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 560px;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    margin-top: 120px;
}

.vc-contact-icon {
    width: 90px;
    height: auto;
    margin-bottom: 10px;
}

.vc-contact-header h2 {
    font-size: 54px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 2px;
}

.vc-contact-header p {
    font-size: 24px;
    line-height: 1;
    font-weight: 300;
    margin: 0;
}

.vc-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

.vc-field {
    position: relative;
    background: var(--blanco);
    border-radius: 10px;
    height: 60px;
    display: flex;
    align-items: stretch;
}

.vc-field--full {
    grid-column: 1 / -1;
}

.vc-field-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--naranja-vale);
    font-weight: 600;
    font-size: 16px;
    pointer-events: none;
    white-space: nowrap;
    transform-origin: left top;
    transition: top 160ms ease, transform 160ms ease, font-size 160ms ease;
}

.vc-field-optional {
    color: var(--gris-suave);
    font-weight: 600;
}

.vc-field input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 18px;
    padding: 22px 16px 10px;
    font-family: inherit;
    color: #2b2b2b;
}

.vc-field--wide-label input {
    padding: 22px 16px 10px;
}

.vc-field.is-focused .vc-field-label,
.vc-field.is-filled .vc-field-label {
    top: 10px;
    transform: translateY(0);
    font-size: 12px;
}

.vc-field input::placeholder {
    color: #a0a0a0;
}

.vc-form-actions {
    grid-column: 1 / -1;
    margin-top: 6px;
    min-width: 180px;
    margin: 0 auto;
    display: table;
}

.vc-submit {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: 2px solid var(--blanco);
    background: var(--blanco);
    color: var(--naranja-vale);
    font-family: var(--fuente-titulo);
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.vc-submit:hover {
    background: var(--naranja-vale);
    color: var(--blanco);
}

.vc-submit:active {
    transform: translateY(1px);
}

.vc-submit:focus-visible {
    outline: 2px solid var(--blanco);
    outline-offset: 3px;
}

.vc-info {
    grid-column: 1 / -1;
    font-size: 18px;
    line-height: 1.45;
    margin-top: 5px;
    margin-bottom: 0;
}

/* --- FOOTER / RRSS --- */
.vc-social {
    margin-top: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 28px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    padding-top: 18px;
    padding-bottom: 8px;
}

.vc-social-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 18px;
    min-width: 0;
}

.vc-social-col::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
}

.vc-social-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.vc-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex: 0 0 auto;
}

.vc-social-item span {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    font-size: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1450px){
    .vc-right {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 1380px){
    .vc-social {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 16px;
        column-gap: 22px;
        padding-top: 16px;
    }

    .vc-social-col:last-child {
        grid-column: 1 / -1;
    }

    .vc-social-col {
        padding-left: 14px;
    }
    .vc-right-inner {
        margin-top: 80px;
    }
}
@media (max-width: 1180px){
    .vc-headline br{
        display: none;
    }
}
@media (max-width: 1080px){
    .vc-headline{
        font-size: 58px;
    }
    .vc-pill {
        font-size: 48px;
    }
}
@media (max-width: 991px) {
    .vc-container {
        background: var(--blanco);
    }

    .vc-wrap {
        flex-direction: column;
        min-height: auto;
    }

    .vc-left,
    .vc-right {
        min-width: 0;
        flex: 0 0 auto;
        width: 100%;
    }

    .vc-left {
        padding: 34px var(--vc-pad-x) 28px;
    }

    .vc-left-inner {
        height: auto;
        gap: 14px;
    }

    .vc-right {
        background: var(--naranja-vale);
        padding: 28px var(--vc-pad-x) 22px;
        padding-left: var(--vc-pad-x);
    }

    .vc-left-inner,
    .vc-right-inner {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .vc-right-inner {
        margin-top: 18px;
    }

    .vc-logo {
        margin-bottom: 20px;
    }

    .vc-headline {
        font-size: 48px;
        line-height: 1.12;
    }

    .vc-pill {
        font-size: 40px;
        padding: 10px 18px 16px;
        margin-top: 6px;
    }

    .vc-projects {
        margin-top: 50px;
    }

    .vc-contact-header h2 {
        font-size: 48px;
        letter-spacing: 1px;
    }

    .vc-contact-header p {
        font-size: 20px;
    }

    .vc-field {
        height: 54px;
    }

    .vc-field input {
        font-size: 16px;
        padding: 20px 16px 10px;
    }

    .vc-submit {
        height: 46px;
        font-size: 18px;
    }

    .vc-info {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .vc-social {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-top: 60px;
    }

    .vc-social-col:last-child {
        grid-column: auto;
    }
    .vc-container::before{
        display: none;
    }
}

@media (max-width: 767px) {
    .vc-social {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vc-social-col:last-child {
        grid-column: 1 / -1;
    }
    .vc-left{
        padding: 20px var(--vc-pad-x) 40px;
    }
}

@media (max-width: 575px) {
    :root {
        --vc-pad-x: 18px;
    }

    .vc-pill {
        font-size: 34px;
        border-radius: 14px;
        margin-top: 0;
    }

    .vc-contact-header h2 {
        font-size: 42px;
    }

    .vc-contact-header p {
        font-size: 18px;
    }
    .vc-contact-icon {
        width: 80px;
    }
}
@media (max-width: 520px){
    .vc-headline {
        font-size: 42px;
    }
    .vc-form {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .vc-social {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .vc-social-col:last-child {
        grid-column: auto;
    }
    .vc-social-col::after{
        display: none;
    }
    .vc-logo {
        width: 100px;
    }
    .vc-field input{
        font-size: 14px;
    }
}
@media (max-width: 480px){
    .vc-contact-header h2 {
        font-size: 38px;
    }
    .vc-projects-bar{
        width: 280px;
    }
    .vc-social-icon{
        position: relative;
        top: -2px;
        left: 0;
    }
}
@media (max-width: 400px){
    .vc-headline{
      font-size: 38px;
    }
    .vc-pill {
        font-size: 28px;
    }
}