/* CSS Document */

/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeçalho */
.header {
    background: linear-gradient(135deg, #1a3a8f 0%, #2d5cc2 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.logo {
    width: 180px;
    height: auto;
    margin-right: 25px;
    border-radius: 8px;
}

.header-text h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}

.contact-badge {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}

.contact-badge p {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.contact-badge i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Menu de Navegação */
.nav-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    margin: 5px;
    text-decoration: none;
    color: #1a3a8f;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.nav-link i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.nav-link:hover, .nav-link.active {
    background-color: #1a3a8f;
    color: white;
}

/* Seções de Conteúdo */
.content-section {
    background-color: white;
    border-radius: 12px;
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eaeaea;
}

.icon-section {
    font-size: 2rem;
    color: #1a3a8f;
    margin-right: 15px;
}

.content-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a3a8f;
    font-size: 1.8rem;
}

.section-intro {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.7;
}

/* Cards */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9ff;
    border-radius: 10px;
    padding: 25px;
    border-left: 5px solid #1a3a8f;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(26, 58, 143, 0.15);
}

.card-icon {
    font-size: 2.2rem;
    color: #1a3a8f;
    margin-bottom: 15px;
}

.card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a3a8f;
}

.card-list {
    list-style-type: none;
}

.card-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.card-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a3a8f;
    font-weight: bold;
}

/* Box de Informações */
.info-box {
    margin: 30px 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    font-size: 1.8rem;
    color: #1a3a8f;
    margin-right: 20px;
    min-width: 40px;
}

.info-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a3a8f;
}

.alert-box {
    background-color: #fff9e6;
    border-left: 5px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    margin-top: 30px;
}

.alert-box i {
    font-size: 1.8rem;
    color: #ffc107;
    margin-right: 20px;
    margin-top: 5px;
}

.alert-content h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    color: #333;
}

.alert-content ul {
    padding-left: 20px;
}

/* Lista de Documentos */
.document-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.document-item {
    background-color: #f8f9ff;
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid #1a3a8f;
}

.document-icon {
    font-size: 2rem;
    color: #1a3a8f;
    margin-bottom: 15px;
}

.document-item h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a3a8f;
    font-size: 1.3rem;
}

.note-box {
    background-color: #e8f4fd;
    border-left: 5px solid #1a3a8f;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.note-box h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    color: #1a3a8f;
    display: flex;
    align-items: center;
}

.note-box i {
    margin-right: 10px;
}

/* Passos do Processo */
.process-steps {
    margin: 40px 0;
}

.step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background-color: #1a3a8f;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a3a8f;
}

.timeline-box {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid #2d5cc2;
}

.timeline-box h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    color: #1a3a8f;
    display: flex;
    align-items: center;
}

.timeline-box i {
    margin-right: 10px;
}

/* Regras */
.rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.rule-category {
    background-color: #f8f9ff;
    padding: 25px;
    border-radius: 10px;
    border-top: 4px solid #1a3a8f;
}

.rule-category h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a3a8f;
    display: flex;
    align-items: center;
    font-size: 1.3rem;
}

.rule-category i {
    margin-right: 10px;
}

.rule-category ul {
    padding-left: 20px;
}

.rule-category li {
    margin-bottom: 8px;
}

.warning-box {
    background-color: #ffeaea;
    border-left: 5px solid #e53935;
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
}

.warning-box h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    color: #c62828;
    display: flex;
    align-items: center;
}

.warning-box i {
    margin-right: 10px;
}

/* Seção Final */
.final-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8eeff 100%);
}

.final-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.final-content p {
    margin-bottom: 20px;
}

/* Rodapé */
.footer {
    background-color: #1a3a8f;
    color: white;
    padding: 40px 0 20px;
    margin-top: 50px;
    border-radius: 12px 12px 0 0;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-info h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.oab {
    font-weight: 600;
    margin-bottom: 20px;
    color: #a3c1ff;
}

.footer-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-info i {
    margin-right: 10px;
    width: 20px;
}

.footer-info a {
    color: #a3c1ff;
    text-decoration: none;
}

.footer-info a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    margin: 30px 0;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-style: italic;
}

.footer-disclaimer i {
    margin-right: 10px;
    color: #ffcc00;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
    font-size: 0.9rem;
    color: #a3c1ff;
}

/* Responsividade */
@media (max-width: 992px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    
    .logo {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .header-text h1 {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        justify-content: flex-start;
        overflow-x: auto;
    }
    
    .cards-container, .document-list, .rules-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px;
    }
    
    .content-section {
        padding: 25px;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-icon {
        margin-bottom: 15px;
    }
    
    .step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .alert-box {
        flex-direction: column;
    }
    
    .alert-box i {
        margin-bottom: 15px;
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .header-text h1 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .contact-badge {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
}







/* Seção de Compartilhamento */
.share-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 100%);
    border-radius: 12px;
    border: 1px solid #dce5ff;
}

.share-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: white;
    min-width: 120px;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.share-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

/* Cores específicas para cada rede social */
.whatsapp { background-color: #25D366; }
.whatsapp:hover { background-color: #1da851; }

.facebook { background-color: #3b5998; }
.facebook:hover { background-color: #2d4373; }

.twitter { background-color: #1DA1F2; }
.twitter:hover { background-color: #0d8bd9; }

.linkedin { background-color: #0077B5; }
.linkedin:hover { background-color: #005582; }

.telegram { background-color: #0088cc; }
.telegram:hover { background-color: #006699; }

.email { background-color: #EA4335; }
.email:hover { background-color: #c23321; }

.pinterest { background-color: #BD081C; }
.pinterest:hover { background-color: #9c0616; }

.reddit { background-color: #FF4500; }
.reddit:hover { background-color: #cc3700; }

.copy-link { 
    background-color: #6c757d; 
    color: white;
}
.copy-link:hover { 
    background-color: #545b62; 
}

.copy-message {
    background-color: #d4edda;
    color: #155724;
    padding: 10px 15px;
    border-radius: 6px;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #c3e6cb;
}

.copy-message i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.share-note {
    margin-top: 25px;
    padding: 15px;
    background-color: rgba(26, 58, 143, 0.05);
    border-radius: 8px;
    border-left: 4px solid #1a3a8f;
}

.share-note p {
    color: #1a3a8f;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-note i {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Responsividade para botões de compartilhamento */
@media (max-width: 768px) {
    .share-buttons {
        gap: 10px;
    }
    
    .share-btn {
        min-width: 100px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .share-btn i {
        margin-right: 5px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .share-section {
        padding: 20px 15px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 8px;
    }
}

