body.contacto-page-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top, rgba(0, 0, 0, 0.05), transparent 24%),
        #FCE700;
    color: #000000;
}

.contacto-page-container {
    width: 100%;
    max-width: 1440px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 32px var(--page-gutter) 56px;
    position: relative;
}

.btn-cerrar-contacto {
    position: absolute;
    top: 32px;
    right: var(--page-gutter);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #000000;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: border-color 0.3s ease, color 0.3s ease;
    z-index: 10;
}

.btn-cerrar-contacto:hover {
    border-bottom-color: #000000;
    color: #000000;
}

.cerrar-text {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
}

.cerrar-icon {
    font-size: 18px;
    line-height: 1;
}

.contacto-header {
    display: flex;
    justify-content: center;
    padding-top: 48px;
}

.contacto-logo {
    width: 110px;
    height: auto;
    object-fit: contain;
}

.contacto-body {
    display: flex;
    flex-direction: column;
    gap: 72px;
    padding-top: 72px;
}

.contacto-rrss-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 41px;
    width: 100%;
}

.footer-rrss-link {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.88);
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}

.footer-rrss-link:hover {
    border-bottom-color: #000000;
    color: #000000;
}

.footer-rrss-link::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #000000;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-rrss-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.contacto-layout {
    display: flex;
    justify-content: center;
    width: 100%;
}

.contacto-form {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: min(100%, 980px);
}

.contacto-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 56px;
}

.contacto-field {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contacto-field-full {
    width: 100%;
}

.contacto-field-label {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: rgba(0, 0, 0, 0.88);
    text-transform: uppercase;
}

.contacto-field input,
.contacto-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.45);
    background: transparent;
    padding: 0 0 16px;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    outline: none;
    resize: none;
    transition: border-color 0.3s ease;
}

.contacto-field textarea {
    min-height: 160px;
}

.contacto-field input:focus,
.contacto-field textarea:focus {
    border-bottom-color: #000000;
}

.contacto-submit {
    width: fit-content;
    min-width: 130px;
    padding: 18px 32px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.75);
    background: transparent;
    color: #000000;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.contacto-submit:hover {
    background: #000000;
    border-color: #000000;
    color: #FCE700;
}

@media (max-width: 1024px) {
    .contacto-form-grid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .contacto-page-container {
        padding-top: 24px;
        padding-bottom: 40px;
    }

    .btn-cerrar-contacto {
        top: 24px;
    }

    .contacto-header {
        justify-content: center;
        padding-top: 52px;
    }

    .contacto-logo {
        width: 92px;
    }

    .contacto-body {
        gap: 48px;
        padding-top: 56px;
    }

    .contacto-rrss-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

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

    .contacto-field input,
    .contacto-field textarea {
        font-size: 16px;
        line-height: 22px;
    }

    .contacto-submit {
        font-size: 16px;
        line-height: 20px;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .btn-cerrar-contacto {
        gap: 10px;
    }

    .cerrar-text {
        font-size: 13px;
    }

    .contacto-body {
        gap: 40px;
    }

    .footer-rrss-link {
        font-size: 11px;
        line-height: 16px;
    }
}