/**
 * SkySales Pro - Estilos base (compartidos por todas las vistas)
 * Variables, reset, header, footer, navegación, formularios de contacto
 */

:root {
    --primary: #c5a059;
    --bg-dark: #ffffff;
    --bg-card: #ffffff;
    --bg-lighter: #ffffff;
    --text: #4A5568;
    --text-muted: #9ca3af;
    --nav-bg: #010066;
    --nav-text: #ffffff;
    --nav-active-bg: #ffffff;
    --nav-active-text: #010066;
    /* Cursiva Kufam: más espacio métrico abajo; compensamos para que se vea centrado */
    --nav-pill-pad-y-top: 0.38rem;
    --nav-pill-pad-y-bottom: 0.24rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at top right, var(--bg-lighter), var(--bg-dark));
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
}

main {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    min-width: 0;
}

/* Header / Nav */
@font-face {
    font-family: 'Kontora';
    src: url('../res/fonts/Kontora-SemiBold.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Kontora';
    src: url('../res/fonts/Kontora-ExtraBold.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Kontora Black';
    src: url('../res/fonts/Kontora-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Kontora Regular';
    src: url('../res/fonts/Kontora-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins Light';
    src: url('../res/fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins Regular';
    src: url('../res/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins Medium';
    src: url('../res/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins SemiBold';
    src: url('../res/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins Bold';
    src: url('../res/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins ExtraBold';
    src: url('../res/fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Aspire SC Black';
    src: url('../res/fonts/aspire-sc-black-oblique.ttf') format('truetype');
    font-weight: 900;
    font-style: oblique;
    font-display: swap;
}

@font-face {
    font-family: 'Kufam Medium';
    src: url('../res/fonts/Kufam-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kufam ExtraBold';
    src: url('../res/fonts/Kufam-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Kufam Medium Italic';
    src: url('../res/fonts/Kufam-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Kufam SemiBold Italic';
    src: url('../res/fonts/Kufam-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../res/fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../res/fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../res/fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    max-width: 100vw;
    padding-left: clamp(1.5rem, 5vw, 10rem);
    padding-right: clamp(1.5rem, 5vw, 7rem);
    background: var(--nav-bg);
    box-shadow: none;
    border-bottom: none;
    box-sizing: border-box;
    transition: background 0.3s ease;
    min-height: 120px;
    display: flex;
    align-items: stretch;
}

header nav.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.nav-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 80px;
    text-decoration: none;
}

.nav-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(2rem, 4vw, 4rem);
    flex: 1;
    min-width: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4vw, 3.75rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--nav-text);
    font-family: 'Kufam SemiBold Italic', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--nav-pill-pad-y-top);
    padding-bottom: var(--nav-pill-pad-y-bottom);
    padding-inline: 0;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
    color: var(--nav-text);
    opacity: 0.9;
}

.nav-links a.active {
    background: var(--nav-active-bg);
    color: var(--nav-active-text);
    padding-top: var(--nav-pill-pad-y-top);
    padding-bottom: var(--nav-pill-pad-y-bottom);
    padding-inline: 0.75rem;
}

.nav-links a.active::after {
    content: none;
}

.lang-selector-wrap {
    position: relative;
    flex-shrink: 0;
}

.lang-selector-wrap summary {
    list-style: none;
    cursor: pointer;
}

.lang-selector-wrap summary::-webkit-details-marker {
    display: none;
}

.lang-selector-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    color: var(--nav-text);
    font-family: 'Kufam SemiBold Italic', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    padding-top: var(--nav-pill-pad-y-top);
    padding-bottom: var(--nav-pill-pad-y-bottom);
    padding-inline: 0;
    user-select: none;
}

.lang-selector-caret {
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid var(--nav-text);
    flex-shrink: 0;
    align-self: center;
}

.lang-selector-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 0;
    min-width: 3.25rem;
    padding: 0.2rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    z-index: 10;
}

.lang-selector-wrap:not([open]) .lang-selector-menu {
    display: none;
}

.lang-selector {
    color: var(--nav-bg);
    text-decoration: none;
    font-family: 'Kufam SemiBold Italic', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    padding-block: 0.28rem;
    padding-inline: 0.45rem;
    border-radius: 4px;
    line-height: 1;
    transition: background 0.2s ease;
}

.lang-selector:hover {
    background: rgba(1, 0, 102, 0.08);
}

.lang-selector.is-active {
    background: var(--nav-bg);
    color: var(--nav-text);
}

.lang-selector.is-disabled,
.lang-selector[aria-disabled="true"] {
    opacity: 0.42;
    cursor: not-allowed;
    pointer-events: none;
}

.lang-selector.is-disabled:hover,
.lang-selector[aria-disabled="true"]:hover {
    background: transparent;
}

/* Responsividad para pantallas ultra anchas (2000px+) */
@media (min-width: 2000px) {
    header {
        --nav-fs: clamp(1.2rem, 1.2vw, 1.4rem);
        --nav-fs-menu: clamp(0.95rem, 1vw, 1.15rem);
        --nav-pill-pad-y-top: 0.45rem;
        --nav-pill-pad-y-bottom: 0.32rem;
        min-height: 120px;
        padding-left: 5rem;
        padding-right: 5rem;
    }

    header nav.navbar {
        max-width: 2000px;
    }

    .nav-logo {
        height: 85px;
    }

    .nav-links {
        gap: 5.5rem;
    }

    .nav-links a {
        font-size: var(--nav-fs);
        letter-spacing: 0.03em;
    }

    .nav-links a.active {
        padding-inline: 0.9rem;
    }

    .lang-selector-toggle {
        font-size: var(--nav-fs);
        letter-spacing: 0.03em;
    }

    .lang-selector {
        font-size: var(--nav-fs-menu);
        padding-block: 0.35rem;
        padding-inline: 0.55rem;
    }

    .lang-selector-caret {
        border-left-width: 4px;
        border-right-width: 4px;
        border-top-width: 5px;
    }
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--nav-text);
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-mobile-panel {
    display: none;
}

@media (max-width: 900px) {
    header {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    header nav.navbar {
        justify-content: center;
        position: relative;
    }

    .nav-logo {
        height: 45px;
    }

    .nav-center {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        position: absolute;
        right: 0;
    }


    .nav-mobile-panel {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background: var(--nav-bg);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.3s;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
        gap: 0.75rem;
        z-index: 999;
    }

    .nav-mobile-panel .nav-item {
        color: var(--nav-text);
        font-family: 'Kufam SemiBold Italic', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        font-style: italic;
        text-transform: uppercase;
        justify-content: flex-start;
        padding-top: var(--nav-pill-pad-y-top);
        padding-bottom: var(--nav-pill-pad-y-bottom);
        padding-inline: 0;
        line-height: 1;
        border-radius: 999px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        width: fit-content;
    }

    .nav-mobile-panel .nav-item.active {
        color: var(--nav-active-text);
        background: var(--nav-active-bg);
        padding-top: var(--nav-pill-pad-y-top);
        padding-bottom: var(--nav-pill-pad-y-bottom);
        padding-inline: 0.75rem;
    }

    .nav-mobile-panel .lang-selector-wrap {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-mobile-panel .lang-selector-toggle {
        color: var(--nav-text);
    }

    .nav-mobile-panel .lang-selector-caret {
        border-top-color: var(--nav-text);
    }

    .nav-mobile-panel.active {
        right: 0;
    }

    .nav-mobile-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 998;
        background: rgba(3, 62, 138, 0.35);
        border: none;
        padding: 0;
        margin: 0;
        cursor: pointer;
    }

    .nav-mobile-backdrop.active {
        display: block;
    }

    body.nav-mobile-open {
        overflow: hidden;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Botones base */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary);
    color: #0a0e14;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #d4b476;
    transform: translateY(-2px);
}

.btn-outline {
    background: #ffffff;
    color: #00b8f2;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    padding: 0.6rem 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-outline:hover,
.btn-outline:focus {
    background: #f0f0f0;
    color: #000000;
}

/* Section Titles (compartidos) */
.section-title-wrap {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #374151;
    margin: 0 0 0.75rem 0;
}

.section-title-underline {
    display: block;
    width: 60px;
    height: 5px;
    background: #0CB7F2;
    margin: 0 auto;
}

section {
    padding: var(--section-padding-y, 5rem) 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.section-inner {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding-left: var(--container-padding, 2rem);
    padding-right: var(--container-padding, 2rem);
    width: 100%;
    box-sizing: border-box;
}

/* Contacto (compartido) */
.contacto-section {
    background: #00b8f2;
    padding: 4rem 2rem;
}

.contacto-inner {
    max-width: var(--layout-content-max, 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 900px) {
    .contacto-inner {
        grid-template-columns: 1fr;
    }
}

.contacto-heading {
    padding-left: 2rem;
}

.contacto-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 0 0;
    line-height: 1.2;
}

.contacto-subtitle {
    font-family: "Poppins", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.contacto-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .contacto-form-row {
        grid-template-columns: 1fr;
    }
}

.contacto-form .form-group {
    margin-bottom: 1rem;
}

.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 0.9rem 1.1rem;
    background: #ffffff;
    border: none;
    color: #1f2937;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 12px;
    box-sizing: border-box;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder {
    color: var(--text-muted);
}

.contacto-form input:focus,
.contacto-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}

.contacto-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contacto-form-actions {
    text-align: right;
    margin-top: 0.5rem;
}

.btn-contacto {
    padding: 0.6rem 1.75rem;
    background: #ffffff;
    color: #6b7280;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 1rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-contacto:hover {
    background: #f3f4f6;
    color: #4b5563;
}

/* Formulario contacto (inicio + sobre nosotros): dos columnas + tarjeta flotante */
.sobre-contact {
    --sobre-contact-navy: #010066;
    --sobre-contact-muted: #6b7280;
    --sobre-contact-body: #3d4556;
    background: #ffffff;
    padding: clamp(2.75rem, 7vw, 4.25rem) 0 clamp(3.5rem, 9vw, 6rem);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: visible;
}

.sobre-contact .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sobre-contact__inner {
    max-width: min(96vw, 72rem);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
}

.sobre-contact__stage {
    position: relative;
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.sobre-contact__row {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.sobre-contact__intro {
    padding-top: 0;
    min-width: 0;
}

.sobre-contact__headline {
    position: relative;
    display: inline-block;
    margin: 0 0 clamp(1rem, 2.5vw, 1.35rem);
    padding-bottom: clamp(0.75rem, 2.2vw, 1.15rem);
    font-family: 'kufam medium italic', sans-serif;
    font-weight: 700;
    font-style: italic;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: clamp(1.35rem, 3.2vw, 2.25rem);
}

.sobre-contact__headline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(1, 0, 102, 0.05) 6%,
        rgba(1, 0, 102, 0.45) 18%,
        var(--sobre-contact-navy) 32%,
        var(--sobre-contact-navy) 68%,
        rgba(1, 0, 102, 0.45) 82%,
        rgba(1, 0, 102, 0.05) 94%,
        transparent 100%
    );
}

.sobre-contact__headline-line {
    display: block;
}

.sobre-contact__headline-line--navy {
    color: var(--sobre-contact-navy);
}

.sobre-contact__headline-line--muted {
    color: var(--sobre-contact-muted);
}

.sobre-contact__text {
    margin: 0 0 clamp(0.85rem, 2vw, 1rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9rem, 1.1vw, 1.05rem);
    line-height: 1.3;
    color: #333333;
    max-width: 34rem;
}

.sobre-contact__text:last-of-type {
    margin-bottom: 0;
}

.sobre-contact__panel-wrap {
    --sobre-contact-panel-pad-x: 9.5%;
    --sobre-contact-panel-pad-top: 10%;
    --sobre-contact-panel-pad-bottom: 7.5%;
    min-width: 0;
    position: relative;
    z-index: 1;
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.sobre-contact__panel {
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    line-height: 0;
    overflow: visible;
}

.sobre-contact__panel-bg {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
}

.sobre-contact__form {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(0.45rem, 1.1vw, 0.65rem);
    box-sizing: border-box;
    min-height: 100%;
    padding:
        var(--sobre-contact-panel-pad-top)
        var(--sobre-contact-panel-pad-x)
        var(--sobre-contact-panel-pad-bottom);
    line-height: normal;
    overflow: hidden;
}

.sobre-contact__field {
    display: block;
    margin: 0;
}

.sobre-contact__field input,
.sobre-contact__field textarea {
    width: 100%;
    padding: clamp(0.6rem, 1.4vw, 0.8rem) clamp(0.85rem, 2vw, 1rem);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(0.8rem, 0.95vw, 1rem);
    color: #333333;
    background: #ffffff;
    border: none;
    border-radius: clamp(0.65rem, 1.5vw, 0.85rem);
    box-sizing: border-box;
    transition: box-shadow 0.2s ease;
    line-height: 1.2;
}

.sobre-contact__field input::placeholder,
.sobre-contact__field textarea::placeholder {
    color: #9ca3af;
}

.sobre-contact__field input:focus,
.sobre-contact__field textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.45);
}

.sobre-contact__field--message {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.sobre-contact__field--message textarea {
    flex: 1 1 auto;
    min-height: clamp(3.25rem, 10vw, 4.25rem);
    max-height: clamp(4rem, 14vw, 5.5rem);
    resize: none;
    vertical-align: top;
}

.sobre-contact__actions {
    flex-shrink: 0;
    margin-top: auto;
    padding-top: clamp(0.2rem, 0.6vw, 0.4rem);
    display: flex;
    justify-content: flex-end;
}

.sobre-contact__submit {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(0.72rem, 0.9vw, 0.82rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--sobre-contact-navy);
    background: #ffffff;
    border: none;
    border-radius: 9999px;
    padding: 0.45rem clamp(1.1rem, 2.5vw, 1.45rem);
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.sobre-contact__submit:hover {
    background: #f3f4f6;
    transform: translateY(-1px);
}

.sobre-contact__submit:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.sobre-contact__float-card {
    position: absolute;
    left: 50%;
    bottom: 18%;
    transform: translate(-50%, 12%);
    z-index: 4;
    width: min(62%, 21rem);
    padding: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1.35rem, 3vw, 1.85rem);
    background: #ffffff;
    border-radius: clamp(0.75rem, 1.8vw, 1rem);
    box-shadow: 0 14px 36px rgba(15, 23, 42, 0.14), 0 4px 14px rgba(1, 0, 102, 0.1);
    text-align: center;
    box-sizing: border-box;
    pointer-events: none;
}

.sobre-contact__float-title {
    margin: 0;
    font-family: 'aspire sc black', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.05rem, 2.1vw, 1.45rem);
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: left;
}

.sobre-contact__float-line {
    display: block;
}

.sobre-contact__float-line--navy {
    color: var(--sobre-contact-navy);
}

.sobre-contact__float-line--muted {
    color: var(--sobre-contact-muted);
}

/* Móvil y tablet: sin posicionamiento absoluto de la tarjeta flotante */
@media (max-width: 1024px) {
    .sobre-contact__float-card {
        position: static;
        left: auto;
        right: auto;
        bottom: auto;
        transform: none;
        z-index: auto;
        width: 100%;
        max-width: min(100%, 20rem);
        margin: clamp(1rem, 3vw, 1.5rem) auto 0;
    }
}

@media (max-width: 900px) {
    .sobre-contact__row {
        grid-template-columns: 1fr;
        gap: clamp(1.25rem, 3vw, 1.75rem);
    }

    .sobre-contact__intro {
        padding-top: 0;
    }

    .sobre-contact__panel-wrap {
        --sobre-contact-panel-pad-x: 8%;
        --sobre-contact-panel-pad-top: 9%;
        --sobre-contact-panel-pad-bottom: 7%;
        padding-bottom: clamp(2rem, 7vw, 3.25rem);
    }

    .sobre-contact__panel {
        min-height: 0;
    }

    .sobre-contact__float-title {
        font-size: clamp(1rem, 2.8vw, 1.3rem);
    }

    .sobre-contact__field--message textarea {
        min-height: 3rem;
        max-height: 4.5rem;
    }

    .sobre-contact {
        padding-bottom: clamp(3.5rem, 10vw, 5.5rem);
    }
}

/* Búsqueda global de productos (molds_product_search.js) */
.search-section .molds-product-search-wrap {
    position: relative;
}

.molds-product-search__results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 4px);
    z-index: 80;
    max-height: min(360px, 50vh);
    overflow-y: auto;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: #fff;
    color: #1f2937;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.molds-product-search__item {
    padding: 0.55rem 1rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.35;
}

.molds-product-search__item:hover,
.molds-product-search__item--active {
    background: rgba(197, 160, 89, 0.12);
}

.molds-product-search__title {
    font-weight: 600;
    font-size: 0.95rem;
}

.molds-product-search__meta {
    font-size: 0.8rem;
    color: #6b7280;
}