/* TEMA PADRÃO: LUXURY DESIGN
   -------------------------------------------------------
   Este arquivo controla todas as cores, fontes e espaçamentos.
   Use a busca (Ctrl+F) para encontrar as sessões.
*/

/* --- 1. Variáveis e Cores Globais --- */
:root {
    --gold: #B08D55;          /* Dourado Fosco (Matte Gold) */
    --gold-hover: #8f7244;    /* Dourado Escuro (Hover) */
    --black: #000000;
    --dark-bg: #0b0b0b;       /* Fundo quase preto para rodapé */
    --pastel-bg: #f9f8f4;     /* Fundo Pastel Creme para FAQ */
    --white: #ffffff;
    --text-body: #555555;
    --nav-height: 90px;       /* Altura base da navbar */
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-body);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    /* Garante que o conteúdo comece APÓS a navbar fixa */
    padding-top: var(--nav-height); 
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--black);
    font-weight: 700;
}

/* --- 2. Navbar (Menu Superior) --- */
.navbar {
    background-color: rgba(0, 0, 0, 0.98) !important;
    padding: 0;
    min-height: var(--nav-height); 
    border-bottom: 1px solid #222;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.navbar-brand img {
    height: 50px; 
}

.nav-link {
    color: var(--white) !important;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: color 0.3s;
    padding: 0 15px !important;
}

.nav-link:hover {
    color: var(--gold) !important;
}

/* Ajuste específico para o menu aberto no celular */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.98);
        padding: 20px;
        margin-top: 10px;
        border-top: 1px solid #333;
    }
    .nav-link {
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
}

/* --- 3. Hero Section (Banner Principal) --- */
.hero {
    /* Altura da tela menos o menu */
    height: calc(100vh - var(--nav-height));
    background-color: #000;
    position: relative;
    overflow: hidden;
    margin-top: 0; 
}

.hero img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.carousel-item {
    height: calc(100vh - var(--nav-height));
}

.carousel-caption {
    bottom: 30%;
    z-index: 10;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    letter-spacing: 1px;
}

/* --- 4. Cards de Serviços e Blog --- */
.card-luxury {
    background-color: var(--white);
    border: 1px solid #f2f2f2;
    border-bottom: 3px solid transparent;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 3rem 2rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.card-luxury i {
    color: var(--gold);
    margin-bottom: 25px;
    transition: transform 0.4s;
    filter: drop-shadow(0 2px 2px rgba(176, 141, 85, 0.2)); 
}

.card-luxury h5 {
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-luxury:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-bottom-color: var(--gold);
}

.card-luxury:hover i {
    transform: scale(1.2);
}

/* --- 5. Portfolio (Grid Mosaico) --- */
.grid {
    column-count: 3;
    column-gap: 20px;
}

.grid-item {
    break-inside: avoid;
    margin-bottom: 20px;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #eee;
}

.grid-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease, opacity 0.3s;
}

.grid-item:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

/* Overlay do Coração/Texto na foto */
.portfolio-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
    background: rgba(0,0,0,0.3);
}
.grid-item:hover .portfolio-overlay { opacity: 1; }

/* --- 6. Pacotes (Preços) --- */
.pricing-card {
    background: var(--white);
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    position: relative;
}

.pricing-card.featured {
    border: 1px solid var(--gold);
    box-shadow: 0 10px 30px rgba(176, 141, 85, 0.15);
    transform: scale(1.02);
    z-index: 2;
}

.pricing-header {
    padding: 2.5rem 1rem;
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #f9f9f9;
}

.pricing-header h4 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
}

.price {
    font-size: 2.2rem;
    color: var(--black);
    font-family: 'Playfair Display', serif;
}

.pricing-body {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    flex: 1;
}

.pricing-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
}

.pricing-body ul li i {
    color: var(--gold);
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

/* --- 7. Botões --- */
.btn-package-outline, .btn-luxury-gold {
    width: 100%;
    padding: 14px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    display: inline-block;
    transition: all 0.3s;
    border-radius: 0;
}

.btn-package-outline {
    border: 1px solid #333;
    color: #333;
    background: transparent;
}

.btn-package-outline:hover {
    background: #333;
    color: var(--white);
}

.btn-luxury-gold {
    background: var(--gold);
    color: var(--white);
    border: 1px solid var(--gold);
}

.btn-luxury-gold:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
}

/* --- 8. FAQ --- */
#faq {
    background-color: var(--pastel-bg);
    padding: 80px 0;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.accordion-button {
    background-color: var(--white);
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    border-radius: 6px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    border: 1px solid transparent;
    transition: all 0.3s;
}

.accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-color: rgba(176, 141, 85, 0.2);
}

.accordion-button:focus { box-shadow: none; }

.accordion-body {
    background-color: var(--white);
    border-radius: 6px;
    margin-top: 5px;
    padding: 1.5rem;
    color: #666;
    border: 1px solid #f0f0f0;
}

/* --- 9. Rodapé --- */
footer {
    background-color: var(--dark-bg);
    color: #888;
    padding-top: 90px;
    padding-bottom: 40px;
    font-size: 0.9rem;
    position: relative;
    border-top: 4px solid var(--gold);
}

footer a {
    text-decoration: none;
    color: #999;
    transition: 0.3s;
}

footer a:hover { color: var(--gold); }

/* Redes Sociais Footer */
.social-links-footer { display: flex; gap: 10px; justify-content: center; margin-bottom: 20px; }

.social-links-footer a {
    display: flex; justify-content: center; align-items: center;
    width: 40px; height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    color: #ccc;
    transition: all 0.3s;
}

.social-links-footer a:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

/* --- 10. Utilitários e Botão Whats --- */
.line { width: 50px; height: 3px; background-color: var(--gold); margin: 0 auto; }
.text-gold { color: var(--gold) !important; }

.whatsapp-float {
    position: fixed;
    width: 60px; height: 60px;
    bottom: 30px; right: 30px;
    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;
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #fff;
}

/* --- 11. Responsividade --- */
@media (max-width: 992px) {
    .grid { column-count: 2; }
    .carousel-caption h1 { font-size: 2.5rem; }
}
@media (max-width: 576px) {
    .grid { column-count: 1; }
    .pricing-card.featured { transform: none; margin: 15px 0; }
    /* Menu não fixo no mobile pequeno se preferir, ou mantenha fixo */
    .hero { height: 60vh; } 
}