@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;600;700&family=Playfair+Display:ital,wght@0,400;1,400&display=swap');

:root {
    --navy: #002D4A;
    --gold: #c4993a;
    --gold-light: #d8ac4e;
    --beige: #e2d4cb;
    --beige-light: #f4eae4;
    --off-white: #F4F1EE;
    --black: #000000;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--off-white);
    color: var(--navy);
    overflow-x: hidden;
}

.brightness-black {
    filter: brightness(0);
}

.brightness-white {
    filter: brightness(0) invert(1);
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.03em;
}

.font-weight-700 {
    font-weight: 700;
}

.btn-gold {
    background-color: var(--gold);
    color: black;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18); */
}

.btn-gold:hover {
    background-color: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22); 
}

.gradient-hero {
    background: linear-gradient(180deg, #001F33 0%, #002D4A 100%);
}

.hero-premium {
    background: linear-gradient(180deg, #000000 0%, #000000 75%, #ffffff 100%)
}

.hero-badge {
    background-color: #f3eae3;
    color: #003658;
    font-size: 11px;
    letter-spacing: 0.28em;
    font-weight: 700;
    line-height: 1;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5vw, 48px);
    font-weight: 300;
    letter-spacing: 0.01em;
    max-width: 980px;
    margin: 0 auto;
}

.hero-subtitle-main {
    font-size: 13px;
    letter-spacing: 0.22em;
    line-height: 1.2;
}

.hero-subtitle-secondary {
    font-size: 13px;
    letter-spacing: 0.18em;
    line-height: 1.2;
}

#brand-list {
    opacity: 0.95;
}

.brand-link {
    position: relative;
    display: inline-block;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.brand-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    opacity: 1;
}

.brand-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: width 0.35s ease;
}

.brand-link:hover::after {
    width: 100%;
}

.input-field {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: var(--gold);
    background: white;
    outline: none;
}

.feature-outlet-title {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 0.005em;
}

.feature-outlet-subtitle {
    letter-spacing: 0.08em;
    line-height: 1.35;
}

.feature-compra-title {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 0.005em;
}

.feature-compra-subtitle {
    letter-spacing: 0.08em;
    line-height: 1.35;
}

.feature-preco-title {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 0.005em;
}

.feature-preco-subtitle {
    letter-spacing: 0.04em;
    line-height: 1.45;
}

#playVideo > div {
    animation: playPulse 2.8s infinite;
}

@keyframes playPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
    100% {
        transform: scale(1);
    }
}

.video-frame {
    background: #000;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
    border-radius: 20px;
    overflow: hidden;
}

.feature-consignado-title {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.feature-consignado-subtitle {
    letter-spacing: 0.14em;
}

/*Custom Form */
.contact-title {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    letter-spacing: 0.005em;
}

.contact-form-card {
    backdrop-filter: blur(3px);
}

.contact-input {
    background: #f3ece5;
    border: 1px solid rgb(243, 236, 229);
    border-radius: 999px;
    color: var(--black);
    font-weight: 600;
    outline: none;
    transition: all 0.25s ease;
}

.contact-input:focus {
    border-color: rgba(145, 117, 34, 0.6);
    box-shadow: 0 0 0 3px rgba(145, 117, 34, 0.08);
    background: #f7f2ed;
}

textarea.contact-input {
    border-radius: 22px;
}

.contact-input::placeholder {
    color: var(--black);
    opacity: 1;
}

.contact-input:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

.contact-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}

.contact-select::-ms-expand {
    display: none;
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--black);
    font-size: 12px;
    line-height: 1;
    opacity: 0.95;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 10px; }

.parallax-bg {
    will-change: transform;
}