
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:ital@0;1&display=swap');


* {
    scrollbar-width: medium;
    scrollbar-color: #55060f #0d0102;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #0d0102;
}

::-webkit-scrollbar-thumb {
    background: #3a040b;
    border-radius: 5px;
    border: 2px solid #0d0102;
}

::-webkit-scrollbar-thumb:hover {
    background: #a01220;
}

input:disabled {
    opacity: 1 !important;
    background-color: transparent !important;
}

html {
    overflow-x: hidden;
}

body {
    background-color: white;
    font-family: 'Montserrat', sans-serif; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.vexis-navlogo {
    height: 40px;
    width: auto;
}

.field-error {
    border-color: rgba(255, 100, 100, 0.6) !important;
    background: rgba(255, 50, 50, 0.06) !important;
}

.field-error-msg {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 140, 140, 0.9);
    margin-top: 5px;
    letter-spacing: 0.02em;
}

a {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    padding: 8px 4px;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    font-size: 15px;
}

a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 1px;
    background: rgba(255, 180, 180, 0.8);
    box-shadow: 0 0 8px rgba(255, 180, 180, 0.6);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

a:hover {
    color: #faf8f6;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 180, 180, 0.4);
}



header {
    width: 100vw;
    height: 70px;
    background-color: #800a18;
    box-shadow: 0px 3px 8px rgba(0,0,0,25%);
    display: flex;
    align-items: center;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 1000;
    
}

header.no-shadow {
    box-shadow: none !important;
}

header .container-fluid {
    width: 100%;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}

header .container-fluid a {
    display: flex;
    align-items: center;
}

header .nav-logo img{
    width: 50px;
    height: auto;
}

header .navb-items {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    letter-spacing: 3px;
}

header .item {
    text-align: center;
    margin-inline: 15%;
    font-size: 20px;
    letter-spacing: 1px;
    padding: 5px 0;
    transition: all .1s ease;
    cursor: pointer;
}

header .item:hover {
    color: #000;
}


header .item-button a {
    font-family: 'Montserrat', serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: white;
    background: linear-gradient(110deg, #5a0711 0%, #800a18 50%, #5a0711 100%);
    background-size: 220% 100%;
    background-position: 100% 0;
    padding: 8px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: background-position 0.6s ease, box-shadow 0.4s ease, border-color 0.4s ease, transform 0.2s ease;
}

header .item-button a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.035) 50%, transparent 70%);
    background-size: 220% 100%;
    background-position: 200% 0;
    transition: background-position 0.6s ease;
}

header .item-button a:hover {
    background-position: 0% 0;
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 18px rgba(128, 10, 24, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

header .item-button a:hover::after {
    background-position: -200% 0;
}

header .item-button a:active {
    transform: translateY(0);
    box-shadow: 0 0 8px rgba(128, 10, 24, 0.3);
}


/*modal*/

.modal-dialog {
    margin: 0;
    width: 300px;
}

@media(max-width: 300px){
    .modal-dialog{
        width: 100%;
    }
}

.modal-content {
    border-radius: 0;
    height: 100vh;
    height: 100dvh;
    overscroll-behavior: none;
    overflow-y: auto;
    background-color: #800a18;
    border: none;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 88%;
    margin: 0 auto;
    padding: 32px 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.modal-header img {
    width: 50px;
    height: auto;
}

.btn-custom-close {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.btn-custom-close i {
    color: rgba(255, 180, 180, 0.7);
    font-size: 16px;
    transition: color 0.3s ease;
}

.btn-custom-close:hover i {
    color: #ffffff;
}

.modal-body {
    width: 88%;
    padding: 12px 0 0;
    margin: 0 auto;
    flex: unset;
}

.modal-body .modal-line {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 18px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: background 0.3s ease;
    box-sizing: border-box;
    border-radius: 8px;
}

.modal-line i {
    color: rgba(255, 180, 180, 0.7);
    font-size: 18px;
    width: 30px;
    margin-right: 14px;
    display: flex;
    justify-content: center;
    transition: color 0.3s ease;
}

.modal-line a {
    font-family: 'Montserrat', serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-body .modal-line:hover {
    background: rgba(0, 0, 0, 0.15);
}

.modal-line:hover i,
.modal-line:hover a {
    color: #ffffff;
}

.modal-body .modal-line:last-of-type {
    border-bottom: none;
    margin-bottom: 28px;
}

.navb-button {
    width: 100%;
    height: 46px;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
    background: linear-gradient(110deg, #5a0711 0%, #6e0915 50%, #5a0711 100%);
    background-size: 220% 100%;
    background-position: 100% 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-position 0.6s ease, box-shadow 0.4s ease, transform 0.2s ease;
}

.navb-button::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.035) 50%, transparent 70%);
    background-size: 220% 100%;
    background-position: 200% 0;
    transition: background-position 0.6s ease;
}

.navb-button:hover {
    background-position: 0% 0;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
    color: #ffffff;
    text-decoration: none;
}

.navb-button:hover::after {
    background-position: -200% 0;
}

.modal-body .modal-line:last-of-type {
    border-bottom: none;
    margin-bottom: 40px;
}

.mobile-modal-footer {
    width: 88%;
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto auto 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-modal-footer a i {
    font-size: 20px;
    color: rgba(255, 180, 180, 0.6);
    transition: color 0.3s ease, transform 0.3s ease;
    display: block;
}

.mobile-modal-footer a:hover i {
    color: #ffffff;
    transform: translateY(-2px);
}

.vx-footer-wrap {
    background: #000000;
    padding: 0 24px 40px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}
 
.vx-footer-wrap::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(128, 10, 24, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
 
/* ── Newsletter (fuera del card) ── */
.vx-footer-newsletter {
    max-width: 1100px;
    margin: 0 auto 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
 
.vx-newsletter-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 180, 180, 0.7);
    margin-bottom: 6px;
    display: block;
}
 
.vx-newsletter-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.38);
    margin: 0;
    line-height: 1.6;
}
 
.vx-newsletter-form {
    display: flex;
    gap: 10px;
    align-items: center;
}
 
.vx-newsletter-form input[type="email"] {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 11px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    min-width: 0;
}
 
.vx-newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.22);
}
 
