/* CONFIGURAÇÕES GLOBAIS */
:root {
    --gold: #FFBF00;    /* Amarelo Chopp vibrante */
    --gold-muted: #d4af37; /* Dourado clássico para detalhes */
    --dark: #121212;
    --dark-bg: #0f0f0f;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { 
    width: 90%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

/* NAVBAR */
.navbar {
    background: rgba(15, 15, 15, 0.95);
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0; 
    width: 100%; 
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 191, 0, 0.2);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    margin-right: auto; /* Garante que ele "empurre" o resto para a direita se necessário */
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.logo span {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.nav-menu {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    position: relative;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--gold);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* BOTÃO HAMBÚRGUER REESTILIZADO */
.menu-btn {
    display: none; /* Escondido no Desktop */
    background: transparent;
    border: 1px solid rgba(255, 191, 0, 0.4);
    color: var(--gold);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100;
    padding: 5px 12px;
    border-radius: 8px;
    transition: var(--transition);
    outline: none;
}

.menu-btn:hover {
    background: rgba(255, 191, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 191, 0, 0.3);
}

/* HERO & GALERIA */
.hero {
    text-align: center;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, transparent 100%);
    padding-top: 10px;
}

.gallery-section {
    padding: 60px 20px;
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    text-align: center;
    margin: 20px 0 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5), 0 4px 8px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6)) drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}


@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.gallery-subtitle {
    font-size: 1.1rem;
    color: rgba(212, 175, 55, 0.8);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 10px;
    text-align: center;
}

/* CARDS PREMIUM */
.premium-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #333;
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.gallery-image-wrapper {
    height: 300px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.premium-card:hover .gallery-image-wrapper img {
    transform: scale(1.1);
}

.gallery-content {
    padding: 25px;
    text-align: center;
}

/* Amenities Section */
.amenities-section {
    padding: 100px 20px;
    background: rgba(10, 10, 10, 0.7);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    backdrop-filter: blur(10px);
}

.amenities-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.amenities-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.amenities-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.amenities-subtitle {
    font-size: 1rem;
    color: rgba(212, 175, 55, 0.7);
    font-weight: 300;
    letter-spacing: 1px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.amenity-card {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 175, 55, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.4) inset,
        0 0 80px rgba(212, 175, 55, 0.3),
        0 0 120px rgba(212, 175, 55, 0.1);
}

.amenity-icon {
    width: 64px;
    height: 64px;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.amenity-name {
    color: rgba(212, 175, 55, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-name {
    color: #d4af37;
    font-weight: 600;
}

/* Modal de Informações */
.amenity-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.amenity-modal.active {
    display: flex;
}

.amenity-modal-content {
    background: rgba(15, 15, 15, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(212, 175, 55, 0.2) inset,
        0 0 100px rgba(212, 175, 55, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.amenity-modal-close:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
    transform: rotate(90deg);
}

.amenity-modal-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.amenity-modal-content p {
    color: rgba(212, 175, 55, 0.8);
    line-height: 1.8;
    font-size: 1.05rem;
}

.amenity-modal-content ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.amenity-modal-content li {
    color: rgba(212, 175, 55, 0.8);
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.amenity-modal-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* FORMULÁRIOS & BOTÕES */
.form-control {
    width: 100%;
    padding: 12px;
    background: #0f0f0f;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
}

.btn-primary, .btn-submit {
    background: var(--gold);
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-wpp {
    background: #25D366;
    color: white;
}

/* Footer */



.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: #d4af37;
    opacity: 0.7;
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #121212;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        z-index: 1050;
        border-left: 2px solid var(--gold);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .nav-menu a {
        font-size: 1.4rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.gallery-item-desc {
    font-size: 0.95rem;
    color: rgba(212, 175, 55, 0.7);
    line-height: 1.6;
    margin-top: 8px;
    font-weight: 300;
}

.gallery-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent);
    margin-top: 20px;
    transition: width 0.4s ease;
}

.premium-card:hover .gallery-divider {
    width: 100%;
}

.gallery-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.premium-card:hover .gallery-glow {
    width: 150%;
    height: 150%;
}
