/* Responsivo */
@media (max-width: 360px) {
    body {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "header-center"
            "main-center"
            "footer-center";
    }
    
    .header-left, 
    .header-right, 
    .main-left, 
    .main-right, 
    .footer-left, 
    .footer-right {
        display: none;
    }

    .transaction-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .transaction-title {
        font-size: 0.9rem;
    }
    
    .transaction-date {
        font-size: 0.75rem;
    }
    
    /* Ajustes para Profile em telas muito pequenas */
    .profile-name {
        font-size: 18px;
    }
    
    .profile-email {
        font-size: 13px;
    }
    
    .profile-member-since {
        font-size: 11px;
    }
    
    .option-icon {
        width: 36px;
        height: 36px;
    }
    
    .option-icon i {
        font-size: 16px;
    }
    
    /* Ajustes para Back Link */
    .back-link {
        font-size: 14px;
    }
    
    .back-link i {
        font-size: 14px;
    }
    
    /* Ajustes para Section Title */
    .section-title {
        font-size: 16px;
    }
    
    /* Ajustes para Password Strength */
    .strength-text {
        font-size: 11px;
    }
    
    /* Ajustes para Password Requirements */
    .password-requirements h4 {
        font-size: 13px;
    }
    
    .requirement {
        font-size: 12px;
    }
}