.vx-newsletter-form input[type="email"]:focus {
    border-color: rgba(128, 10, 24, 0.55);
    background: rgba(255, 255, 255, 0.07);
}
 
.vx-newsletter-btn {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    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.2);
    border-radius: 50px;
    padding: 11px 22px;
    white-space: nowrap;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background-position 0.6s ease, box-shadow 0.4s ease, transform 0.2s ease;
}
 
.vx-newsletter-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.035) 50%, transparent 70%);
    background-size: 220% 100%;
    background-position: 200% 0;
    transition: background-position 0.6s ease;
}
 
.vx-newsletter-btn:hover {
    background-position: 0% 0;
    box-shadow: 0 0 18px rgba(128, 10, 24, 0.45);
    transform: translateY(-1px);
}
 
.vx-newsletter-btn:hover::after {
    background-position: -200% 0;
}
 

.vx-footer-card {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(128, 10, 24, 0.55);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 40px 44px 28px;
    position: relative;
    overflow: hidden;
}
 
.vx-footer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 55%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(128, 10, 24, 0.7), transparent);
    pointer-events: none;
}
 
.vx-footer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 55%);
    pointer-events: none;
}
 

.vx-brand-logo {
    height: 52px;
    width: auto;
    display: block;
    margin-bottom: 14px;
}
 
.vx-brand-tagline {
    font-size: 0.75rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.32);
    max-width: 210px;
    margin: 0;
}
 
.vx-brand-tagline strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}
 
/* ── Columna derecha: nav ── */
.vx-nav-columns {
    display: flex;
    gap: 48px;
    justify-content: flex-end;
}
 
.vx-col-title {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
    display: block;
}
 
.vx-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
 
.vx-col-links li { margin-bottom: 10px; }
 
.vx-col-links a {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.32);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}
 
.vx-col-links a:hover { color: rgba(255, 180, 180, 0.85); }

.vx-footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 28px 0 20px;
}

.vx-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
 
.vx-social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
 

.vx-social-links a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
 
.vx-social-links a:hover {
    border-color: rgba(128, 10, 24, 0.65);
    background: rgba(128, 10, 24, 0.15);
    transform: translateY(-2px);
}
 
.vx-social-links a i {
    font-size: 12px;
    color: rgba(255, 180, 180, 0.55);
    transition: color 0.3s ease;
}
 
.vx-social-links a:hover i { color: rgba(255, 180, 180, 1); }

.vx-contact-links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.vx-contact-item {
    height: 32px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 10px;
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.vx-contact-item:hover {
    border-color: rgba(128, 10, 24, 0.65);
    background: rgba(128, 10, 24, 0.15);
    transform: translateY(-2px);
}

.vx-contact-item i {
    font-size: 12px;
    color: rgba(255, 180, 180, 0.55);
    transition: color 0.3s ease;
}

.vx-contact-item span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.32);
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.vx-contact-item:hover i, 
.vx-contact-item:hover span {
    color: rgba(255, 180, 180, 1);
}
 
.vx-bottom-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
 
.vx-copyright {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.04em;
    margin: 0;
}
 
.vx-legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
 

.vx-legal-links a {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}
 
.vx-legal-links a:hover { color: rgba(255, 180, 180, 0.7); }


.vx-success-dialog {
    width: auto !important;
    max-width: 400px !important;
    margin: 1.75rem auto !important; 
}

.vx-success-content {
    height: auto !important; 
    border-radius: 20px !important; 
    overflow-y: visible !important;
}

@media (max-width: 576px) {
    .vx-success-dialog {
        margin: 1rem !important;
    }
}

@media (max-width: 768px) {
    .vx-footer-card      { padding: 32px 24px 24px; }
    .vx-brand-tagline    { max-width: 100%; margin-bottom: 28px; }
    .vx-nav-columns      { justify-content: flex-start; gap: 32px; }
    .vx-footer-bottom    { flex-direction: column; align-items: flex-start; }
    .vx-bottom-right     { flex-direction: column; align-items: flex-start; gap: 10px; }
    .vx-newsletter-form  { flex-direction: column; align-items: stretch; }
    .vx-newsletter-btn   { text-align: center; }
}

@media (max-width: 480px) {
    .vx-footer-wrap { padding: 0 16px 32px; }
}


