:root {
    --cor-verde-marca: #2A4032;
    --cor-dourado: #D4AF37;
    --cor-dourado-hover: #b5952f;
    --cor-fundo: #FAFAF8;
    --cor-texto: #333333;
    --fonte-titulos: 'Playfair Display', serif;
    --fonte-textos: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-textos);
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--fonte-titulos);
    font-weight: 400;
    color: var(--cor-verde-marca);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#colecao,
#sobre {
    scroll-margin-top: 110px;
}

.btn-primary,
.btn-secondary,
.btn-nav {
    display: inline-block;
    padding: 15px 35px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--cor-verde-marca);
    color: #fff;
    border: 1px solid var(--cor-verde-marca);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--cor-verde-marca);
}

.btn-secondary {
    background-color: transparent;
    color: var(--cor-verde-marca);
    border: 1px solid var(--cor-verde-marca);
}

.btn-secondary:hover {
    background-color: var(--cor-verde-marca);
    color: #fff;
}

.navbar {
    padding: 20px 0;
    background-color: var(--cor-fundo);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo img {
    height: 50px;
}

.navbar nav a {
    text-decoration: none;
    color: var(--cor-texto);
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: var(--cor-dourado);
}

.navbar .btn-nav {
    padding: 10px 20px;
    border: 1px solid var(--cor-dourado);
    color: var(--cor-dourado);
}

.navbar .btn-nav:hover {
    background-color: var(--cor-dourado);
    color: #fff;
}

.floating-menu {
    display: none;
}

.hero {
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.hero-image {
    width: 50%;
    height: 80vh;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    width: 50%;
    padding: 60px;
    background-color: var(--cor-fundo);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

.video-section {
    padding: 100px 0;
    background-color: var(--cor-verde-marca);
    text-align: center;
}

.video-section .section-title {
    color: var(--cor-dourado);
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 5px solid var(--cor-dourado);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.text-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.text-item h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.text-item p {
    margin-bottom: 30px;
    color: #666;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 64, 50, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay span {
    color: #fff;
    font-family: var(--fonte-titulos);
    font-size: 1.5rem;
    font-style: italic;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .overlay span {
    transform: translateY(0);
}

footer {
    background-color: #1a261e;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
}

.site-footer {
    background:
        linear-gradient(180deg, #23362b 0%, #1a261e 100%);
    color: #fff;
    padding: 54px 0 28px;
    text-align: left;
}

.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.7fr));
    gap: 28px;
    align-items: start;
}

.site-footer-brand img {
    width: 170px;
    max-width: 100%;
    margin-bottom: 18px;
    border-radius: 10px;
}

.site-footer-brand p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.78);
}

.site-footer-title {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--cor-dourado);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer-links {
    display: grid;
    gap: 10px;
}

.site-footer-links a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer-links a:hover {
    color: var(--cor-dourado);
    transform: translateX(2px);
}

.site-footer-note {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
}

.site-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
}

.site-footer-bottom a {
    color: var(--cor-dourado);
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-image,
    .hero-content {
        width: 100%;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .navbar nav {
        display: none;
    }

    .floating-menu {
        position: fixed;
        right: 18px;
        bottom: 18px;
        z-index: 1200;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 14px;
    }

    .floating-menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        border: 1px solid rgba(212, 175, 55, 0.45);
        border-radius: 999px;
        background: linear-gradient(135deg, var(--cor-verde-marca), #1a261e);
        color: #fff;
        box-shadow: 0 18px 35px rgba(26, 38, 30, 0.28);
        cursor: pointer;
    }

    .floating-menu-label {
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .floating-menu-icon {
        display: grid;
        gap: 4px;
    }

    .floating-menu-icon span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background-color: #fff;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .floating-menu-panel {
        width: min(280px, calc(100vw - 36px));
        padding: 14px;
        border: 1px solid rgba(42, 64, 50, 0.08);
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(12px);
        box-shadow: 0 22px 45px rgba(26, 38, 30, 0.18);
        opacity: 0;
        transform: translateY(14px) scale(0.98);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .floating-menu-panel a {
        display: block;
        padding: 14px 16px;
        border-radius: 14px;
        color: var(--cor-verde-marca);
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 0.8rem;
        background: #f6f3eb;
        transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    }

    .floating-menu-panel a + a {
        margin-top: 10px;
    }

    .floating-menu-panel a:hover {
        background-color: #ece4ca;
        transform: translateX(-2px);
    }

    .floating-menu-panel .btn-nav {
        width: 100%;
        padding: 14px 16px;
        text-align: center;
        border: 1px solid var(--cor-dourado);
        background: var(--cor-verde-marca);
        color: #fff;
    }

    .floating-menu.is-open .floating-menu-panel {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .floating-menu.is-open .floating-menu-icon span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .floating-menu.is-open .floating-menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .floating-menu.is-open .floating-menu-icon span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .site-footer-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 44px 0 24px;
    }
}
