/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d4af37; /* Dourado Premium */
    --dark: #0f0f0f;
    --dark-light: #1a1a1a;
    --white: #ffffff;
    --gray: #888;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
}

span { color: var(--primary); }

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(0,0,0,0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.btn-adm {
    border: 1px solid var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
}

/* CARROSSEL / HERO */
.swiper {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    margin-top: 30px;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
    background: var(--white);
}

/* CATEGORIAS */
.categories {
    padding: 100px 8%;
    background: var(--dark-light);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.grid-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.cat-card {
    background: var(--dark);
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.05);
}

.cat-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.cat-card:hover {
    background: var(--primary);
    transform: translateY(-10px);
}

.cat-card:hover i, .cat-card:hover h3, .cat-card:hover p {
    color: var(--dark);
}

/* ABOUT SECTION */
.about {
    padding: 100px 8%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-img img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    border: 3px solid var(--primary);
}

/* Efeito de Card Ativo */
.cat-card.active {
    background: var(--primary);
    transform: translateY(-5px);
}
.cat-card.active i, .cat-card.active h3, .cat-card.active p {
    color: var(--dark);
}

/* BOX DE DETALHES */
.details-box {
    display: none; /* Escondido por padrão */
    width: 100%;
    background: var(--dark);
    margin-top: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    animation: slideDown 0.5s ease;
}

.details-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 50px;
}

.details-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.details-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.details-text ul {
    list-style: none;
    margin-bottom: 30px;
}

.details-text ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-text ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

/* Galeria dentro do detalhe */
.details-gallery {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.img-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

.img-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.img-sub img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 992px) {
    .details-content { grid-template-columns: 1fr; padding: 20px; }
}



/* FOOTER */
footer {
    background: #050505;
    padding: 80px 8% 20px;
    border-top: 2px solid var(--primary);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-box h3 {
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    color: var(--gray);
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .about-container { flex-direction: column; }
    .hero-content h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Simulação de menu mobile */
}