
.download-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'MedievalSharp', cursive;
}

.download-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.download-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.download-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}
.download-icon img {
      width: 50px;
     height: 50px;
}

.download-content {
    flex: 1;
}

.download-content h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.download-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.helmoicond {
    border: 100%;
}

.download-btn:hover {
    background: #304cc3;
    color: white;
    text-decoration: none;
}

/* Modal Personalizado */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
   
    margin: 10% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 0;
}

.modal-header h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.3rem;
}


.modal-body {
    padding: 1.5rem;
    text-align: center;
}

.modal-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.modal-body p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.modal-warning {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

.modal-footer {
    display: flex;
    gap: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.modal-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-cancel {
    background-color: var(--border-color);
    color: var(--text-color);
}

.modal-cancel:hover {
    background-color: var(--text-muted);
}

.modal-confirm {
    background-color: var(--primary-color);
    color: white;
}

.modal-confirm:hover {
    background-color: var(--primary-dark);
}

/* Responsividade */
@media (max-width: 768px) {
    .download-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .download-icon {
        align-self: center;
    }
    
    .download-btn {
        width: 100%;
        justify-content: center;
    }
    
    .modal-content {
        margin: 20% auto;
        width: 80%;
    }
    
    .modal-footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {

    
    .download-item {
        padding: 0.75rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 0 1rem 1rem;
    }
}

