/* ==========================================
   FOOTER / CONTACT SECTION - DESKTOP
   Título arriba, sin títulos grandes
   ========================================== */

:root {
    --footer-bg: #0b0504;
    --footer-white: #ffffff;
    --footer-muted: rgba(255, 255, 255, 0.68);
    --footer-muted2: rgba(255, 255, 255, 0.45);
    
    --footer-pill: rgba(255, 255, 255, 0.10);
    --footer-pillBorder: rgba(255, 255, 255, 0.10);
    
    --footer-orange: #ff6a00;
    --footer-orange2: #ff3b00;
    --footer-amber: #ffb300;
    
    --footer-shadow: 0 22px 50px rgba(0, 0, 0, 0.55);
    --footer-radius: 18px;
}

/* FONDO COMPLETO (full width) */
.footer-stage {
    width: 100%;
    min-height: 520px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(1200px 520px at 55% 40%, rgba(255, 120, 0, 0.35), transparent 55%),
                radial-gradient(520px 420px at 25% 60%, rgba(255, 90, 0, 0.22), transparent 60%),
                radial-gradient(380px 380px at 75% 25%, rgba(255, 60, 0, 0.20), transparent 65%),
                linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.90));
}

/* Glows con blur */
.footer-stage::before,
.footer-stage::after {
    content: "";
    position: absolute;
    inset: -80px;
    pointer-events: none;
    filter: blur(24px);
    opacity: 0.95;
}

.footer-stage::before {
    background: radial-gradient(420px 260px at 44% 38%, rgba(255, 80, 0, 0.60), transparent 70%),
                radial-gradient(380px 220px at 58% 62%, rgba(255, 140, 0, 0.45), transparent 70%),
                radial-gradient(520px 320px at 83% 28%, rgba(255, 70, 0, 0.35), transparent 75%);
    mix-blend-mode: screen;
}

.footer-stage::after {
    background: radial-gradient(520px 280px at 18% 42%, rgba(255, 70, 0, 0.30), transparent 70%),
                radial-gradient(520px 320px at 92% 72%, rgba(255, 110, 0, 0.22), transparent 75%);
    mix-blend-mode: screen;
    opacity: 0.7;
}

/* CONTENIDO LIMITADO Y CENTRADO */
.footer-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 28px 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 520px;
    position: relative;
}

/* TOP: Pills navegación */
.footer-top {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding-top: 6px;
}

.footer-pill {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    background: var(--footer-pill);
    border: 1px solid var(--footer-pillBorder);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    user-select: none;
    text-decoration: none;
    font-family: 'Domi', sans-serif;
    transition: all 0.2s ease;
}

.footer-pill:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.20);
}

/* MAIN: Grid 3 columnas */
.footer-main {
    flex: 1;
    display: grid;
    grid-template-columns: 430px 1fr 310px;
    gap: 34px;
    align-items: stretch;
    padding-top: 6px;
}

/* LEFT: Título + Card - MÁS ARRIBA */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 0;
}

.footer-headline {
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.02em;
    font-family: 'Domi', sans-serif;
}

.footer-headline-line1 {
    font-size: 40.2px;
    white-space: nowrap;
    color: var(--footer-white);
}

.footer-card {
    width: 420px;
    height: 220px;
    border-radius: 22px;
    background: linear-gradient(90deg, rgba(255, 120, 0, 0.92), rgba(255, 70, 0, 0.50));
    box-shadow: var(--footer-shadow);
    position: relative;
    overflow: hidden;
}

.footer-card::before {
    content: "Nova";
    position: absolute;
    left: 22px;
    top: 38px;
    font-size: 90px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: -0.02em;
    font-family: 'Domi', sans-serif;
}

.footer-portrait {
    position: absolute;
    right: -10px;
    bottom: -6px;
    width: 280px;
    height: 250px;
    object-fit: cover;
    filter: contrast(1.06) saturate(1.05);
    transform: scale(1.02);
    mix-blend-mode: normal;
}

/* CENTER: Contact Form 7 directo (sin títulos grandes) */
.footer-center {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
}

/* OCULTAR títulos grandes */
.footer-big,
.footer-future,
.footer-together {
    display: none;
}

/* Botón mobile - OCULTAR en desktop */
.footer-contact-button {
    display: none;
}

/* CONTACT FORM 7 - Layout 2 columnas */
.footer-cf7-wrapper {
    width: 100%;
    margin-top: 0;
}

.footer-cf7-wrapper .wpcf7 {
    margin: 0;
    padding: 0;
}

.footer-cf7-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-cf7-wrapper .wpcf7-form p {
    margin: 0;
}

/* Grid de 2 columnas */
.footer-cf7-form {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
}

/* Columna izquierda: 3 campos */
.footer-cf7-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Columna derecha: textarea */
.footer-cf7-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-cf7-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-cf7-field label {
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-family: 'Domi', sans-serif;
    margin-bottom: 0;
}

/* Inputs - Estilo minimalista */
.footer-cf7-field input {
    background: transparent;
    border: none;
    border-bottom: 1px solid transparent;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15));
    background-size: 100% 1px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    padding: 8px 0;
    outline: none;
    font-family: 'Domi', sans-serif;
    transition: all 0.2s ease;
}

.footer-cf7-field input:focus {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.35));
}

.footer-cf7-field input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Textarea - Grande en la derecha */
.footer-cf7-field textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    font-family: 'Domi', sans-serif;
    resize: none;
    height: 140px;
    transition: all 0.2s ease;
}

.footer-cf7-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.03);
}

.footer-cf7-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Botón submit */
.footer-cf7-submit {
    grid-column: 1 / -1;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-cf7-submit input[type="submit"] {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
    font-family: 'Domi', sans-serif;
    padding: 0;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.footer-cf7-submit input[type="submit"]:hover {
    color: rgba(255, 255, 255, 1);
}

/* Flecha DENTRO del mismo contenedor */
.footer-cf7-submit::after {
    content: "";
    width: 26px;
    height: 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17L17 7' stroke='white' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M10 7H17V14' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px;
    opacity: 0.95;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.footer-cf7-submit:hover::after {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.30);
}

/* Mensajes de validación */
.footer-cf7-wrapper .wpcf7-not-valid-tip {
    font-size: 11px;
    color: rgba(255, 100, 100, 0.9);
    margin-top: 4px;
    font-family: 'Domi', sans-serif;
}

.footer-cf7-wrapper .wpcf7-validation-errors,
.footer-cf7-wrapper .wpcf7-mail-sent-ok {
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-family: 'Domi', sans-serif;
    margin-top: 10px;
}

.footer-cf7-wrapper .wpcf7-validation-errors {
    background: rgba(255, 100, 100, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.footer-cf7-wrapper .wpcf7-mail-sent-ok {
    background: rgba(100, 255, 100, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.footer-cf7-wrapper .wpcf7-spinner {
    margin-left: 10px;
    vertical-align: middle;
}

/* RIGHT: Redes sociales + Contacto */
.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 36px;
    gap: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-iconBtn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-iconBtn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

.footer-contact {
    text-align: right;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.55;
    font-family: 'Domi', sans-serif;
}

.footer-contact-strong {
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

/* FOOTER: Copyright */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.50);
    font-family: 'Domi', sans-serif;
}

.footer-bottom-mid {
    text-align: center;
    width: 33%;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.40);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 11px;
}

.footer-bottom-mid a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom-mid a:hover {
    color: rgba(255, 255, 255, 0.65);
}

.footer-bottom-right {
    text-align: right;
    width: 33%;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.40);
}