:root {
    --primary-color: #c5a059;
    /* Gold/Brass */
    --primary-hover: #b38f4d;
    --dark-bg: #0a0a0a;
    --secondary-bg: #141414;
    --card-bg: #1e1e1e;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container-width: 1200px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    /* Ajuste a altura conforme necessário */
    width: auto;
    display: block;
    /* Como a imagem tem fundo branco e o site é escuro, vamos inverter e ajustar cores */
    /* para que o dourado se sobressaia no fundo preto */
    filter: brightness(1.1) contrast(1.2);
}

header .logo img {
    height: 120px;
}

footer .logo img {
    height: 140px;
    margin-bottom: 20px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

nav ul li a:hover {
    color: var(--primary-color);
}

.btn-small {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--dark-bg) !important;
    border-radius: 5px;
    font-weight: 600 !important;
}

.btn-small:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

.menu-mobile {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
    /* Slight zoom for premium feel */
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    /* Zoom out animation */
    transition: opacity 1.5s ease-in-out, transform 10s linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    z-index: -1;
}

.hero-content {
    max-width: 700px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(197, 160, 89, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 18px 36px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Services */
.services {
    padding: 100px 0;
    background: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 42px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    opacity: 0;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.service-card .icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
}

/* Why Us */
.why-us {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.3);
}

.image-placeholder i {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.image-placeholder span {
    font-size: 20px;
    color: var(--text-muted);
}

.align-left {
    text-align: left;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.benefit-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
}

.benefit-list li i {
    color: var(--primary-color);
    font-size: 22px;
    margin-top: 4px;
}

.benefit-list li strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.benefit-list li div {
    color: var(--text-muted);
    font-size: 16px;
}

/* Stats */
.stats {
    padding: 80px 0;
    background: var(--dark-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    opacity: 0;
}

.stat-item .number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item .label {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* FAQ */
.faq {
    padding: 100px 0;
    background: var(--dark-bg);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--secondary-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 30px 20px;
    color: var(--text-muted);
    display: none;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: var(--secondary-bg);
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 80px 40px;
    border-radius: 24px;
    border: 1px solid rgba(197, 160, 89, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cta-box h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary.large {
    padding: 22px 50px;
    font-size: 18px;
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: var(--dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-about .logo {
    margin-bottom: 25px;
}

.footer-about p {
    color: var(--text-muted);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.05);
}

.whatsapp-float i {
    font-size: 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.animate-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Mobiles */
@media (max-width: 991px) {
    .hero h1 {
        font-size: 48px;
    }

    .why-us-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }

    header .container {
        padding: 0 30px;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        height: 100vh;
        background: var(--secondary-bg);
        z-index: 1001;
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        animation: slideIn 0.3s ease forwards;
    }

    nav.active ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    nav.active ul li a {
        font-size: 18px;
    }

    .menu-mobile {
        display: block;
        position: relative;
        z-index: 1002;
    }

    header .logo img {
        height: 80px;
    }

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

    .cta-box h2 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
    }
}

/* Booking Notifications */
#notification-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    pointer-events: none;
}

.notification {
    background: rgba(30, 30, 30, 0.95);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    color: white;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 320px;
    transform: translateX(-120%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.notification.show {
    transform: translateX(0);
}

.notification .notif-icon {
    width: 40px;
    height: 40px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.notification .notif-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.notification .notif-content strong {
    color: var(--primary-color);
    display: block;
    font-size: 15px;
}

.notification .notif-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
    display: block;
}

@media (max-width: 768px) {
    #notification-container {
        left: 20px;
        bottom: 100px;
        /* Above float whatsapp on mobile */
        width: calc(100% - 40px);
    }

    .notification {
        width: 100%;
    }
}