@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;800&display=swap');

:root {
    --primary-gold: #9C7C38;
    --text-dark: #212529;
    --bg-light: #F4F4F4;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* --- WHATSAPP FLUTUANTE --- */
.whatsapp_float {
    position: fixed;
    right: 25px;
    bottom: 30px;
    z-index: 9990; /* Alto, mas menor que o modal */
    width: 60px;
    height: 60px;
    transition: transform 0.3s;
}
.whatsapp_float:hover {
    transform: scale(1.1);
}

/* --- HERO SECTION & VIDEO --- */
.object-fit-cover {
    object-fit: cover;
}

.content-wrapper h4 {
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* --- ABOUT SECTION --- */
.about-text h2 {
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.about-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- DOCUMENTOS SECTION --- */
.docs-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.doc-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px 15px;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    background: white;
}

.doc-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.doc-card i {
    font-size: 2.5rem;
    color: #BABABA;
    transition: 0.3s;
}

.doc-card:hover i {
    color: var(--primary-gold);
}

.doc-card p {
    font-size: 16px;
    color: #3A3A3A;
    margin-top: 15px;
}

/* Utilitário para limitar texto a 2 linhas */
.line-clamp-2 {
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- VÍDEOS SECTION --- */
.videos-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.video-item {
    display: block !important; /* Essencial para funcionar como link */
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 9/16;
    background: #000;
    margin: 0 5px;
    cursor: pointer;
}

.video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-item:hover img {
    transform: scale(1.05);
    opacity: 0.7;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3.5rem;
    opacity: 0.8;
    transition: 0.3s;
    pointer-events: none; /* O clique passa direto para o link */
    z-index: 2;
}

.video-item:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

/* --- MODAL FANCYBOX (FIX VERTICAL) --- */
.fancybox__container {
    z-index: 9999 !important; /* Garante que fique acima de tudo */
}

.fancybox__content {
    background: transparent !important;
    padding: 0 !important;
    height: 75vh !important; /* Altura fixa baseada na tela */
    width: calc(75vh * (9/16)) !important; /* Largura calculada matematicamente */
    max-width: 90vw;
    border-radius: 12px;
    overflow: hidden;
}

.fancybox__content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* --- ESTILIZAÇÃO DOS DOTS (BOLINHAS) --- */
.owl-theme .owl-dots {
    margin-top: 40px !important;
    text-align: center;
    display: block !important;
}

/* 1. Zera o estilo padrão do botão (remove o quadrado em volta) */
.owl-theme .owl-dots .owl-dot {
    background: transparent !important; /* Remove fundo cinza */
    border: none !important;            /* Remove borda */
    padding: 0 !important;              /* Remove espaçamento interno */
    outline: none !important;           /* Remove borda de clique */
    box-shadow: none !important;
    cursor: pointer;
}

/* 2. Estiliza apenas a bolinha interna (span) */
.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #D6D6D6 !important; /* Cor inativa (cinza) */
    display: block;
    border-radius: 50%; /* Deixa redonda */
    transition: all 0.3s ease;
}

/* 3. Estado Ativo e Hover */
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary-gold) !important; /* Cor ativa (Dourado) */
    transform: scale(1.3);
}

/* --- FOOTER --- */
footer {
    background-color: #000/* #9C7C38 */
    color: white;
    padding: 60px 0 20px 0;
    font-size: 0.9rem; /* Texto um pouco menor para elegância */
}

.footer-logo {
    max-width: 220px; /* Ajuste o tamanho da logo conforme necessário */
    height: auto;
}

.footer-info {
    border-left: 1px solid rgba(255, 255, 255, 0.3); /* A linha vertical */
    padding-left: 30px !important; /* Espaço entre a linha e o texto */
}

.footer-info h5 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-info p {
    font-weight: 300;
    line-height: 1.4;
    opacity: 0.9;
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2); /* Linha horizontal fina */
    padding-top: 20px;
    font-size: 0.75rem;
    text-align: center;
    opacity: 0.8;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 768px) {
    .footer-info {
        border-left: none; /* Remove a linha vertical no celular */
        padding-left: 0 !important;
        margin-top: 20px;
    }
    
    .footer-logo {
        max-width: 180px;
    }
    .py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;}

    .docs-section {
    padding: 0px 0;
    background-color: #fff;}

    .videos-section {
    padding: 30px 0;
    background-color: var(--bg-light);}
}
/* --- RESPONSIVIDADE --- */
@media (max-width: 768px) {
    .content-wrapper h4 {
        font-size: 2rem;
    }
    .video-item {
        margin: 0; /* Remove margem lateral no mobile para alinhar */
    }
}