/* ===================================
   PÁGINA COMO USAR - GOVHUB
   =================================== */

/* Estilos base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Bootstrap Grid Customization - 12 colunas com gutter 20px */
:root {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.container {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

/* =============================
   COMO USAR - GRID DE CARTÕES
   ============================= */
.como-usar-cards {
    width: 100%;
    background: #FFFFFF;
    padding: 6rem 0;
}

.gh-card {
    background: #7A34F3;
    color: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 8px 25px rgba(122, 52, 243, 0.25);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.gh-card:hover {
    transform: translateY(-2px);
    background: #6a2fd8;
    box-shadow: 0 14px 35px rgba(122, 52, 243, 0.35);
}

.gh-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.gh-card h3 {
    font-size: 1.3rem;
    margin: 0;
}

.gh-card p {
    margin: 0.35rem 0;
    line-height: 1.5;
}

.gh-card .gh-link {
    margin-top: 0.5rem;
    font-weight: 600;
}

.gh-card .gh-arrow {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 20px;
    height: 20px;
    background: currentColor;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white"><path fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>') center / contain no-repeat;
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="white"><path fill-rule="evenodd" d="M12.293 5.293a1 1 0 011.414 0l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414-1.414L14.586 11H3a1 1 0 110-2h11.586l-2.293-2.293a1 1 0 010-1.414z" clip-rule="evenodd"/></svg>') center / contain no-repeat;
}

.gh-card .gh-badge {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: grid;
    place-items: center;
}
.gh-card .gh-badge img { width: 56px; height: 56px; }

/* Card grande (linha inteira) */
.gh-card-wide {
    grid-column: span 2;
}

.checks {
    margin: 0.5rem 0 0 0;
    padding-left: 0; /* sem recuo extra no UL */
}

.checks li {
    margin: 0.25rem 0;
    list-style: none;
    position: relative;
    padding-left: 1.4rem; /* espaço pequeno entre o check e o texto */
}

.checks li::before {
    content: '';
    position: absolute;
    left: 0; /* coluna fixa dos checks */
    top: 0.4rem;
    width: 16px;
    height: 16px;
    background: #FF9800;
    border-radius: 50%;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%237A34F3"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"/></svg>') center / contain no-repeat;
            mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="%237A34F3"><path fill-rule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clip-rule="evenodd"/></svg>') center / contain no-repeat;
}

/* Responsive Design */
@media (max-width: 768px) {
    .como-usar-cards { 
        padding: 4rem 1rem; 
    }
    
    .gh-card .gh-badge img { 
        width: 44px; 
        height: 44px; 
    }
}