/* VARIÁVEIS DE DESIGN */
:root {
    --gold: #c5a059;
    --gold-dark: #a6813b;
    --dark-blue: #0b1a31;
    --soft-beige: #fdfaf4;
    --white: #ffffff;
    --text-color: #333333;
}

/* GERAL */
body {
    font-family: "Montserrat", sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.cinzel {
    font-family: "Cinzel", serif;
}

.section-padding {
    padding: 100px 0;
}

.bg-soft-beige {
    background-color: var(--soft-beige);
}

.bg-dark-blue {
    background-color: var(--dark-blue);
}

.text-gold {
    color: var(--gold);
}

/* NAVBAR */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: var(--white);
}

.brand-text {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-blue);
    letter-spacing: 2px;
}

.nav-link {
    font-weight: 600;
    color: var(--dark-blue);
    text-transform: uppercase;
    font-size: 0.85rem;
    margin: 0 10px;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--gold);
}

/* BOTÕES */
.btn-gold {
    background-color: var(--gold);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4);
}

/* HERO */
.hero {
    height: 90vh;
    background: url("https://images.unsplash.com/photo-1574044536225-866417765101?auto=format&fit=crop&q=80&w=1920")
        no-repeat center center/cover;
    position: relative;
    padding-top: 80px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(11, 26, 49, 0.7), rgba(11, 26, 49, 0.4)); */
    background: #0b1a31;
    background: linear-gradient(
        90deg,
        rgba(11, 26, 49, 1) 0%,
        rgba(11, 26, 49, 1) 54%,
        rgba(18, 44, 119, 1) 81%,
        rgba(25, 59, 181, 1) 100%
    );
}

/* SOBRE */
.decoration-box {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    top: 20px;
    left: -20px;
    z-index: -1;
}

/* PRODUTOS */
.product-card {
    transition: all 0.4s ease;
    overflow: hidden;
    border-radius: 15px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.product-img-container {
    height: 300px;
    overflow: hidden;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-container img {
    transform: scale(1.1);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

/* BENEFÍCIOS */
.benefit-icon {
    font-size: 3rem;
    color: var(--gold);
}

/* CTA SECTION */
.cta-section {
    padding: 120px 0;
    background:
        linear-gradient(rgba(197, 160, 89, 0.9), rgba(166, 129, 59, 0.9)),
        url("https://images.unsplash.com/photo-1544465544-1b71aee9dfa3?auto=format&fit=crop&q=80&w=1920");
    background-attachment: fixed;
    background-size: cover;
}

/* CAROUSEL */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .decoration-box {
        display: none;
    }
}
