body {
    font-family: 'Outfit', sans-serif;
    color: #1A1A1A;
    background-color: #FFFFFF;
}

:root {
    --primary-dark: #121212;
    --accent-gold: #C5A059;
    --notification-red: #ff3b30;
    --header-height: 80px;
}

h1,
h2,
h3,
.brand-font {
    font-family: 'Cinzel', serif;
}

.gold-gradient {
    background: linear-gradient(135deg, #C5A059 0%, #E2C285 50%, #C5A059 100%);
}

.gold-text {
    color: #C5A059;
}

.bg-dark-gray {
    background-color: #1A1A1A;
}

.vivid-img {
    filter: saturate(1.3) contrast(1.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.vivid-img:hover {
    filter: saturate(1.5) contrast(1.15);
    transform: scale(1.02);
}

.hero-pattern {
    background-image: linear-gradient(rgba(26, 26, 26, 0.94), rgba(26, 26, 26, 0.97)), url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: float 5s ease-in-out infinite;
}

/* Molduras curvas customizadas */
.hero-curved-main {
    border-radius: 100px 0px 100px 0px;
}

.hero-curved-inset {
    border-radius: 0px 60px 0px 60px;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}

/* Smart Header Classes */
header {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.header-hidden {
    transform: translateY(-100%);
}

.header-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Ajuste de container fluido */
.content-container {
    width: 100%;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1.5rem, 5vw, 4rem);
    padding-right: clamp(1.5rem, 5vw, 4rem);
}

@media (min-width: 768px) {
    .content-container {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

/* FAQ Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Header Intelligent Scroll */
header {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease, border-color 0.3s ease;
}

header.header-hidden {
    transform: translateY(-100%);
}

/* Premium Drawer Mobile menu */
#mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 100;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

#mobile-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    z-index: 90;
    transition: all 0.4s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

#mobile-drawer .nav-link {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #1A1A1A;
    padding: 15px 0;
    border-bottom: 1px solid #f3f4f6;
    opacity: 0.7;
    transition: all 0.3s ease;
}

#mobile-drawer .nav-link:hover {
    opacity: 1;
    padding-left: 10px;
    color: var(--accent-gold);
}

body.no-scroll {
    overflow: hidden;
}

/* Review Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.review-marquee-content {
    display: flex;
    gap: 2rem;
    animation: marquee 40s linear infinite;
    padding: 1rem 0;
}

.review-marquee-content:hover {
    animation-play-state: paused;
}

/* Footer Divider */
.footer-divider-strong {
    border-top: 2px solid #E5E7EB;
    /* Cor mais forte (gray-200) e 2px */
}

.text-wine {
    color: #6B001A;
}

/* WhatsApp Floating Button standard AG5 */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

/* Pulsing Animation */
.wa-pulse {
    animation: pulse-wa 2s infinite;
    border-radius: 50%;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Notification Badge */
.wa-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--notification-red);
    color: white;
    font-size: 11px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    animation: shake 2s infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: rotate(-10deg);
    }

    20%,
    40%,
    60%,
    80% {
        transform: rotate(10deg);
    }
}

/* Footer AG5 Standard (Dark) - REMOVED */

.padding-touch {
    padding: 8px 0;
    display: inline-block;
}