﻿/* modern.css - Teste de ModernizaÃ§Ã£o Visual */

/* 1. NavegaÃ§Ã£o com Glassmorphism */
.barra-topo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 50, 50, 0.6) !important; /* PetrÃ³leo escuro com transparÃªncia */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 10px 50px; /* Mantendo o respiro horizontal original */
}

/* EspaÃ§amento extra no header para compensar a barra fixa */
.foto-home-inicial {
    padding-top: 80px; 
}

/* 2. Micro-animaÃ§Ãµes e BotÃµes */
.botaomaestro, .botaocontact, .botao-inscricao {
    background: linear-gradient(135deg, #00a69c, #136363) !important;
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 166, 156, 0.3) !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    cursor: pointer;
    border-radius: 8px; /* Cantos arredondados modernos */
}

.botaomaestro:hover, .botaocontact:hover, .botao-inscricao:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 25px rgba(0, 166, 156, 0.5) !important;
}

/* 3. Sombras Suaves (Soft Shadows) nas Imagens */
.layout div img, .secao-imagem img, .modal-promo-body img {
    border-radius: 16px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.layout div img:hover, .secao-imagem img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 166, 156, 0.2) !important;
}

/* 4. Respiro e Tipografia */
section:not(.secao-modal-evento) {
    padding: 80px 20px !important; /* Muito mais espaÃ§o entre as seÃ§Ãµes */
}

.secao-container-accs {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50; /* Cinza escuro, mais legÃ­vel que preto puro */
}

h1, h2, h3 {
    letter-spacing: 0.5px;
}

/* 5. Classes para a AnimaÃ§Ã£o de Scroll (Fade In Up) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* 6. Efeito Parallax Removido devido a bug de escala no Viewport */

/* 7. Menu Mobile Glassmorphism */
.navega-mobile {
    background: rgba(0, 0, 0, 0.75) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* 8. Lightbox CSS */
.lightbox-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox-modal.show {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
    z-index: 100001;
}

.lightbox-close:hover {
    color: #00a69c;
}

/* Imagens clicÃ¡veis */
.grade-fotos img, .layout div img, .secao-imagem img {
    cursor: pointer;
}

/* ========================================= */
/* BOTÃ•ES GLOBAIS MODERNOS                   */
/* ========================================= */
.btn-moderno {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #00a69c, #136363);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 166, 156, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-moderno:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 166, 156, 0.5);
    color: white !important;
}

/* ========================================= */
/* ESTILOS DROPZONE E MODAL SUCESSO          */
/* ========================================= */
.dropzone {
    border: 2px dashed #00a69c;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: #f4fbfb;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 15px;
}

.dropzone.dragover {
    background: #e0f2f1;
    border-color: #136363;
    transform: scale(1.02);
}

.dropzone-icon {
    font-size: 2.5rem;
    color: #00a69c;
    margin-bottom: 10px;
    display: block;
}

.dropzone-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.dropzone-filename {
    display: block;
    margin-top: 10px;
    font-size: 0.9em;
    color: #555;
    font-weight: bold;
}

/* Modal Sucesso */
#success-modal.show {
    opacity: 1 !important;
    pointer-events: all !important;
}

#success-modal.show #success-modal-content {
    transform: translateY(0) !important;
}

.instrucao-gov {
    background: #e0f2f1;
    border-left: 4px solid #00a69c;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #122e2e;
}

/* ========================================= */
/* BOX DE INFORMAÃ‡Ã•ES DE CONTATO             */
/* ========================================= */
#info-contato-moderno {
    background-color: #ffffff !important;
    padding: 40px !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    justify-content: space-around !important;
    gap: 30px !important;
    width: 100% !important;
    max-width: 1000px !important;
    margin: 0 auto 0 auto !important;
    text-decoration: none !important;
}

#info-contato-moderno .info-box {
    flex: 1;
    text-align: center;
}

#info-contato-moderno h2 {
    font-family: "Julius Sans One", sans-serif;
    color: #122e2e;
    margin-bottom: 15px;
    font-size: 1.5em;
    text-decoration: none;
}

#info-contato-moderno p, #info-contato-moderno a {
    font-family: "Poppins", sans-serif;
    color: #555;
    font-size: 1.1em;
    line-height: 1.6;
    text-decoration: none !important;
    transition: color 0.3s;
}

#info-contato-moderno i {
    color: #00a69c;
    margin-right: 8px;
    font-size: 1.2em;
}

#info-contato-moderno a:hover {
    color: #00a69c !important;
}

@media (max-width: 768px) {
    #info-contato-moderno {
        flex-direction: column !important;
        padding: 30px 20px !important;
        gap: 40px !important;
    }
    #info-contato-moderno .info-box {
        border-left: none !important;
        padding-left: 0 !important;
        border-top: 2px solid #e0f2f1;
        padding-top: 30px;
    }
    #info-contato-moderno .info-box:first-child {
        border-top: none;
        padding-top: 0;
    }
}

/* ========================================= */
/* LAYOUT MESTRE CONTATO (LADO A LADO)       */
/* ========================================= */
.container-mestre-contato {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    align-items: stretch;
}

#info-contato-moderno {
    flex: 1;
    min-width: 320px;
    flex-direction: column !important; 
    justify-content: center !important;
    margin: 0 !important;
}

#info-contato-moderno .info-box {
    text-align: left;
}

#info-contato-moderno #box-email {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 2px solid #e0f2f1;
    padding-top: 30px;
    margin-top: 10px;
}

.container-mestre-contato .formulario-card {
    flex: 1.5;
    min-width: 320px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.container-mestre-contato .formulario-card h2 {
    font-family: 'Julius Sans One', sans-serif;
    color: #122e2e;
    margin-bottom: 25px;
    font-size: 1.8em;
}

@media (max-width: 768px) {
    .container-mestre-contato {
        flex-direction: column;
    }
}/* ===
