:root {
    /* Base do site — azul-marinho / índigo profundo */
    --emerald-dark: #0d0b3c;
    --emerald-medium: #1a174f;
    --white-text: #f8f9fa;
    --gold-light: #fcf6ba;
    --gold-medium: #bf953f;
    --gold-dark: #aa771c;
}

/* Base & Background Texture (Ondulações Finas e Parallax) */
html, body {
    overflow-x: hidden;
}
body {
    background-color: var(--emerald-dark);
    background-image: 
        radial-gradient(circle at center, rgba(35, 30, 110, 0.45) 0%, rgba(13, 11, 60, 0.95) 100%),
        repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 2px, transparent 2px, transparent 4px);
    background-attachment: fixed;
    background-size: cover;
    color: var(--white-text);
    font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, .font-serif {
    font-family: 'Playfair Display', serif;
}

/* Gold Metallic Text Effect */
.text-gold {
    background: linear-gradient(to right, var(--gold-medium), var(--gold-light), var(--gold-medium), var(--gold-light), var(--gold-dark));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 10px rgba(0,0,0,0.5);
    animation: shine 5s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* Custom Scrollbar for the page */
::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--emerald-dark); 
}
::-webkit-scrollbar-thumb {
    background: var(--gold-medium); 
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light); 
}

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    padding: 1.5rem 0;
    background: transparent;
}
.navbar.scrolled,
.navbar.menu-open {
    background: rgba(13, 11, 60, 0.96);
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(191, 149, 63, 0.2);
}
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}
.nav-link {
    color: var(--gold-light) !important;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    background-color: var(--gold-light);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after {
    width: 100%;
}
.navbar-toggler {
    border-color: var(--gold-medium);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(252, 246, 186, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* Estilo da Navbar para telas menores (Mobile/Tablet) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: transparent;
        padding-top: 1rem;
        margin-top: 0;
        border: none;
        box-shadow: none;
    }
    .nav-link {
        text-align: right;
        padding: 12px 0 !important;
        border-bottom: none;
        margin: 0;
    }
    .nav-link::after {
        display: none; /* Remove a linha de hover no mobile para não bugar o layout */
    }
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(2px);
    transform: scale(1.05);
    display: block;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(13, 11, 60, 0.55), rgba(13, 11, 60, 0.92));
    z-index: -1;
}
.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 2px;
}
.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.85);
    font-weight: 300;
}

/* Buttons */
.btn-gold {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid var(--gold-medium);
    padding: 12px 35px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(to right, var(--gold-medium), var(--gold-light));
    transition: all 0.4s ease;
    z-index: -1;
}
.btn-gold:hover::before {
    left: 0;
}
.btn-gold:hover {
    color: var(--emerald-dark);
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.4);
}

/* Section Spacing */
.section-padding {
    padding: 100px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 60px;
}
.section-title h2 {
    font-size: 2.5rem;
    display: inline-block;
    padding-bottom: 15px;
    position: relative;
}
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold-medium);
}

/* Empresa Section */
.empresa-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}
.empresa-image-wrapper {
    padding: 20px;
    border: 2px solid var(--gold-medium);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.empresa-image-wrapper:hover {
    border-color: var(--gold-light);
    box-shadow: 0 0 15px rgba(191, 149, 63, 0.25);
}
.empresa-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.empresa-image-logo {
    box-sizing: border-box;
    padding: clamp(1rem, 3vw, 2rem);
}

/* Catalog Sections (Horizontal Scroll) */
.catalog-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-medium) rgba(0,0,0,0.2);
    gap: 30px;
}
.catalog-scroll::-webkit-scrollbar-track { background: rgba(0,0,0,0.2); border-radius: 10px; }
.scroll-indicator {
    text-align: right;
    color: var(--gold-medium);
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.8;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

/* Product Cards */
.product-card {
    flex: 0 0 auto;
    width: 300px;
    background: rgba(26, 23, 79, 0.45);
    border: 1px solid rgba(191, 149, 63, 0.3);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}
.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-light);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4), 0 0 15px rgba(191, 149, 63, 0.2);
}
.product-img-wrapper {
    height: 400px;
    overflow: hidden;
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.product-card:hover .product-img {
    transform: scale(1.08);
}
.product-card--image-only .product-img-wrapper {
    height: 440px;
}
.product-info {
    padding: 20px;
    text-align: center;
    border-top: 1px solid rgba(191, 149, 63, 0.1);
}
.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    margin-bottom: 5px;
}
.product-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #06052a;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(191, 149, 63, 0.2);
}
.footer-logo {
    font-size: 2rem;
    margin-bottom: 20px;
    display: inline-block;
}
.footer-info {
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.95rem;
}
.footer-info i {
    color: var(--gold-medium);
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Map Container */
.map-wrapper {
    border: 1px solid rgba(191, 149, 63, 0.4);
    border-radius: 4px;
    overflow: hidden;
    opacity: 0.85;
    transition: all 0.4s ease;
}
.map-wrapper:hover {
    opacity: 1;
    border-color: var(--gold-light);
    box-shadow: 0 0 15px rgba(191, 149, 63, 0.2);
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border: 1px solid var(--gold-medium);
    color: var(--gold-medium);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icons a:hover {
    background: var(--gold-medium);
    color: var(--emerald-dark);
    box-shadow: 0 0 10px rgba(191, 149, 63, 0.5);
}
.social-icons .btn-whatsapp-footer {
    width: auto;
    min-height: 42px;
    height: auto;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    background: #25d366;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.02em;
    gap: 10px;
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.35);
}
.social-icons .btn-whatsapp-footer i {
    font-size: 1.35rem;
}
.social-icons .btn-whatsapp-footer:hover {
    background: #20bd5a;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
}
.social-icons .btn-whatsapp-footer:focus-visible {
    outline: 2px solid #25d366;
    outline-offset: 3px;
}
.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
