.vx-contact-wrap {
    min-height: 100vh;
    background: linear-gradient(180deg, 
        #faf8f6 0%, 
        #faf8f6 35%, 
        #ebdada 45%, 
        #cc9097 55%,
        #cc6975 65%,
        #9e2a39 75%, 
        #800a18 85%, 
        #2a0508 95%, 
        #000000 100%
    );
}

.vx-about-header {
    background: transparent !important;
}

.vx-contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px;
}

.vx-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vx-contact-card {
    background: linear-gradient(110deg, #5a0711 0%, #800a18 50%, #5a0711 100%);
    background-size: 220% 100%;
    background-position: 100% 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    transition: background-position 0.8s ease, box-shadow 0.9s ease, border-color 0.4s ease, transform 0.2s ease;
}

.vx-contact-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
    background-size: 220% 100%;
    background-position: 200% 0;
    transition: background-position 0.6s ease;
    pointer-events: none;
}

.vx-contact-card:hover {
    background-position: 0% 0;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(128, 10, 24, 0.3), 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vx-contact-card:hover::after {
    background-position: -200% 0;
}

.vx-contact-card-inner {
    padding: 24px 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.vx-contact-icon {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    width: 50px;
    text-align: center;
    flex-shrink: 0;
}

.vx-contact-body {
    flex: 1;
}

.vx-contact-network {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 2px;
    display: block;
}

.vx-contact-address {
    font-size: 11px;
    color: rgba(255, 180, 180, 0.8);
    font-weight: 500;
    margin-bottom: 4px;
    display: block;
}

.vx-contact-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}

.vx-contact-btn {
    flex-shrink: 0;
    align-self: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 6px 10px;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.vx-contact-btn i {
    transition: transform 0.3s ease;
}

.vx-contact-card:hover .vx-contact-btn {
    color: rgba(255, 255, 255, 0.85);
}

.vx-contact-card:hover .vx-contact-btn i {
    transform: scale(1.2);
}

.vx-contact-btn:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 16px rgba(255, 180, 180, 0.4);
}

.vx-contact-btn:hover i {
    color: rgba(255, 180, 180, 1);
    text-shadow: 0 0 12px rgba(255, 180, 180, 0.8);
}

.vx-contact-btn:active {
    transform: translateX(2px) scale(0.95);
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

.vx-contact-form-section {
    padding: 100px 20px 120px;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.vx-contact-form-section .cotizar-title {
    color: #2a0508; 
}

.vx-contact-form-section .cotizar-eyebrow {
    color: rgba(128, 10, 24, 0.75);
}

.vx-contact-form-section .cotizar-subtitle {
    color: #faf8f6;
}

.vx-mobile-link {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: inherit;
}


.vx-contact-form-section::before {
    content: '';
    position: absolute;
    top: 50px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, transparent 70%);
    pointer-events: none;
}

.cotizar-header-center {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cotizar-header-center .cotizar-subtitle {
    text-align: center;
    margin-top: 10px;
}

.cotizar-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .vx-contact-form-section {
        padding: 80px 16px 80px;
    }
    .vx-contact-form-inner {
        padding: 40px 24px;
    }

    .vx-mobile-link {
        pointer-events: auto;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08); /* Fondo de cristal sutil */
        border: 1px solid rgba(255, 255, 255, 0.25);
        color: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, background 0.3s ease;
        /* Llamamos a la animación de latido */
        animation: vx-pulse-glow 2s infinite;
    }

    .vx-mobile-link i {
        font-size: 1.6rem;
    }

    .vx-mobile-link:active {
        transform: scale(0.9);
        background: rgba(255, 255, 255, 0.15);
    }

    .vx-contact-form-section .cotizar-title {
        color: #ffffff; 
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); 
    }

    .vx-contact-form-section .cotizar-eyebrow {
        color: rgba(255, 180, 180, 0.9); 
    }

    .vx-contact-form-section .cotizar-subtitle {
        color: rgba(255, 255, 255, 0.75); 
    }
}

@media (max-width: 600px) {
    .vx-contact-card {
        border-radius: 40px; 
    }

    .vx-contact-card-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px 32px; 
        gap: 16px; 
    }

    .vx-contact-icon {
        width: auto; 
        margin-bottom: 8px;
    }


    .vx-contact-network {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .vx-contact-desc {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.6;
        padding: 0 10px; 
    }
}


@keyframes vx-pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 180, 180, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 180, 180, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 180, 180, 0);
    }
}


