/* Importação de Fonte */
body {
    font-family: 'Montserrat', sans-serif;
    color: #495057; /* Texto base cinza escuro */
    background-color: #0d0d0d; /* Fundo principal escuro */
}

h1, h2, h3, h4, .navbar-brand {
    font-weight: 700;
}

/* Cores e Estilos Gerais */
.text-warning {
    color: #ffc107 !important; /* Amarelo/Dourado de Destaque */
}
.bg-light {
    background-color: #1a1a1a !important; /* Seção clara, mas escura para o tema luxo */
    color: #ffffff;
}
.bg-dark {
    background-color: #0d0d0d !important;
}
.bg-dark-75 {
    background-color: rgba(13, 13, 13, 0.75) !important;
}
.text-muted {
    color: #adb5bd !important;
}
.text-muted-white {
    color: rgba(255, 255, 255, 0.7) !important;
}
.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000000;
    transition: all 0.3s ease;
}
.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #000000;
}
.btn-xl {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

/* Header (Hero Section) */
.masthead {
    /* Mude a URL para uma imagem que represente luxo e Rio (ex: frota com o Pão de Açúcar ao fundo) */
    background-image: url('https://dcx.lett.digital/hero-images/'); 
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: cover;
    height: 100vh; /* Ocupa a altura total da tela */
    position: relative;
}

/* Overlay para escurecer a imagem de fundo */
.masthead::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
}

.masthead .container {
    position: relative;
    z-index: 10;
}

.masthead h1, .masthead h2 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}


/* Navegação */
#mainNav {
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #ffc107;
    padding-top: 1rem;
    padding-bottom: 1rem;
    transition: padding-top 0.3s, padding-bottom 0.3s;
}

#mainNav .navbar-nav .nav-item .nav-link {
    font-weight: 600;
    color: #ffffff;
}

#mainNav .navbar-nav .nav-item .nav-link:hover {
    color: #ffc107;
}

/* Seções */
.page-section {
    padding: 8rem 0;
    background-color: #0d0d0d;
}

.section-heading {
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.section-subheading {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 4rem;
}

/* Estilo do Serviço */
#servicos {
    background-image: url('https://www.gettyimages.es/fotos/rio-de-janeiro-night');
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

#servicos::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Overlay para dar destaque ao texto */
}

.service-box {
    position: relative;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6); 
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    height: 100%;
}

.service-box ul {
    list-style-type: none;
    padding-left: 0;
}

.service-box li {
    padding-left: 1.5em;
    text-indent: -1.5em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.service-box li:before {
    content: "• ";
    color: #ffc107; /* Cor do bullet */
    font-weight: bold;
    display: inline-block;
    width: 1.5em;
    margin-left: -1.5em;
}

.small-text {
    font-size: 0.9rem;
}

/* Call to Action */
.cta-section {
    /* Use uma imagem de fundo de alta qualidade, luxuosa (ex: interior de um carro executivo) */
    background-image: url('https://www.shutterstock.com/pt/search/cta');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
}
.cta-section .container {
    position: relative;
    z-index: 10;
}

.contact-item {
    border: 1px solid #ffc107;
    transition: all 0.3s ease;
}
.contact-item:hover {
    background-color: #000000 !important;
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background-color: #000000 !important;
}
.footer a {
    color: #adb5bd;
}
.footer a:hover {
    color: #ffc107;
}
.btn-social {
    color: #ffc107;
    background-color: #212529;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    padding: 0;
}
.btn-social:hover {
    background-color: #ffc107;
    color: #000000;
}

/* Animações (Placeholder para o JS) */
.animated-text, .animated-text-2 {
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Responsividade */
@media (min-width: 992px) {
    .masthead {
        height: 100vh;
    }
    #mainNav {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        background-color: transparent !important;
        border-bottom: none;
    }
    .navbar-scrolled {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        background-color: rgba(0, 0, 0, 0.9) !important;
        border-bottom: 1px solid #ffc107;
    }
}